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