forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: set default rust version (openwallet-foundation#1036)
Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>
- Loading branch information
1 parent
deeb438
commit 0cc57ab
Showing
2 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,15 @@ author: '[email protected]' | |
runs: | ||
using: composite | ||
steps: | ||
# cargo build failing on latest release of rust due to | ||
# socket2 dependency in the plugin https://users.rust-lang.org/t/build-broken-with-parse-quote-spanned-is-ambiguous/80280/2 | ||
# so pointing rust version to 1.63.0 | ||
- name: Setup Postgres wallet plugin | ||
run: | | ||
sudo apt-get install -y libzmq3-dev libsodium-dev pkg-config libssl-dev | ||
curl https://sh.rustup.rs -sSf | bash -s -- -y | ||
export PATH="/root/.cargo/bin:${PATH}" | ||
rustup default 1.63.0 | ||
cd ../ | ||
git clone https://github.com/hyperledger/indy-sdk.git | ||
cd indy-sdk/experimental/plugins/postgres_storage/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters