From df6d3ca66b00fc67fe5ce09e5e8e4b4a77e6beec Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Tue, 25 Oct 2016 12:58:54 -0700 Subject: [PATCH] add stage for building the new macOS UI in Jenkins --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e97cc4f22..4196d42ca 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' + } + } } }