From 7a2bd91ed24cceecc627df574fc109cdd6b258dd Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Thu, 5 Sep 2019 17:51:02 +0900 Subject: [PATCH] Try to fix `invalid option` https://github.com/ruby/ruby/runs/212727409#step:11:67 ``` invalid option: -j5 ``` --- .github/workflows/macos.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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