ZeroTierOne/Jenkinsfile

85 lines
2.4 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env groovy
2016-10-25 22:01:59 +00:00
node('master') {
checkout scm
2016-10-25 22:51:30 +00:00
def changelog = getChangeLog currentBuild
2016-10-25 22:01:59 +00:00
2017-06-30 20:43:39 +00:00
mattermostSend "Building ${env.JOB_NAME} #${env.BUILD_NUMBER} \n Change Log: \n ${changelog}"
2016-10-25 22:01:59 +00:00
}
parallel 'centos7': {
node('centos7') {
2016-10-25 21:35:31 +00:00
try {
checkout scm
2016-10-25 21:35:31 +00:00
stage('Build Centos 7') {
sh 'make -f make-linux.mk'
}
}
catch (err) {
currentBuild.result = "FAILURE"
2017-06-30 20:43:39 +00:00
mattermostSend color: '#ff0000', message: "${env.JOB_NAME} broken on Centos 7 (<${env.BUILD_URL}|Open>)"
2016-10-25 21:35:31 +00:00
throw err
2016-10-25 18:18:26 +00:00
}
}
2019-06-13 17:35:54 +00:00
// }, 'android-ndk': {
// node('android-ndk') {
// try {
// checkout scm
2016-10-25 18:18:26 +00:00
2019-06-13 17:35:54 +00:00
// stage('Build Android NDK') {
// sh "/android/android-ndk-r15b/ndk-build -C $WORKSPACE/java ZT1=${WORKSPACE}"
// }
// }
// catch (err) {
// currentBuild.result = "FAILURE"
// mattermostSend color: '#ff0000', message: "${env.JOB_NAME} broken on Android NDK (<${env.BUILD_URL}|Open>)"
2016-10-25 21:35:31 +00:00
2019-06-13 17:35:54 +00:00
// throw err
// }
// }
// }, 'macOS': {
// node('macOS') {
// try {
// checkout scm
2016-10-25 21:35:31 +00:00
2019-06-13 17:35:54 +00:00
// stage('Build macOS') {
// sh 'make -f make-mac.mk'
// }
2016-10-25 19:40:03 +00:00
2019-06-13 17:35:54 +00:00
// stage('Build macOS UI') {
// sh 'cd macui && xcodebuild -target "ZeroTier One" -configuration Debug'
// }
// }
// catch (err) {
// currentBuild.result = "FAILURE"
// mattermostSend color: '#ff0000', message: "${env.JOB_NAME} broken on macOS (<${env.BUILD_URL}|Open>)"
2019-06-13 17:35:54 +00:00
// throw err
// }
// }
2019-06-13 17:38:42 +00:00
// }, 'windows': {
// node('windows') {
// try {
// checkout scm
2016-11-28 21:06:28 +00:00
2019-06-13 17:38:42 +00:00
// stage('Build Windows') {
// bat '''CALL "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat" amd64
// git clean -dfx
// msbuild windows\\ZeroTierOne.sln
// '''
// }
// }
// catch (err) {
// currentBuild.result = "FAILURE"
// mattermostSend color: '#ff0000', message: "${env.JOB_NAME} broken on Windows (<${env.BUILD_URL}|Open>)"
2016-11-28 22:57:37 +00:00
2019-06-13 17:38:42 +00:00
// throw err
// }
// }
}
2016-10-25 21:35:31 +00:00
2017-06-30 20:43:39 +00:00
mattermostSend color: "#00ff00", message: "${env.JOB_NAME} #${env.BUILD_NUMBER} Complete (<${env.BUILD_URL}|Show More...>)"