summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index e97cc4f2..4196d42c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -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'
+ }
+ }
}
}