Fix: jest e2e tests stuck in CI (#315)

* fix: decrease machine to ubuntu 20

* fix: add high gas price in global setup txs
This commit is contained in:
Victorien Gauch
2024-11-21 13:17:06 +01:00
committed by GitHub
parent d49165d7c0
commit b72d23e567
2 changed files with 17 additions and 14 deletions

View File

@@ -71,7 +71,7 @@ jobs:
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
outputs:
tests_outcome: ${{ steps.run_e2e_tests.outcome }}
runs-on: [self-hosted, ubuntu-22.04, X64, large]
runs-on: [self-hosted, ubuntu-20.04, X64, large]
steps:
- name: Setup upterm session
if: ${{ inputs.e2e-tests-with-ssh }}
@@ -101,7 +101,7 @@ jobs:
restore-keys: |
cached-
- name: Pull all images with retry
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
max_attempts: 10
retry_on: error
@@ -121,7 +121,7 @@ jobs:
shell: bash
- name: Spin up fresh environment with geth tracing with retry
if: ${{ inputs.tracing-engine == 'geth' }}
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
max_attempts: 10
retry_on: error
@@ -133,7 +133,7 @@ jobs:
make clean-environment
- name: Spin up fresh environment with besu tracing with retry
if: ${{ inputs.tracing-engine == 'besu' }}
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
max_attempts: 10
retry_on: error