summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-27 14:30:52 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-27 14:30:52 +0900
commit9bc1667a188392b94971b9b96507af76cbd5f413 (patch)
treee38f62563d3b08c29321b92d82372aad3d600bea /.github
parent2789bdddc7602fbc2089242d12e5cc4deed181c4 (diff)
Explain which test task
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml4
-rw-r--r--.github/workflows/ubuntu.yml4
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 2e53d52f59..80c590d513 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
+ - name: Tests (${{ matrix.test_task }})
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
+ - name: Tests (${{ matrix.test_task }})
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "$JOBS -q --tty=no"
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 7b58b32d07..7bc00d7153 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -42,13 +42,13 @@ jobs:
- name: configure
run: ./configure -C --disable-install-doc
- run: make -j$((1 + $(nproc --all)))
- - name: Tests
+ - name: Tests (${{ matrix.test_task }})
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
+ - name: Tests (${{ matrix.test_task }})
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "-q --tty=no"