From 0c8232cf9f46300d968fb226d19ab70fe9a6753a Mon Sep 17 00:00:00 2001 From: Danil Date: Tue, 27 Aug 2024 18:21:14 +0200 Subject: [PATCH] Run revert simultaneously Signed-off-by: Danil --- .github/workflows/ci-zk-toolbox-reusable.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-zk-toolbox-reusable.yml b/.github/workflows/ci-zk-toolbox-reusable.yml index 227982b4bca8..ac707d9eb965 100644 --- a/.github/workflows/ci-zk-toolbox-reusable.yml +++ b/.github/workflows/ci-zk-toolbox-reusable.yml @@ -144,8 +144,14 @@ jobs: - name: Run revert tests (external node) run: | - ci_run zk_supervisor test revert --no-deps --ignore-prerequisites --chain era &> revert_rollup.log - ci_run zk_supervisor test revert --no-deps --external-node --ignore-prerequisites --chain chain_validium &> revert_validium.log + 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