Bladeren bron

add stage for building the new macOS UI in Jenkins

Grant Limberg 9 jaren geleden
bovenliggende
commit
df6d3ca66b
1 gewijzigde bestanden met toevoegingen van 6 en 0 verwijderingen
  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'
+            }
+        }
     }
     }
 }
 }