summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile16
1 files changed, 10 insertions, 6 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 28f2b5d7..e97cc4f2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -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'
+ }
+ }
}