summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-05 17:51:02 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-05 17:51:02 +0900
commit7a2bd91ed24cceecc627df574fc109cdd6b258dd (patch)
tree1a0b148b4083e58d5addb1c351717a8b091b1b75
parentf4df9fb46b35335530fd99fabfa65772e6aaf1df (diff)
Try to fix `invalid option`
https://github.com/ruby/ruby/runs/212727409#step:11:67 ``` invalid option: -j5 ```
-rw-r--r--.github/workflows/macos.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 77079afa0d..36272f1abf 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -48,7 +48,9 @@ jobs:
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
- name: Tests (test-bundled-gems)
# Remove TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest if https://github.com/seattlerb/minitest/pull/798 resolved
- run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no" TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
+ run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
+ env:
+ RUBY_TESTOPTS: "-q --tty=no"
continue-on-error: true
if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
- name: Leaked Globals