Skip to content

[GR-68500] Enable future-defaults for public gates. #11889

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/micronaut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ on:
env:
MICRONAUT_CORE_PATH: ${{ github.workspace }}/micronaut-core
MICRONAUT_JAVA_VERSION: 21
NATIVE_IMAGE_OPTIONS: '--future-defaults=all'

# Enforce experimental option checking in CI (GR-47922)
NATIVE_IMAGE_EXPERIMENTAL_OPTIONS_ARE_FATAL: 'true'

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/quarkus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ env:
NATIVE_TEST_MAVEN_ARGS: "-Dtest-containers -Dstart-containers -Dquarkus.native.native-image-xmx=6g -Dnative -Dnative.surefire.skip -Dformat.skip -Dno-descriptor-tests install -DskipDocs -Dquarkus.native.container-build=false"
QUARKUS_JAVA_VERSION: 17 # Use Java 17 to build Quarkus as that's the lowest supported JDK version currently
QUARKUS_PATH: ${{ github.workspace }}/quarkus
NATIVE_IMAGE_OPTIONS: '--future-defaults=all'

permissions: {}
jobs:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reachability-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ on:
env:
REACHABILITY_METADATA_PATH: ${{ github.workspace }}/graalvm-reachability-metadata
MINIMUM_METADATA_JAVA_VERSION: 17
NATIVE_IMAGE_OPTIONS: '--future-defaults=all'

permissions:
contents: read # to fetch code (actions/checkout)
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/spring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ on:
env:
SPRING_PETCLINIC_PATH: ${{ github.workspace }}/spring-petclinic
SPRING_JAVA_VERSION: 21
NATIVE_IMAGE_OPTIONS: '--future-defaults=all'

permissions:
contents: read # to fetch code (actions/checkout)
Expand Down
Loading