Skip to content

Commit 3f5ac86

Browse files
authored
chore(ci): fix starknet build (#2850)
1 parent ac204f8 commit 3f5ac86

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci-starknet-contract.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
run: curl https://get.starkli.sh | sh && . ~/.config/.starkli/env && starkliup -v $(awk '/starkli/{print $2}' .tool-versions)
2828
- uses: actions-rust-lang/setup-rust-toolchain@v1
2929
- name: Install Devnet
30-
run: cargo install starknet-devnet --version $(awk '/starknet-devnet/{print $2}' .tool-versions)
30+
# it doesn't build with more recent Rust versions
31+
run: cargo +1.85.0 install starknet-devnet --version $(awk '/starknet-devnet/{print $2}' .tool-versions)
3132
- name: Check formatting
3233
run: scarb fmt --check
3334
- name: Run tests

0 commit comments

Comments
 (0)