summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-08-19 09:41:51 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2019-08-19 09:41:52 +0900
commitd106f082915cbab454d5a7dc3661cea5136f42cf (patch)
tree3b0a7b3337c9541f668090e278297cf30097b436 /.github/workflows/macos.yml
parentc100e3856a624f10b461d202f07f49791aa29c89 (diff)
Stop reporting test-bundled-gems results
by marking continue-on-error. I dropped it to test Slack notification, and I finished to test it.
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index f7935c922c..d9d7c083ed 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -47,6 +47,14 @@ jobs:
env:
TESTOPTS: "$JOBS -q --tty=no"
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
+ if: matrix.test_task != 'test-bundled-gems'
+ # test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
+ - name: Tests
+ run: make -s ${{ matrix.test_task }}
+ env:
+ TESTOPTS: "$JOBS -q --tty=no"
+ continue-on-error: true
+ if: matrix.test_task == 'test-bundled-gems'
- name: Leaked Globals
run: make -s leaked-globals
- uses: k0kubun/action-slack@v1.0.0