add stage for building the new macOS UI in Jenkins

This commit is contained in:
Grant Limberg 2016-10-25 12:58:54 -07:00
parent 5be7374f56
commit df6d3ca66b

6
Jenkinsfile vendored
View File

@ -23,5 +23,11 @@ parallel 'centos7': {
stage('Build macOS') {
sh 'make -f make-mac.mk'
}
stage('Build macOS UI') {
dir('$WORKSPACE/macui') {
sh 'xcodebuild -scheme "ZeroTier One" -configuration Debug'
}
}
}
}