[debug] disable other wf, wait on failure
Some checks are pending
Test Ethereum Plugeth Fixturenet Stack / Test fixturenet-plugeth stack (push) Waiting to run
Test Ethereum Fixturenet Stack / Run Ethereum Fixturenet stack test (push) Has been skipped

This commit is contained in:
Roy Crihfield 2024-06-21 18:03:16 +08:00
parent bf71dc3714
commit 9d50f2cfbe
2 changed files with 8 additions and 0 deletions

View File

@ -10,6 +10,7 @@ jobs:
test:
name: "Run Ethereum Fixturenet stack test"
runs-on: ubuntu-latest
if: false
steps:
- name: "Clone project repository"
uses: actions/checkout@v3

View File

@ -41,3 +41,10 @@ jobs:
run: |
PATH=$PATH:~/bin
./tests/fixturenet-plugeth-stack/run-test.sh
- name: "Wait if job failed"
if: ${{ failure() }}
run: |
until [ -f /tmp/stop ]; do
sleep 10
done