Skip to content

Commit fa72dcb

Browse files
committed
Fix CD pipeline for moving RC to stable.
Signed-off-by: Sergey Minaev <[email protected]>
1 parent eb04ced commit fa72dcb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Jenkinsfile.cd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,11 @@ def publishingRCtoStable() {
550550
echo 'Moving RC artifacts to Stable: Checkout csm'
551551
checkout scm
552552

553+
echo 'Moving RC artifacts to Stable: Download packaging utils'
554+
dir('sovrin-packaging') {
555+
downloadPackagingUtils()
556+
}
557+
553558
version = getSrcVersion()
554559

555560
echo 'Moving Windows RC artifacts to Stable: libindy'
@@ -629,10 +634,9 @@ def publishLibindyCliDebRCtoStable(testEnv, version) {
629634

630635
def uploadDebianFilesToStable() {
631636
withCredentials([file(credentialsId: 'SovrinRepoSSHKey', variable: 'sovrin_key')]) {
632-
downloadPackagingUtils()
633637
path = sh(returnStdout: true, script: 'pwd').trim()
634638

635-
sh "./upload_debs.py $path $SOVRIN_SDK_REPO_NAME stable --host $SOVRIN_REPO_HOST --ssh-key $sovrin_key"
639+
sh "./sovrin-packaging/upload_debs.py $path $SOVRIN_SDK_REPO_NAME stable --host $SOVRIN_REPO_HOST --ssh-key $sovrin_key"
636640
}
637641
}
638642

0 commit comments

Comments
 (0)