1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Revert "Explain which test task"

This reverts commit 9bc1667a18.

`name` lines are not expanded.
This commit is contained in:
Nobuyoshi Nakada 2019-08-27 15:11:01 +09:00
parent 0c8525ecc9
commit 2fb723b8af
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
2 changed files with 4 additions and 4 deletions

View file

@ -42,14 +42,14 @@ jobs:
- name: configure
run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
- run: make $JOBS
- name: Tests (${{ matrix.test_task }})
- name: Tests
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "$JOBS -q --tty=no"
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
- name: Tests (${{ matrix.test_task }})
- name: Tests
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "$JOBS -q --tty=no"

View file

@ -42,13 +42,13 @@ jobs:
- name: configure
run: ./configure -C --disable-install-doc
- run: make -j$((1 + $(nproc --all)))
- name: Tests (${{ matrix.test_task }})
- name: Tests
run: make -s TESTOPTS="-j$((1 + $(nproc --all))) -q --tty=no" ${{ matrix.test_task }}
env:
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
- name: Tests (${{ matrix.test_task }})
- name: Tests
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "-q --tty=no"