[前][次][番号順一覧][スレッド一覧]

ruby-changes:57301

From: Nobuyoshi <ko1@a...>
Date: Tue, 27 Aug 2019 14:31:41 +0900 (JST)
Subject: [ruby-changes:57301] Nobuyoshi Nakada: 9bc1667a18 (master): Explain which test task

https://git.ruby-lang.org/ruby.git/commit/?id=9bc1667a18

From 9bc1667a188392b94971b9b96507af76cbd5f413 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Tue, 27 Aug 2019 14:30:52 +0900
Subject: Explain which test task


diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 2e53d52..80c590d 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -42,14 +42,14 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L42
       - name: configure
         run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@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 7b58b32..7bc00d7 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -42,13 +42,13 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L42
       - 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"
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]