From eb00c0de58a8e6ce8a1853cad3640defaef68599 Mon Sep 17 00:00:00 2001 From: Scott Dugas Date: Tue, 11 Mar 2025 17:08:53 -0400 Subject: [PATCH] Remove -Xverify:none from build This has been deprecated because it creates code that violates the JVM specification: https://bugs.openjdk.org/browse/JDK-8214731 --- actions/run-gradle/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/run-gradle/action.yml b/actions/run-gradle/action.yml index 29c15a2991..22aaed12fb 100644 --- a/actions/run-gradle/action.yml +++ b/actions/run-gradle/action.yml @@ -13,4 +13,4 @@ runs: run: sed -i -e "s/^org\.gradle\..*/#&/g" gradle.properties - name: Run Command shell: bash - run: GRADLE_OPTS="-XX:+HeapDumpOnOutOfMemoryError -Xverify:none -XX:+TieredCompilation -Xmx4096m -Dfile.encoding=UTF-8 -Duser.country -Duser.language=en -Duser.variant --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED" ./gradlew --no-daemon --console=plain --warning-mode all ${{ inputs.gradle_command }} + run: GRADLE_OPTS="-XX:+HeapDumpOnOutOfMemoryError -XX:+TieredCompilation -Xmx4096m -Dfile.encoding=UTF-8 -Duser.country -Duser.language=en -Duser.variant --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED" ./gradlew --no-daemon --console=plain --warning-mode all ${{ inputs.gradle_command }}