summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 2164acd484..bd2a14341e 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -41,10 +41,19 @@ jobs:
- name: configure
run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
- run: make $JOBS
- - name: make check/test-bundler/test-bundled-gems
+ - name: make check
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "$JOBS -q --tty=no"
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
+ if: matrix.test_task == 'check'
+ # test-bundler/test-bundled-gems are separated because it randomly fails and ends up cancelling `make check`.
+ # TODO: Remove `continue-on-error` once they become stable and also we have a notification for their failure.
+ - name: make test-bundler/test-bundled-gems
+ run: make -s ${{ matrix.test_task }}
+ env:
+ TESTOPTS: "$JOBS -q --tty=no"
+ continue-on-error: true
+ if: matrix.test_task != 'check'
- name: Leaked Globals
run: make -s leaked-globals