De-parallelized Jenkinsfile for debugging

This commit is contained in:
Joseph Henry
2017-08-15 11:25:08 -07:00
parent 673641b040
commit 1d42c5b764

7
Jenkinsfile vendored
View File

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