Skip to content

Commit 52c3d78

Browse files
authored
Merge pull request #2224 from harawata/ci-update
[actions] Trying to run CI on 17-ea
2 parents bf344d2 + 45725bf commit 52c3d78

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,17 @@ jobs:
4343
restore-keys: |
4444
${{ runner.os }}-maven-
4545
- name: Set argLine command line option
46-
shell: bash
4746
if: ${{ matrix.java != '8' }}
4847
run: echo 'ARG_LINE=-D"argLine=--illegal-access=permit"' >> $GITHUB_ENV
4948
- name: Set env command line option
50-
shell: bash
5149
if: ${{ matrix.os == 'ubuntu-latest' }}
5250
run: echo 'ENV_TRAVIS="-Denv.TRAVIS"' >> $GITHUB_ENV
5351
- name: Test with Maven
54-
run: ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" $ENV_TRAVIS $ARG_LINE
52+
if: ${{ matrix.os != 'windows-latest' }}
53+
run: ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" $ENV_TRAVIS $ARG_LINE
54+
- name: Test with Maven
55+
if: ${{ matrix.os == 'windows-latest' && matrix.java == '8' }}
56+
run: ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true"
57+
- name: Test with Maven
58+
if: ${{ matrix.os == 'windows-latest' && matrix.java != '8' }}
59+
run: ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" -D"argLine=--illegal-access=permit"

0 commit comments

Comments
 (0)