From c49e4933eeea8e02e2724b5eab27d046e8c4e549 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 8 Aug 2019 13:15:13 -0400 Subject: [PATCH] disable desktop builds for now MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.combined | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/ci/Jenkinsfile.combined b/ci/Jenkinsfile.combined index 185100081d..61cc2caaef 100644 --- a/ci/Jenkinsfile.combined +++ b/ci/Jenkinsfile.combined @@ -27,21 +27,21 @@ pipeline { } stage('Build') { parallel { - stage('MacOS') { steps { script { - osx = cmn.ci.Build('status-react/combined/desktop-macos') - } } } - stage('Linux') { steps { script { - nix = cmn.ci.Build('status-react/combined/desktop-linux') - } } } - stage('Windows') { steps { script { - win = cmn.ci.Build('status-react/combined/desktop-windows') - } } } - stage('iOS') { steps { script { - ios = cmn.ci.Build('status-react/combined/mobile-ios') - } } } + //stage('MacOS') { steps { script { + // osx = cmn.ci.Build('status-react/combined/desktop-macos') + //} } } + //stage('Linux') { steps { script { + // nix = cmn.ci.Build('status-react/combined/desktop-linux') + //} } } + //stage('Windows') { steps { script { + // win = cmn.ci.Build('status-react/combined/desktop-windows') + //} } } //stage('iOS e2e') { steps { script { // iose2e = cmn.ci.Build('status-react/combined/mobile-ios-e2e') //} } } + stage('iOS') { steps { script { + ios = cmn.ci.Build('status-react/combined/mobile-ios') + } } } stage('Android') { steps { script { apk = cmn.ci.Build('status-react/combined/mobile-android') } } }