mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 12:33:44 +02:00
Update stages
This commit is contained in:
parent
604a0b1fe6
commit
6cd36edf45
1 changed files with 13 additions and 8 deletions
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
|
@ -2,17 +2,22 @@
|
||||||
|
|
||||||
parallel 'centos7': {
|
parallel 'centos7': {
|
||||||
node('centos7') {
|
node('centos7') {
|
||||||
stage "Checkout Centos 7"
|
stage('Checkout Centos 7') {
|
||||||
checkout scm
|
checkout scm
|
||||||
|
}
|
||||||
|
|
||||||
stage "Build Centos 7"
|
stage('Build Centos 7') {
|
||||||
sh 'make -f make-linux.mk'
|
sh 'make -f make-linux.mk'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}, 'android-ndk': {
|
}, 'android-ndk': {
|
||||||
node('android-ndk') {
|
node('android-ndk') {
|
||||||
stage "Checkout Android NDK"
|
stage('Checkout Android NDK') {
|
||||||
checkout scm
|
checkout scm
|
||||||
stage "Build Android NDK"
|
}
|
||||||
|
|
||||||
|
stage "Build Android NDK" {
|
||||||
sh '/android/android-ndk-r13/ndk-build -C $WORKSPACE/java ZT1=$WORKSPACE'
|
sh '/android/android-ndk-r13/ndk-build -C $WORKSPACE/java ZT1=$WORKSPACE'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue