updated Jenkinsfile

This commit is contained in:
Joseph Henry
2016-11-01 15:53:06 -07:00
parent aaf5d99ef2
commit bae96cde51

14
Jenkinsfile vendored
View File

@@ -14,4 +14,18 @@ parallel 'centos7': {
throw err
}
}
}, 'macOS': {
node('macOS') {
try {
checkout scm
stage('Build macOS') {
sh 'make osx_service_and_intercept SDK_LWIP=1 SDK_IPV4=1'
}
}
catch (err) {
currentBuild.result = "FAILURE"
slackSend color: '#ff0000', message: "${env.JOB_NAME} broken on macOS (<${env.BUILD_URL}|Open>)"
throw err
}
}
}