Browse Source

add stage for building the new macOS UI in Jenkins

Grant Limberg 8 years ago
parent
commit
df6d3ca66b
1 changed files with 6 additions and 0 deletions
  1. 6 0
      Jenkinsfile

+ 6 - 0
Jenkinsfile

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