1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Try to migrate test-bundler to Actions.

This commit is contained in:
Hiroshi SHIBATA 2019-08-11 06:26:17 +09:00
parent 6017e81b03
commit e7996e0fd6
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -9,6 +9,9 @@ on:
jobs:
latest:
runs-on: macos-latest
strategy:
matrix:
test_task: [ "test-all", "test-spec", "test-bundler" ]
steps:
- name: Disable Firewall
run: |
@ -31,9 +34,10 @@ jobs:
- run: make $JOBS
- name: make test
run: make -s test TESTOPTS="$JOBS -q --tty=no"
- name: make test-all
run: make -s test-all TESTOPTS="$JOBS -q --tty=no"
- name: make test-spec
run: make -s test-spec MSPECOPT=-ff # not using `-j` because sometimes `mspec -j` silently dies
- name: make test-*
run: make -s ${{ matrix.test_task }}
env:
TESTOPTS: "$JOBS -q --tty=no"
MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
- name: Leaked Globals
run: make -s leaked-globals