From e7996e0fd6718fa13b5cd5328f1bb6393a45392c Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Sun, 11 Aug 2019 06:26:17 +0900 Subject: Try to migrate test-bundler to Actions. --- .github/workflows/macos.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index f05976b551..e3b44cd4e8 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 -- cgit v1.2.3