mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Remove unreachable step level [ci skip]
This commit is contained in:
parent
203b7fa1ae
commit
0b26f56a77
3 changed files with 4 additions and 5 deletions
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
@ -46,13 +46,13 @@ jobs:
|
||||||
run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
|
run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
|
||||||
env:
|
env:
|
||||||
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
|
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)
|
- name: Tests (test-bundled-gems)
|
||||||
# Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
|
# 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
|
run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
|
||||||
env:
|
env:
|
||||||
RUBY_TESTOPTS: "-q --tty=no"
|
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
|
- name: Leaked Globals
|
||||||
run: make -s leaked-globals
|
run: make -s leaked-globals
|
||||||
- uses: k0kubun/action-slack@v2.0.0
|
- uses: k0kubun/action-slack@v2.0.0
|
||||||
|
|
4
.github/workflows/ubuntu.yml
vendored
4
.github/workflows/ubuntu.yml
vendored
|
@ -74,13 +74,13 @@ jobs:
|
||||||
run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
|
run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
|
||||||
env:
|
env:
|
||||||
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
|
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)
|
- name: Tests (test-bundled-gems)
|
||||||
# Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
|
# 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
|
run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
|
||||||
env:
|
env:
|
||||||
RUBY_TESTOPTS: "-q --tty=no"
|
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
|
- name: Leaked Globals
|
||||||
run: make -s leaked-globals
|
run: make -s leaked-globals
|
||||||
- name: Debug GitHub context
|
- name: Debug GitHub context
|
||||||
|
|
1
.github/workflows/windows.yml
vendored
1
.github/workflows/windows.yml
vendored
|
@ -59,7 +59,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
||||||
nmake ${{ matrix.test_task }}
|
nmake ${{ matrix.test_task }}
|
||||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
||||||
- uses: k0kubun/action-slack@v2.0.0
|
- uses: k0kubun/action-slack@v2.0.0
|
||||||
with:
|
with:
|
||||||
payload: |
|
payload: |
|
||||||
|
|
Loading…
Reference in a new issue