Update and rename swift-macosx.yml to macosx.yml

This commit is contained in:
ericvergnaud 2021-01-24 15:18:42 +08:00 committed by GitHub
parent 8227df1c1e
commit 4c2ccdb2c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 6 deletions

View File

@ -12,10 +12,8 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- GROUP: LEXER
- GROUP: PARSER
- GROUP: RECURSION
GROUP: [LEXER, PARSER, RECURSION]
TARGET: [swift, cpp, dotnet]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
@ -29,7 +27,7 @@ jobs:
- name: Build tool with Maven
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: Test with Maven
run: arch -x86_64 .github/scripts/run-tests-swift.sh
run: arch -x86_64 .github/scripts/run-tests-${{ matrix.TARGET }}.sh
env:
TARGET: swift
TARGET: ${{ matrix.TARGET }}
GROUP: ${{ matrix.GROUP }}