-
Notifications
You must be signed in to change notification settings - Fork 737
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move back to Java 8 for code coverage
- Loading branch information
1 parent
fe715c0
commit 5699e58
Showing
1 changed file
with
2 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,13 +94,8 @@ jobs: | |
if: matrix.os != 'windows' && startsWith(matrix.java, '8') | ||
uses: codecov/[email protected] | ||
# JDK 11+ | ||
- name: Maven Install without Code Coverage | ||
if: matrix.os == 'windows' && !startsWith(matrix.java, '8') | ||
- name: Maven Install without Code Coverage (Java 11+) | ||
if: (!startsWith(matrix.java, '8')) | ||
env: | ||
MAVEN_OPTS: ${{ env.JAVA_11_PLUS_MAVEN_OPTS }} | ||
run: mvn -B clean install --file pom.xml "-Dsurefire.argLine=--add-opens java.base/java.net=ALL-UNNAMED" | ||
- name: Maven Install with Code Coverage | ||
if: matrix.os != 'windows' && !startsWith(matrix.java, '8') | ||
env: | ||
MAVEN_OPTS: ${{ env.JAVA_11_PLUS_MAVEN_OPTS }} | ||
run: mvn -B clean install -D enable-ci --file pom.xml "-Dsurefire.argLine=--add-opens java.base/java.net=ALL-UNNAMED" |