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

Commit

Permalink
fix CI after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
tdelabro committed Oct 11, 2023
1 parent 3f07518 commit 59090bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/starknet-rpc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
sudo apt-get install -y clang llvm libudev-dev protobuf-compiler
- name: Run rpc native test
run: |-
./target/release/madara setup
./target/release/madara run --dev --sealing=manual --execution=Native --tmp &
./target/release/madara setup --chain=dev
./target/release/madara --dev --sealing=manual --execution=Native --tmp &
while ! echo exit | nc localhost 9944; do sleep 1; done
cd starknet-rpc-test
cargo test
- name: Run rpc wasm test
run: |-
./target/release/madara setup
./target/release/madara run --dev --sealing=manual --execution=Wasm --tmp &
./target/release/madara setup --chain=dev
./target/release/madara --dev --sealing=manual --execution=Native --tmp &
while ! echo exit | nc localhost 9944; do sleep 1; done
cd starknet-rpc-test
cargo test

0 comments on commit 59090bc

Please sign in to comment.