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:
Takashi Kokubun 2019-08-19 09:41:51 +09:00
Родитель c100e3856a
Коммит d106f08291
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6FFC433B12EE23DD
2 изменённых файлов: 16 добавлений и 0 удалений

8
.github/workflows/macos.yml поставляемый
Просмотреть файл

@ -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 поставляемый
Просмотреть файл

@ -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