Skip to content

Commit a3c3a5e

Browse files
committed
tools: disable failing test envs in test-linux CI
29c0324 added a few test environments that are simply not working 20.x branch. Let's revert those changes that were unrelated, probably a result of a sloppy conflict resolution.
1 parent 14d228a commit a3c3a5e

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

.github/workflows/test-linux.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,11 @@ permissions:
3535
jobs:
3636
test-linux:
3737
if: github.event.pull_request.draft == false
38-
runs-on: ${{ matrix.os }}
39-
strategy:
40-
fail-fast: false
41-
matrix:
42-
os: [ubuntu-24.04, ubuntu-24.04-arm]
38+
runs-on: ubuntu-24.04
4339
steps:
4440
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4541
with:
4642
persist-credentials: false
47-
path: node
4843
- name: Set up Python ${{ env.PYTHON_VERSION }}
4944
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
5045
with:
@@ -56,13 +51,6 @@ jobs:
5651
- name: Environment Information
5752
run: npx envinfo
5853
- name: Build
59-
run: make -C node build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn"
54+
run: make build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn"
6055
- name: Test
61-
run: make -C node run-ci -j4 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
62-
- name: Re-run test in a folder whose name contains unusual chars
63-
run: |
64-
mv node "$DIR"
65-
cd "$DIR"
66-
./tools/test.py --flaky-tests keep_retrying -p actions -j 4
67-
env:
68-
DIR: dir%20with $unusual"chars?'åß∂ƒ©∆¬…`
56+
run: make run-ci -j4 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"

0 commit comments

Comments
 (0)