Fix jenkinsfile syntax
This commit is contained in:
parent
b175a97c41
commit
7836668d4c
1 changed files with 23 additions and 17 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -11,7 +11,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
step ("Build") {
|
stage ("Build") {
|
||||||
|
steps {
|
||||||
|
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -22,7 +24,9 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
step ('Package') {
|
}
|
||||||
|
stage ('Package') {
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -33,6 +37,8 @@ pipeline {
|
||||||
cp app-release.apk ../../../../
|
cp app-release.apk ../../../../
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue