aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-11-05 10:28:44 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-11-05 10:28:44 +0900
commit1390d56ecfac2e430df94c4d4a60d8fa80d11166 (patch)
treee12400e47a3501384d05b6b45cea19cfeb453cc4 /.github
parent8869384367a1b5e856b2f4b7b7d56296c71a572c (diff)
downloadruby-1390d56ecfac2e430df94c4d4a60d8fa80d11166.tar.gz
Set $JOBS to Tests for parallel tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml2
-rw-r--r--.github/workflows/ubuntu.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 22794f88a3..0053dccb20 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -55,7 +55,7 @@ jobs:
- name: Make
run: make -C build $JOBS
- name: Tests
- run: make -C build -s ${{ matrix.test_task }}
+ run: make -C build $JOBS -s ${{ matrix.test_task }}
env:
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
RUBY_TESTOPTS: "-q --tty=no"
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 7db6b7a62f..a22ae7df70 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -79,7 +79,7 @@ jobs:
- name: Make
run: make -C build $JOBS
- name: Tests
- run: make -C build -s ${{ matrix.test_task }}
+ run: make -C build $JOBS -s ${{ matrix.test_task }}
env:
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
RUBY_TESTOPTS: "-q --tty=no"