mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Mark bundler / bundled-gems as continue-on-failure
because these tests have failed too often and it's false-positive for checking healthiness of the master branch.
This commit is contained in:
parent
bf77f43b39
commit
9874dca3e7
Notes:
git
2019-08-31 04:40:14 +09:00
2 changed files with 12 additions and 1 deletions
11
.github/workflows/macos.yml
vendored
11
.github/workflows/macos.yml
vendored
|
@ -41,10 +41,19 @@ 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: make check/test-bundler/test-bundled-gems
|
||||
- name: make check
|
||||
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 == 'check'
|
||||
# test-bundler/test-bundled-gems are separated because it randomly fails and ends up cancelling `make check`.
|
||||
# TODO: Remove `continue-on-error` once they become stable and also we have a notification for their failure.
|
||||
- name: make test-bundler/test-bundled-gems
|
||||
run: make -s ${{ matrix.test_task }}
|
||||
env:
|
||||
TESTOPTS: "$JOBS -q --tty=no"
|
||||
continue-on-error: true
|
||||
if: matrix.test_task != 'check'
|
||||
- name: Leaked Globals
|
||||
run: make -s leaked-globals
|
||||
|
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
|
@ -44,7 +44,9 @@ jobs:
|
|||
- name: configure
|
||||
run: ./configure -C --disable-install-doc
|
||||
- run: make $JOBS
|
||||
# TODO: Remove `continue-on-error` once they become stable and also we have a notification for their failure.
|
||||
- name: make test-bundler/test-bundled-gems
|
||||
run: make -s ${{ matrix.test_task }}
|
||||
continue-on-error: true
|
||||
- name: Leaked Globals
|
||||
run: make -s leaked-globals
|
||||
|
|
Loading…
Reference in a new issue