summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-27 15:11:01 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-27 15:11:39 +0900
commit2fb723b8af8dbcc2afc0fae7d434e66c2258dece (patch)
tree61a013931a43dd7defe46ad8bc2fe43b228a85a2 /.github/workflows/macos.yml
parent0c8525ecc987615f59fc68f2f767fc12217a7e4e (diff)
Revert "Explain which test task"
This reverts commit 9bc1667a188392b94971b9b96507af76cbd5f413. `name` lines are not expanded.
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 80c590d513..2e53d52f59 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -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"