mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Set $JOBS to Tests for parallel tests
This commit is contained in:
parent
8869384367
commit
1390d56ecf
2 changed files with 2 additions and 2 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -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"
|
||||
|
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue