Skip to content

Commit 7f9ab16

Browse files
committed
Fix xargo
1 parent 152f721 commit 7f9ab16

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,14 @@ jobs:
3939
rustup component add rust-src clippy
4040
- name: Install xargo
4141
run: |
42+
cd cosmwasm/enclaves/execute/
4243
cargo --version
4344
rustc --version
44-
cargo +stable install xargo --version 0.3.25
45+
pushd ~
46+
git clone https://github.com/scrtlabs/xargo.git --branch fix
47+
cd xargo
48+
cargo install --path .
49+
popd
4550
xargo --version
4651
- name: Test enclave
4752
run: |
@@ -246,7 +251,11 @@ jobs:
246251
cd cosmwasm/enclaves/execute/
247252
cargo --version
248253
rustc --version
249-
cargo +stable install xargo --version 0.3.25
254+
pushd ~
255+
git clone https://github.com/scrtlabs/xargo.git --branch fix
256+
cd xargo
257+
cargo install --path .
258+
popd
250259
xargo --version
251260
- name: Clippy
252261
run: |

0 commit comments

Comments
 (0)