[前][次][番号順一覧][スレッド一覧]

ruby-changes:57540

From: Kazuhiro <ko1@a...>
Date: Thu, 5 Sep 2019 17:52:38 +0900 (JST)
Subject: [ruby-changes:57540] 7a2bd91ed2 (master): Try to fix `invalid option`

https://git.ruby-lang.org/ruby.git/commit/?id=7a2bd91ed2

From 7a2bd91ed24cceecc627df574fc109cdd6b258dd Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Thu, 5 Sep 2019 17:51:02 +0900
Subject: Try to fix `invalid option`

https://github.com/ruby/ruby/runs/212727409#step:11:67
```
invalid option: -j5
```

diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 77079af..36272f1 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -48,7 +48,9 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L48
       # 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
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]