We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe715c0 commit 5699e58Copy full SHA for 5699e58
1 file changed
.github/workflows/maven-build.yml
@@ -94,13 +94,8 @@ jobs:
94
if: matrix.os != 'windows' && startsWith(matrix.java, '8')
95
uses: codecov/[email protected]
96
# JDK 11+
97
- - name: Maven Install without Code Coverage
98
- if: matrix.os == 'windows' && !startsWith(matrix.java, '8')
+ - name: Maven Install without Code Coverage (Java 11+)
+ if: (!startsWith(matrix.java, '8'))
99
env:
100
MAVEN_OPTS: ${{ env.JAVA_11_PLUS_MAVEN_OPTS }}
101
run: mvn -B clean install --file pom.xml "-Dsurefire.argLine=--add-opens java.base/java.net=ALL-UNNAMED"
102
- - name: Maven Install with Code Coverage
103
- if: matrix.os != 'windows' && !startsWith(matrix.java, '8')
104
- env:
105
- MAVEN_OPTS: ${{ env.JAVA_11_PLUS_MAVEN_OPTS }}
106
- run: mvn -B clean install -D enable-ci --file pom.xml "-Dsurefire.argLine=--add-opens java.base/java.net=ALL-UNNAMED"
0 commit comments