ci: enable native in downstream to enterprise - #2531
Merged
Conversation
rsynek
force-pushed
the
ci/enable-native-downstream-enterprise
branch
from
July 27, 2026 11:04
14b7982 to
04c1472
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR extends the secured downstream enterprise PR checks by adding a new matrix job that builds and verifies the Enterprise Edition in GraalVM native-image mode (Linux x64 + ARM) for both Spring Boot and Quarkus modules.
Changes:
- Add a new
enterprise-nativejob topull_request_secure.ymlto run native-image verification againsttimefold-solver-enterprise. - Set up GraalVM (with Maven cache) and run
-Dnative verifyin the relevant enterprise modules as part of the secured workflow.
Comments suppressed due to low confidence (2)
.github/workflows/pull_request_secure.yml:164
- Using an unpinned
actions/checkouttag in a secrets-bearing workflow increases supply-chain risk if the tag ever moves.
- name: Checkout timefold-solver-enterprise (PR) # Checkout the PR branch first, if it exists
id: checkout-solver-enterprise
uses: actions/checkout@v7
continue-on-error: true
.github/workflows/pull_request_secure.yml:174
- Using an unpinned
actions/checkouttag in a secrets-bearing workflow increases supply-chain risk if the tag ever moves.
- name: Checkout timefold-solver-enterprise (main) # Checkout the main branch if the PR branch does not exist
if: steps.checkout-solver-enterprise.outcome != 'success'
uses: actions/checkout@v7
with:
Comment on lines
+151
to
+153
| - name: Checkout timefold-solver | ||
| uses: actions/checkout@v7 | ||
| with: |
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Enables native in the enterprise PR check in the same scope we have it in the enterprise repo.
Obviously, this will cost us some CI time on the PR, so a discussion is welcome.