瀏覽代碼

add stage for building the new macOS UI in Jenkins

Grant Limberg 9 年之前
父節點
當前提交
df6d3ca66b
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      Jenkinsfile

+ 6 - 0
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'
+            }
+        }
     }
 }