Adjusts tests to use proc:full since it has been changed since Java 22 #394
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
name: Java EA | |
on: [push] | |
env: | |
MAVEN_ARGS: -V -B --no-transfer-progress -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 | |
jobs: | |
test_jdk_ea: | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ea] | |
name: 'Linux JDK ${{ matrix.java }}' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
- name: 'Set up JDK' | |
uses: oracle-actions/setup-java@v1 | |
with: | |
website: jdk.java.net | |
release: EA | |
- name: 'Test' | |
run: ./mvnw ${MAVEN_ARGS} -Djacoco.skip=true install -DskipDistribution=true |