Skip to content

Commit ac35f94

Browse files
committed
[actions] Skip JaCoCo in CI action (coverage is done by other actions, I think)
Added 'env.TRAVIS' to activate extra tests
1 parent 5f8c36b commit ac35f94

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,5 @@ jobs:
4242
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
4343
restore-keys: |
4444
${{ runner.os }}-maven-
45-
- name: Java early access workaround
46-
if: ${{ endsWith(matrix.java, '-ea') }}
47-
run: echo 'JACOCO_SKIP="-Djacoco.skip=true"' >> $GITHUB_ENV
4845
- name: Test with Maven
49-
run: ./mvnw test -B -D"license.skip=true" $JACOCO_SKIP
46+
run: ./mvnw test -B -D"env.TRAVIS" -D"license.skip=true" -D"jacoco.skip=true" -DargLine="--illegal-access=permit"

0 commit comments

Comments
 (0)