Parallelized Jenkinsfile

This commit is contained in:
Joseph Henry
2017-08-15 14:12:46 -07:00
parent 6f6b4bcbea
commit ecc29260ff

4
Jenkinsfile vendored
View File

@@ -6,6 +6,7 @@ node('master') {
mattermostSend "Building ${env.JOB_NAME} #${env.BUILD_NUMBER} \n Change Log: \n ${changelog}"
}
parallel 'centos7': {
node('centos7') {
// ------------------------------------------------------------------------------
@@ -248,7 +249,7 @@ node('master') {
}
}
}, 'macOS': {
node('macOS') {
unlockKeychainMac "~/Library/Keychains/login.keychain-db"
@@ -502,6 +503,7 @@ node('master') {
throw err
}
}
}
mattermostSend color: "#00ff00", message: "${env.JOB_NAME} #${env.BUILD_NUMBER} Complete (<${env.BUILD_URL}|Show More...>)"