summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: 806f73564b45709fe08bca25b496e793f0ae913e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'
    }
}