disable desktop builds as work on them is on hold

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-11-25 14:34:54 +01:00
parent ec57008834
commit f6b7f637f0
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 0 additions and 19 deletions

View File

@ -27,18 +27,6 @@ pipeline {
}
stage('Build') {
parallel {
stage('MacOS') { steps { script {
osx = cmn.ci.Build('status-react/combined/desktop-macos')
} } }
stage('Linux') { steps { script {
tux = 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')
} } }
@ -53,11 +41,6 @@ pipeline {
stage('Archive') {
steps { script {
sh('rm -f pkg/*')
if (btype != 'release') {
cmn.ci.copyArts(osx)
cmn.ci.copyArts(tux)
cmn.ci.copyArts(win)
}
cmn.ci.copyArts(ios)
//cmn.ci.copyArts(iose2e)
cmn.ci.copyArts(apk)
@ -77,8 +60,6 @@ pipeline {
Apk: cmn.pkgUrl(apk), Apke2e: cmn.pkgUrl(apke2e),
iOS: cmn.pkgUrl(ios), /*iOSe2e: cmn.pkgUrl(iose2e),*/
Diawi: cmn.utils.getEnv(ios, 'DIAWI_URL'),
/* desktop */
App: cmn.pkgUrl(tux), Mac: cmn.pkgUrl(osx), Win: cmn.pkgUrl(win),
/* upload the sha256 checksums file too */
SHA: cmn.uploadArtifact(cmn.utils.pkgFind('sha256')),
]