Skip to content

Commit

Permalink
don't continue-on-error
Browse files Browse the repository at this point in the history
  • Loading branch information
seunlanlege committed Aug 13, 2024
1 parent 67c2973 commit 3fe2d13
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,30 +52,26 @@ jobs:
sudo apt-get install -y protobuf-compiler build-essential
- name: Build all binaries
continue-on-error: true
run: |
cargo update memchr --precise 2.7.4
cargo update serde_json --precise 1.0.120
cargo build --release --bins
- name: Aura Integration tests
continue-on-error: true
run: |
./target/release/aura-node simnode --dev --state-pruning=archive --blocks-pruning=archive &
sleep 20;
RUST_BACKTRACE=1 cargo test --release -p simnode-integration-tests --tests aura -- --nocapture
kill -9 $!
- name: Babe Integration tests
continue-on-error: true
run: |
./target/release/babe-node simnode --dev --state-pruning=archive --blocks-pruning=archive &
sleep 20;
RUST_BACKTRACE=1 cargo test --release -p simnode-integration-tests --tests babe -- --nocapture
kill -9 $!
- name: Parachain Integration tests
continue-on-error: true
run: |
./target/release/parachain-node simnode --dev --state-pruning=archive --blocks-pruning=archive &
sleep 20;
Expand Down

0 comments on commit 3fe2d13

Please sign in to comment.