mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-14 06:16:35 +00:00
added Jenkinsfile for jenkins build config
This commit is contained in:
parent
0e8442064e
commit
604a0b1fe6
18
Jenkinsfile
vendored
Normal file
18
Jenkinsfile
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env groovy
|
||||
|
||||
parallel 'centos7': {
|
||||
node('centos7') {
|
||||
stage "Checkout Centos 7"
|
||||
checkout scm
|
||||
|
||||
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'
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user