Skip to content

Commit 7232f26

Browse files
authored
Remove -j from MinGW test-all
MinGW CI has been crashing too often. Now that we don't have slow test_mjit in MinGW, I'd like to see if not using parallel test workers fixes the problem.
1 parent aa8a3b2 commit 7232f26

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/mingw.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ jobs:
7070
- name: set env
7171
run: |
7272
echo "GNUMAKEFLAGS=-j$((2 * NUMBER_OF_PROCESSORS))" >> $GITHUB_ENV
73-
echo "TEST_JOBS=$((15 * NUMBER_OF_PROCESSORS / 10))" >> $GITHUB_ENV
7473
7574
- name: where check
7675
run: |
@@ -140,7 +139,7 @@ jobs:
140139
make ${{ StartsWith(matrix.test_task, 'test/') && matrix.test_task || 'test-all' }}
141140
env:
142141
RUBY_TESTOPTS: >-
143-
-j${{env.TEST_JOBS}} --retry --job-status=normal --show-skip --timeout-scale=1.5
142+
--retry --job-status=normal --show-skip --timeout-scale=1.5
144143
${{ matrix.test-all-opts }}
145144
BUNDLER_VERSION:
146145
if: ${{matrix.test_task == 'check' || matrix.test_task == 'test-all' || StartsWith(matrix.test_task, 'test/')}}

0 commit comments

Comments
 (0)