remove these from jenkins for now

This commit is contained in:
Grant Limberg 2019-06-13 10:35:54 -07:00
parent 47d29ddcaf
commit eb84d61deb

62
Jenkinsfile vendored
View file

@ -24,42 +24,42 @@ parallel 'centos7': {
throw err throw err
} }
} }
}, 'android-ndk': { // }, 'android-ndk': {
node('android-ndk') { // node('android-ndk') {
try { // try {
checkout scm // checkout scm
stage('Build Android NDK') { // stage('Build Android NDK') {
sh "/android/android-ndk-r15b/ndk-build -C $WORKSPACE/java ZT1=${WORKSPACE}" // sh "/android/android-ndk-r15b/ndk-build -C $WORKSPACE/java ZT1=${WORKSPACE}"
} // }
} // }
catch (err) { // catch (err) {
currentBuild.result = "FAILURE" // currentBuild.result = "FAILURE"
mattermostSend color: '#ff0000', message: "${env.JOB_NAME} broken on Android NDK (<${env.BUILD_URL}|Open>)" // mattermostSend color: '#ff0000', message: "${env.JOB_NAME} broken on Android NDK (<${env.BUILD_URL}|Open>)"
throw err // throw err
} // }
} // }
}, 'macOS': { // }, 'macOS': {
node('macOS') { // node('macOS') {
try { // try {
checkout scm // checkout scm
stage('Build macOS') { // stage('Build macOS') {
sh 'make -f make-mac.mk' // sh 'make -f make-mac.mk'
} // }
stage('Build macOS UI') { // stage('Build macOS UI') {
sh 'cd macui && xcodebuild -target "ZeroTier One" -configuration Debug' // sh 'cd macui && xcodebuild -target "ZeroTier One" -configuration Debug'
} // }
} // }
catch (err) { // catch (err) {
currentBuild.result = "FAILURE" // currentBuild.result = "FAILURE"
mattermostSend color: '#ff0000', message: "${env.JOB_NAME} broken on macOS (<${env.BUILD_URL}|Open>)" // mattermostSend color: '#ff0000', message: "${env.JOB_NAME} broken on macOS (<${env.BUILD_URL}|Open>)"
throw err // throw err
} // }
} // }
}, 'windows': { }, 'windows': {
node('windows') { node('windows') {
try { try {