Преглед на файлове

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