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:
parent
6017e81b03
commit
e7996e0fd6
1 changed files with 8 additions and 4 deletions
12
.github/workflows/macos.yml
vendored
12
.github/workflows/macos.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue