summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-17 11:36:12 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-08-17 13:27:11 +0900
commitea496e9fb2c930ac0c5ff8c12c4a10fac0ec3c7b (patch)
treeb559b5cd5d0cc56c0ddecb2981797d792f088540 /.github
parentdc020b06ffc85f3484fad0c5a014cbcae197bc40 (diff)
Added test check to ubuntu on GitHub Actions
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2379
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ubuntu.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index fe4eb6143c..38c904da52 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- test_task: [ "test-bundler", "test-bundled-gems" ]
+ test_task: [ "check", "test-bundler", "test-bundled-gems" ]
fail-fast: false
steps:
- name: Install libraries
@@ -46,6 +46,13 @@ jobs:
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 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'
+ continue-on-error: true
- name: make test-bundler/test-bundled-gems
run: make -s ${{ matrix.test_task }}
continue-on-error: true