Skip to content

Commit

Permalink
Make revert sequntial
Browse files Browse the repository at this point in the history
Signed-off-by: Danil <[email protected]>
  • Loading branch information
Deniallugo committed Aug 27, 2024
1 parent 0c8232c commit 47f56ff
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-zk-toolbox-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,14 @@ jobs:
- name: Run revert tests (external node)
run: |
ci_run zk_supervisor test revert --no-deps --external-node --ignore-prerequisites --chain chain_validium &> revert_validium.log &
PID2=$!
ci_run zk_supervisor test revert --no-deps --ignore-prerequisites --chain era &> revert_rollup.log &
PID1=$!
wait $PID1
wait $PID2
ci_run zk_supervisor test revert --no-deps --external-node --ignore-prerequisites --chain chain_validium &> revert_validium.log
# PID2=$!
ci_run zk_supervisor test revert --no-deps --ignore-prerequisites --chain era &> revert_rollup.log
# PID1=$!

# wait $PID1
# wait $PID2

# Upgrade tests should run last, because as soon as they
# finish the bootloader will be different
Expand Down

0 comments on commit 47f56ff

Please sign in to comment.