mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Stop reporting test-bundled-gems results
by marking continue-on-error. I dropped it to test Slack notification, and I finished to test it.
This commit is contained in:
parent
c100e3856a
commit
d106f08291
2 changed files with 16 additions and 0 deletions
8
.github/workflows/macos.yml
vendored
8
.github/workflows/macos.yml
vendored
|
@ -47,6 +47,14 @@ jobs:
|
|||
env:
|
||||
TESTOPTS: "$JOBS -q --tty=no"
|
||||
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
|
||||
if: matrix.test_task != 'test-bundled-gems'
|
||||
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
|
||||
- name: Tests
|
||||
run: make -s ${{ matrix.test_task }}
|
||||
env:
|
||||
TESTOPTS: "$JOBS -q --tty=no"
|
||||
continue-on-error: true
|
||||
if: matrix.test_task == 'test-bundled-gems'
|
||||
- name: Leaked Globals
|
||||
run: make -s leaked-globals
|
||||
- uses: k0kubun/action-slack@v1.0.0
|
||||
|
|
8
.github/workflows/ubuntu.yml
vendored
8
.github/workflows/ubuntu.yml
vendored
|
@ -50,6 +50,14 @@ jobs:
|
|||
env:
|
||||
TESTOPTS: "$JOBS -q --tty=no"
|
||||
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
|
||||
if: matrix.test_task != 'test-bundled-gems'
|
||||
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
|
||||
- name: Tests
|
||||
run: make -s ${{ matrix.test_task }}
|
||||
env:
|
||||
TESTOPTS: "$JOBS -q --tty=no"
|
||||
continue-on-error: true
|
||||
if: matrix.test_task == 'test-bundled-gems'
|
||||
- name: Leaked Globals
|
||||
run: make -s leaked-globals
|
||||
- uses: k0kubun/action-slack@v1.0.0
|
||||
|
|
Loading…
Add table
Reference in a new issue