mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-16 12:06:55 +02:00
added macOS build for jenkins
This commit is contained in:
parent
7300005398
commit
5be7374f56
1 changed files with 10 additions and 6 deletions
16
Jenkinsfile
vendored
16
Jenkinsfile
vendored
|
@ -2,9 +2,7 @@
|
|||
|
||||
parallel 'centos7': {
|
||||
node('centos7') {
|
||||
stage('Checkout Centos 7') {
|
||||
checkout scm
|
||||
}
|
||||
checkout scm
|
||||
|
||||
stage('Build Centos 7') {
|
||||
sh 'make -f make-linux.mk'
|
||||
|
@ -12,12 +10,18 @@ parallel 'centos7': {
|
|||
}
|
||||
}, 'android-ndk': {
|
||||
node('android-ndk') {
|
||||
stage('Checkout Android NDK') {
|
||||
checkout scm
|
||||
}
|
||||
checkout scm
|
||||
|
||||
stage('Build Android NDK') {
|
||||
sh '/android/android-ndk-r13/ndk-build -C $WORKSPACE/java ZT1=$WORKSPACE'
|
||||
}
|
||||
}
|
||||
}, 'macOS': {
|
||||
node('macOS') {
|
||||
checkout scm
|
||||
|
||||
stage('Build macOS') {
|
||||
sh 'make -f make-mac.mk'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue