Skip to content

Commit c8b19c2

Browse files
committed
fix workflow files
1 parent 132b990 commit c8b19c2

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/test-linux.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,11 @@ jobs:
5454
- name: Build
5555
run: make -C node build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn"
5656
- name: Test
57-
run: make -C node run-ci -j4 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
57+
run: make -C node run-ci -j4 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
5858
- name: Re-run test in a folder whose name contains unusual chars
5959
run: |
60-
mv node 'dir%20with unusual"chars '"'"'åß∂ƒ©∆¬…`'
61-
cd 'dir%20with unusual"chars '"'"'åß∂ƒ©∆¬…`'
60+
mv node "$DIR"
61+
cd "$DIR"
6262
./tools/test.py --flaky-tests keep_retrying -p actions -j 4
63+
env:
64+
DIR: "dir%20with unusual\"chars$'åß∂ƒ©∆¬…`"

.github/workflows/test-macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4848
with:
4949
persist-credentials: false
50+
path: node
5051
- name: Set up Python ${{ env.PYTHON_VERSION }}
5152
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
5253
with:
@@ -80,11 +81,11 @@ jobs:
8081
df -h
8182
echo "::endgroup::"
8283
- name: Build
83-
run: make build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn"
84+
run: make -C node build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn"
8485
- name: Free Space After Build
8586
run: df -h
8687
- name: Test
87-
run: make run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
88+
run: make -C node run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
8889
- name: Re-run test in a folder whose name contains unusual chars
8990
run: |
9091
mv node "$DIR"

0 commit comments

Comments
 (0)