Update stages

This commit is contained in:
Grant Limberg 2016-10-25 11:18:26 -07:00
parent 604a0b1fe6
commit 6cd36edf45

21
Jenkinsfile vendored
View File

@ -2,17 +2,22 @@
parallel 'centos7': {
node('centos7') {
stage "Checkout Centos 7"
checkout scm
stage('Checkout Centos 7') {
checkout scm
}
stage "Build Centos 7"
sh 'make -f make-linux.mk'
stage('Build Centos 7') {
sh 'make -f make-linux.mk'
}
}
}, 'android-ndk': {
node('android-ndk') {
stage "Checkout Android NDK"
checkout scm
stage "Build Android NDK"
sh '/android/android-ndk-r13/ndk-build -C $WORKSPACE/java ZT1=$WORKSPACE'
stage('Checkout Android NDK') {
checkout scm
}
stage "Build Android NDK" {
sh '/android/android-ndk-r13/ndk-build -C $WORKSPACE/java ZT1=$WORKSPACE'
}
}
}