ci: add missing copyArtifactPermission options

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-04-18 14:22:27 +02:00 committed by Jakub
parent 73b2ec2903
commit 54bdb867bf
3 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,7 @@ def isPRBuild = utils.isPRBuild()
pipeline {
agent {
/* Necessary image with Ubuntu 18.04 for older Glibc. */
docker {
label 'linux'
image 'statusteam/nim-status-client-build:1.2.1-qt5.15.2'
@ -36,6 +37,8 @@ pipeline {
daysToKeepStr: '30',
artifactNumToKeepStr: '3',
))
/* Allows combined build to copy */
copyArtifactPermission('/status-desktop/*')
/* Abort old PR builds. */
disableConcurrentBuilds(
abortPrevious: isPRBuild

View File

@ -32,6 +32,8 @@ pipeline {
daysToKeepStr: '30',
artifactNumToKeepStr: '3',
))
/* Allows combined build to copy */
copyArtifactPermission('/status-desktop/*')
/* Abort old PR builds. */
disableConcurrentBuilds(
abortPrevious: isPRBuild

View File

@ -29,6 +29,8 @@ pipeline {
daysToKeepStr: '30',
artifactNumToKeepStr: '3',
))
/* Allows combined build to copy */
copyArtifactPermission('/status-desktop/*')
/* Abort old PR builds. */
disableConcurrentBuilds(
abortPrevious: isPRBuild