1
0
Fork 0
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:
Nobuyoshi Nakada 2019-11-05 10:28:44 +09:00
parent 8869384367
commit 1390d56ecf
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -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"