Skip to content

Commit 13fe506

Browse files
authored
Merge pull request hyperledger-indy#731 from jovfer/feature/rc_1_4_0
Feature RC 1.4.0 update
2 parents eb04ced + 49979ba commit 13fe506

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Please refer to [release workflow](doc/release-workflow.md) for more details.
2828
### Ubuntu based distributions (Ubuntu 16.04)
2929
It is recommended to install packages with APT:
3030

31-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
31+
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
3232
sudo add-apt-repository "deb https://repo.sovrin.org/sdk/deb xenial {release channel}"
3333
sudo apt-get update
3434
sudo apt-get install -y libindy

cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pre-Built binaries can be downloaded from https://repo.sovrin.org/:
1414

1515
On Ubuntu it is recommended to install packages with APT (change stable to `master` or `rc` if needed):
1616
```
17-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
17+
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
1818
sudo add-apt-repository "deb https://repo.sovrin.org/sdk/deb xenial stable"
1919
sudo apt-get update
2020
sudo apt-get install -y indy-cli

libindy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interoperability_tests = []
3333
revocation_tests = []
3434

3535
[dependencies]
36-
indy-crypto = { version = "=0.4.0", optional = true }
36+
indy-crypto = { version = "=0.4.1", optional = true }
3737
int_traits = { version = "0.1.1", optional = true }
3838
digest = "0.6.2"
3939
env_logger = "0.4.2"

0 commit comments

Comments
 (0)