mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Added test check to ubuntu on GitHub Actions
This commit is contained in:
parent
dc020b06ff
commit
ea496e9fb2
Notes:
git
2019-08-31 04:40:14 +09:00
1 changed files with 8 additions and 1 deletions
9
.github/workflows/ubuntu.yml
vendored
9
.github/workflows/ubuntu.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
test_task: [ "test-bundler", "test-bundled-gems" ]
|
test_task: [ "check", "test-bundler", "test-bundled-gems" ]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
- name: Install libraries
|
- name: Install libraries
|
||||||
|
|
@ -46,6 +46,13 @@ jobs:
|
||||||
run: ./configure -C --disable-install-doc
|
run: ./configure -C --disable-install-doc
|
||||||
- run: make $JOBS
|
- run: make $JOBS
|
||||||
# TODO: Remove `continue-on-error` once they become stable and also we have a notification for their failure.
|
# 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
|
- name: make test-bundler/test-bundled-gems
|
||||||
run: make -s ${{ matrix.test_task }}
|
run: make -s ${{ matrix.test_task }}
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue