ci: add missing copyArtifactPermission options
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
73b2ec2903
commit
54bdb867bf
|
@ -5,6 +5,7 @@ def isPRBuild = utils.isPRBuild()
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
|
/* Necessary image with Ubuntu 18.04 for older Glibc. */
|
||||||
docker {
|
docker {
|
||||||
label 'linux'
|
label 'linux'
|
||||||
image 'statusteam/nim-status-client-build:1.2.1-qt5.15.2'
|
image 'statusteam/nim-status-client-build:1.2.1-qt5.15.2'
|
||||||
|
@ -36,6 +37,8 @@ pipeline {
|
||||||
daysToKeepStr: '30',
|
daysToKeepStr: '30',
|
||||||
artifactNumToKeepStr: '3',
|
artifactNumToKeepStr: '3',
|
||||||
))
|
))
|
||||||
|
/* Allows combined build to copy */
|
||||||
|
copyArtifactPermission('/status-desktop/*')
|
||||||
/* Abort old PR builds. */
|
/* Abort old PR builds. */
|
||||||
disableConcurrentBuilds(
|
disableConcurrentBuilds(
|
||||||
abortPrevious: isPRBuild
|
abortPrevious: isPRBuild
|
||||||
|
|
|
@ -32,6 +32,8 @@ pipeline {
|
||||||
daysToKeepStr: '30',
|
daysToKeepStr: '30',
|
||||||
artifactNumToKeepStr: '3',
|
artifactNumToKeepStr: '3',
|
||||||
))
|
))
|
||||||
|
/* Allows combined build to copy */
|
||||||
|
copyArtifactPermission('/status-desktop/*')
|
||||||
/* Abort old PR builds. */
|
/* Abort old PR builds. */
|
||||||
disableConcurrentBuilds(
|
disableConcurrentBuilds(
|
||||||
abortPrevious: isPRBuild
|
abortPrevious: isPRBuild
|
||||||
|
|
|
@ -29,6 +29,8 @@ pipeline {
|
||||||
daysToKeepStr: '30',
|
daysToKeepStr: '30',
|
||||||
artifactNumToKeepStr: '3',
|
artifactNumToKeepStr: '3',
|
||||||
))
|
))
|
||||||
|
/* Allows combined build to copy */
|
||||||
|
copyArtifactPermission('/status-desktop/*')
|
||||||
/* Abort old PR builds. */
|
/* Abort old PR builds. */
|
||||||
disableConcurrentBuilds(
|
disableConcurrentBuilds(
|
||||||
abortPrevious: isPRBuild
|
abortPrevious: isPRBuild
|
||||||
|
|
Loading…
Reference in New Issue