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

ruby-changes:58194

From: Kazuhiro <ko1@a...>
Date: Thu, 10 Oct 2019 16:49:57 +0900 (JST)
Subject: [ruby-changes:58194] 0b26f56a77 (master): Remove unreachable step level `[ci skip]`

https://git.ruby-lang.org/ruby.git/commit/?id=0b26f56a77

From 0b26f56a77a6dabe2b1c09c4569ed846798afcdc Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Thu, 10 Oct 2019 16:48:26 +0900
Subject: Remove unreachable step level `[ci skip]`


diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 7647b06..f958607 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -46,13 +46,13 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L46
         run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
         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]')
+        if: matrix.test_task != 'test-bundled-gems'
       - name: Tests (test-bundled-gems)
         # Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
         run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
         env:
           RUBY_TESTOPTS: "-q --tty=no"
-        if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
+        if: matrix.test_task == 'test-bundled-gems'
       - name: Leaked Globals
         run: make -s leaked-globals
       - uses: k0kubun/action-slack@v...
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index abb4e54..e2102e2 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -74,13 +74,13 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L74
         run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
         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]')
+        if: matrix.test_task != 'test-bundled-gems'
       - name: Tests (test-bundled-gems)
         # Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
         run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
         env:
           RUBY_TESTOPTS: "-q --tty=no"
-        if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
+        if: matrix.test_task == 'test-bundled-gems'
       - name: Leaked Globals
         run: make -s leaked-globals
       - name: Debug GitHub context
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index ebecaa4..a914b1b 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -59,7 +59,6 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows.yml#L59
         run: |
           call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
           nmake ${{ matrix.test_task }}
-        if: "!contains(github.event.head_commit.message, '[ci skip]')"
       - uses: k0kubun/action-slack@v...
         with:
           payload: |
-- 
cgit v0.10.2


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

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