Skip to content

Commit a7e69b8

Browse files
authored
fix(ci,clis): Change ci runner, fix timeout-minutes, Increase t8n timeout (#2024)
* fix(ci): Change ci runner, fix `timeout-minutes` * fix(clis): Increase server timeout when filling tests
1 parent 317cf05 commit a7e69b8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/fixtures.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
echo "features=$(cat features.json)" >> "$GITHUB_OUTPUT"
3030
build:
3131
needs: features
32-
runs-on: [self-hosted-ghr, size-chungus-x64]
32+
runs-on: [self-hosted-ghr, size-megachungus-x64]
33+
timeout-minutes: 720
3334
strategy:
3435
matrix:
3536
name: ${{ fromJson(needs.features.outputs.features) }}
@@ -60,7 +61,6 @@ jobs:
6061
release_name: ${{ matrix.name }}
6162
uv_version: ${{ vars.UV_VERSION }}
6263
python_version: ${{ vars.DEFAULT_PYTHON_VERSION }}
63-
timeout-minutes: 720
6464
release:
6565
runs-on: ubuntu-latest
6666
needs: build

.github/workflows/fixtures_feature.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ jobs:
2323
echo names=${names}
2424
echo names=${names} >> "$GITHUB_OUTPUT"
2525
build:
26-
runs-on: [self-hosted-ghr, size-chungus-x64]
2726
needs: feature-names
27+
runs-on: [self-hosted-ghr, size-megachungus-x64]
28+
timeout-minutes: 720
2829
strategy:
2930
matrix:
3031
feature: ${{ fromJSON(needs.feature-names.outputs.names) }}
@@ -55,7 +56,6 @@ jobs:
5556
release_name: ${{ matrix.feature }}
5657
uv_version: ${{ vars.UV_VERSION }}
5758
python_version: ${{ vars.DEFAULT_PYTHON_VERSION }}
58-
timeout-minutes: 720
5959
release:
6060
runs-on: ubuntu-latest
6161
needs: build

src/ethereum_clis/transition_tool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838

3939
# TODO: reduce NORMAL_SERVER_TIMEOUT back down to 20 once BLS timeout issue is resolved:
4040
# https://github.com/ethereum/execution-spec-tests/issues/1894
41-
NORMAL_SERVER_TIMEOUT = 180
42-
SLOW_REQUEST_TIMEOUT = 180
41+
NORMAL_SERVER_TIMEOUT = 600
42+
SLOW_REQUEST_TIMEOUT = 600
4343

4444

4545
def get_valid_transition_tool_names() -> set[str]:

0 commit comments

Comments
 (0)