enable desktop builds for releases
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
f8978ca0aa
commit
6364b886e4
|
@ -26,16 +26,13 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
parallel {
|
parallel {
|
||||||
stage('MacOS') { when { expression { btype != 'release' } }
|
stage('MacOS') { steps { script {
|
||||||
steps { script {
|
|
||||||
osx = cmn.buildBranch('status-react/combined/desktop-macos')
|
osx = cmn.buildBranch('status-react/combined/desktop-macos')
|
||||||
} } }
|
} } }
|
||||||
stage('Linux') { when { expression { btype != 'release' } }
|
stage('Linux') { steps { script {
|
||||||
steps { script {
|
|
||||||
nix = cmn.buildBranch('status-react/combined/desktop-linux')
|
nix = cmn.buildBranch('status-react/combined/desktop-linux')
|
||||||
} } }
|
} } }
|
||||||
stage('Windows') { when { expression { btype != 'release' } }
|
stage('Windows') { steps { script {
|
||||||
steps { script {
|
|
||||||
win = cmn.buildBranch('status-react/combined/desktop-windows')
|
win = cmn.buildBranch('status-react/combined/desktop-windows')
|
||||||
} } }
|
} } }
|
||||||
stage('iOS') { steps { script {
|
stage('iOS') { steps { script {
|
||||||
|
|
Loading…
Reference in New Issue