diff --git a/ci/Jenkinsfile.combined b/ci/Jenkinsfile.combined index f87a010cb6..ec9758eb66 100644 --- a/ci/Jenkinsfile.combined +++ b/ci/Jenkinsfile.combined @@ -18,6 +18,8 @@ pipeline { daysToKeepStr: '30', artifactNumToKeepStr: '10', )) + /* Allows combined build to copy */ + copyArtifactPermission('/status-desktop/*') } parameters { @@ -74,14 +76,16 @@ pipeline { } } post { - always { script { dir('pkg') { - /* Generate sha256 checksums for all artifacts. */ - sha = "./${utils.pkgFilename(ext: 'sha256')}" - sh "sha256sum * | tee ../${sha}" - archiveArtifacts('*') - urls['SHA'] = s3.uploadArtifact(sha) - jenkins.setBuildDesc(urls) - } } } + always { script { + dir('pkg') { + /* Generate sha256 checksums for all artifacts. */ + sha = "./${utils.pkgFilename(ext: 'sha256')}" + sh "sha256sum * | tee ./${sha}" + urls['SHA'] = s3.uploadArtifact(sha) + jenkins.setBuildDesc(urls) + } + archiveArtifacts('pkg/*') + } } failure { script { withCredentials([ string(