Skip to content

Commit 3a00d30

Browse files
committed
PKG-344 psmdb.cd: fix htz/aws artifacts uploads
1 parent 677f159 commit 3a00d30

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

vars/uploadDEBfromAWS.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ def call(String CLOUD_NAME, String FOLDER_NAME, String AWS_STASH_PATH) {
22
def nodeLabel = (CLOUD_NAME == 'Hetzner') ? 'launcher-x64' : 'micro-amazon'
33
node(nodeLabel) {
44
deleteDir()
5-
popArtifactFolder(FOLDER_NAME, AWS_STASH_PATH)
5+
popArtifactFolder(CLOUD_NAME, FOLDER_NAME, AWS_STASH_PATH)
66
//unstash 'debs'
77
unstash 'uploadPath'
88
withCredentials([sshUserPrivateKey(credentialsId: 'repo.ci.percona.com', keyFileVariable: 'KEY_PATH', usernameVariable: 'USER')]) {

vars/uploadRPMfromAWS.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ def call(String CLOUD_NAME, String FOLDER_NAME, String AWS_STASH_PATH) {
22
def nodeLabel = (CLOUD_NAME == 'Hetzner') ? 'launcher-x64' : 'micro-amazon'
33
node(nodeLabel) {
44
deleteDir()
5-
popArtifactFolder(FOLDER_NAME, AWS_STASH_PATH)
5+
popArtifactFolder(CLOUD_NAME, FOLDER_NAME, AWS_STASH_PATH)
66
unstash 'uploadPath'
77
withCredentials([sshUserPrivateKey(credentialsId: 'repo.ci.percona.com', keyFileVariable: 'KEY_PATH', usernameVariable: 'USER')]) {
88
sh """

vars/uploadTarballfromAWS.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ def call(String CLOUD_NAME, String FOLDER_NAME, String AWS_STASH_PATH, String Ta
22
def nodeLabel = (CLOUD_NAME == 'Hetzner') ? 'launcher-x64' : 'micro-amazon'
33
node(nodeLabel) {
44
deleteDir()
5-
popArtifactFolder(FOLDER_NAME, AWS_STASH_PATH)
5+
popArtifactFolder(CLOUD_NAME, FOLDER_NAME, AWS_STASH_PATH)
66
//unstash "${TarballType}.tarball"
77
unstash 'uploadPath'
88
withCredentials([sshUserPrivateKey(credentialsId: 'repo.ci.percona.com', keyFileVariable: 'KEY_PATH', usernameVariable: 'USER')]) {

0 commit comments

Comments
 (0)