From d106f082915cbab454d5a7dc3661cea5136f42cf Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 19 Aug 2019 09:41:51 +0900 Subject: [PATCH] Stop reporting test-bundled-gems results by marking continue-on-error. I dropped it to test Slack notification, and I finished to test it. --- .github/workflows/macos.yml | 8 ++++++++ .github/workflows/ubuntu.yml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index f7935c922c..d9d7c083ed 100644 --- a/.github/workflows/macos.yml +++ b/.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 diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 4c2d08463d..210dcce524 100644 --- a/.github/workflows/ubuntu.yml +++ b/.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