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

Commit

Permalink
fix CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
tdelabro committed Oct 11, 2023
1 parent 59090bc commit 3f768b2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/starknet-rpc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,20 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y clang llvm libudev-dev protobuf-compiler
- name: Setup dev chain
- name: Run rpc native test
run: |-
run: |
./target/release/madara setup --chain=dev
./target/release/madara --dev --sealing=manual --execution=Native --tmp &
run: |-
./target/release/madara --dev --sealing=manual --execution=Native &
while ! echo exit | nc localhost 9944; do sleep 1; done
cd starknet-rpc-test
cargo test
ps aux | grep -i ./target/release/madara | awk '{print $2}' | xargs sudo kill -9
- name: Run rpc wasm test
run: |-
./target/release/madara setup --chain=dev
./target/release/madara --dev --sealing=manual --execution=Native --tmp &
./target/release/madara --dev --sealing=manual --execution=Wasm &
while ! echo exit | nc localhost 9944; do sleep 1; done
cd starknet-rpc-test
cargo test
ps aux | grep -i ./target/release/madara | awk '{print $2}' | xargs sudo kill -9

0 comments on commit 3f768b2

Please sign in to comment.