Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #731 from jovfer/feature/rc_1_4_0
Browse files Browse the repository at this point in the history
Feature RC 1.4.0 update
  • Loading branch information
jovfer authored May 8, 2018
2 parents eb04ced + 49979ba commit 13fe506
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions Jenkinsfile.cd
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,11 @@ def publishingRCtoStable() {
echo 'Moving RC artifacts to Stable: Checkout csm'
checkout scm

echo 'Moving RC artifacts to Stable: Download packaging utils'
dir('sovrin-packaging') {
downloadPackagingUtils()
}

version = getSrcVersion()

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

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

sh "./upload_debs.py $path $SOVRIN_SDK_REPO_NAME stable --host $SOVRIN_REPO_HOST --ssh-key $sovrin_key"
sh "./sovrin-packaging/upload_debs.py $path $SOVRIN_SDK_REPO_NAME stable --host $SOVRIN_REPO_HOST --ssh-key $sovrin_key"
}
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Please refer to [release workflow](doc/release-workflow.md) for more details.
### Ubuntu based distributions (Ubuntu 16.04)
It is recommended to install packages with APT:

apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
sudo add-apt-repository "deb https://repo.sovrin.org/sdk/deb xenial {release channel}"
sudo apt-get update
sudo apt-get install -y libindy
Expand Down
2 changes: 1 addition & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pre-Built binaries can be downloaded from https://repo.sovrin.org/:

On Ubuntu it is recommended to install packages with APT (change stable to `master` or `rc` if needed):
```
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
sudo add-apt-repository "deb https://repo.sovrin.org/sdk/deb xenial stable"
sudo apt-get update
sudo apt-get install -y indy-cli
Expand Down
2 changes: 1 addition & 1 deletion libindy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ interoperability_tests = []
revocation_tests = []

[dependencies]
indy-crypto = { version = "=0.4.0", optional = true }
indy-crypto = { version = "=0.4.1", optional = true }
int_traits = { version = "0.1.1", optional = true }
digest = "0.6.2"
env_logger = "0.4.2"
Expand Down

0 comments on commit 13fe506

Please sign in to comment.