diff options
| author | Yusuke Endoh <mame@ruby-lang.org> | 2024-06-06 17:35:06 +0900 |
|---|---|---|
| committer | Yusuke Endoh <mame@ruby-lang.org> | 2024-06-07 20:15:37 +0900 |
| commit | 37e2063b81805bcec489e47c15db6046b4e75ce8 (patch) | |
| tree | 7ae3b132985daf45104d9a43d045b1ff1ffd5365 | |
| parent | 1c5c724c6f92a4461b90af7afd8acafcf40673b1 (diff) | |
Set `ulimit -c unlimited` for `make test-all` in macOS
| -rw-r--r-- | .github/workflows/macos.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 3d97c092f7..172ecc8626 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -107,6 +107,7 @@ jobs: - name: make ${{ matrix.test_task }} run: | + ulimit -c unlimited make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"} timeout-minutes: 60 env: @@ -116,7 +117,6 @@ jobs: - name: make skipped tests run: | - ulimit -c unlimited make -s test-all TESTS="${TESTS//-n!\//-n/}" env: GNUMAKEFLAGS: '' |
