ci: set PKG_URL to avoid interrobang for builds

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-21 12:35:48 +02:00
parent 8c457a2495
commit b70a1c3a45
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
1 changed files with 6 additions and 16 deletions

View File

@ -74,22 +74,12 @@ pipeline {
}
}
// TODO: enable after generating the AppImage
// stage('Parallel Upload') {
// parallel {
// stage('Upload') {
// steps { script {
// env.PKG_URL = s3.uploadArtifact(env.STATUS_CLIENT_APPIMAGE)
// jenkins.setBuildDesc(AppImage: env.PKG_URL)
// } }
// }
// stage('Archive') {
// steps { script {
// archiveArtifacts("${env.STATUS_CLIENT_APPIMAGE}*")
// } }
// }
// }
// }
stage('Upload') {
steps { script {
/* TODO: Enable after generating the AppImage. */
env.PKG_URL = "${currentBuild.absoluteUrl}/consoleText"
} }
}
}
post {