disable desktop builds as work on them is on hold
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
ec57008834
commit
f6b7f637f0
|
@ -27,18 +27,6 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
parallel {
|
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 {
|
stage('iOS') { steps { script {
|
||||||
ios = cmn.ci.Build('status-react/combined/mobile-ios')
|
ios = cmn.ci.Build('status-react/combined/mobile-ios')
|
||||||
} } }
|
} } }
|
||||||
|
@ -53,11 +41,6 @@ pipeline {
|
||||||
stage('Archive') {
|
stage('Archive') {
|
||||||
steps { script {
|
steps { script {
|
||||||
sh('rm -f pkg/*')
|
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(ios)
|
||||||
//cmn.ci.copyArts(iose2e)
|
//cmn.ci.copyArts(iose2e)
|
||||||
cmn.ci.copyArts(apk)
|
cmn.ci.copyArts(apk)
|
||||||
|
@ -77,8 +60,6 @@ pipeline {
|
||||||
Apk: cmn.pkgUrl(apk), Apke2e: cmn.pkgUrl(apke2e),
|
Apk: cmn.pkgUrl(apk), Apke2e: cmn.pkgUrl(apke2e),
|
||||||
iOS: cmn.pkgUrl(ios), /*iOSe2e: cmn.pkgUrl(iose2e),*/
|
iOS: cmn.pkgUrl(ios), /*iOSe2e: cmn.pkgUrl(iose2e),*/
|
||||||
Diawi: cmn.utils.getEnv(ios, 'DIAWI_URL'),
|
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 */
|
/* upload the sha256 checksums file too */
|
||||||
SHA: cmn.uploadArtifact(cmn.utils.pkgFind('sha256')),
|
SHA: cmn.uploadArtifact(cmn.utils.pkgFind('sha256')),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue