-
Notifications
You must be signed in to change notification settings - Fork 13
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
Release: 0.10.x
#80
Release: 0.10.x
#80
Conversation
46fca61
to
2ae10ac
Compare
This comment was marked as resolved.
This comment was marked as resolved.
2bcde23
to
743979a
Compare
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as outdated.
This comment was marked as outdated.
2f3609f
to
6303fd6
Compare
This comment was marked as outdated.
This comment was marked as outdated.
24791e1
to
44c9792
Compare
This comment was marked as outdated.
This comment was marked as outdated.
@sgammon Does this include the toolchain repo separation? |
@fmeum nice work, it looks like all checks are passing locally. This doesn't include the toolchain repo separation yet but it can, that change should be quick and I'd love to get it in under this release. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lazy toolchains
@fmeum With this change, the GVM toolchain now adopts the same structure as the Java toolchain. i couldn't figure out how to make this change without a small backward-incompatible update to the toolchain registration process, but it should be okay since we're releasing at 0.10.x
, and I'll document the change in release notes.
Before 0.10.x
:
flowchart TD
A(graalvm) -->|Alias| B(graalvm_toolchain_config_repo)
B-->C[Java toolchain]
A-->|toolchain target|D[GVM toolchain]
After 0.10.x
:
flowchart TD
A(graalvm) -->|"Alias //:jvm"| C(graalvm_toolchain_config_repo)
A-->|graalvm_sdk| B["//:gvm"]
C-->|Java toolchain| D["//:toolchain"]
A-->|"Alias //:sdk"|C
C-->|"GVM toolchain"| E["//:gvm"]
D-->|"SDK target"|B
This feels overly complex, but it felt wrong to define the graalvm_sdk
target in the toolchain_config_repo
, since those resources are actually in that repository. No matter what, I'd have to either (a) reference back to the files in a circular manner, or (b) move the GraalVM SDK call to the toolchain config repo (and reference files anyway), or (c) add a third repo, none of which seemed optimal. If you have any ideas here they are welcome.
Ideally, the actual file targets inside the GraalVM SDK could be kept private, to prevent users from binding to the internal implementation structure of the SDK, but maybe that's unavoidable or not our job to enforce.
I'm open to feedback on this and I'm curious if this solves the lazy download issue you surfaced in #66.
Inert integration tests
I've added the inert
and inert-workspace
tests which install @graalvm
, but do not register toolchains or have native_image
targets. As far as I can tell, these tests run fine and don't download GraalVM.
If you are looking to model behavior that isn't represented in these tests, please feel free to adjust them so they reflect reality.
- test: add `java-toolchain` test, which exercises graalvm as the bazel tool/runtime java toolchain. - test: add `components-ce` test, which downloads GVM Community components with dependencies. - test: add `components-gvm` test, which downloads Oracle GVM components with `gu`. - test: add `disabled_tests` with tests for earlier versions of bazel (coming soon), including `bazel1`, `bazel2`, and `bazel3` - test: move most tests to GVM Community (except where noted) Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
- feat: detect and honor `compilation_mode` flag - feat: build with debug settings if `compilation_mode=dbg` - feat: ability to build a shared library - feat: build with `tool:coverage` if coverage is enabled and a test-only target is being built - docs: add doc which explains shared library feature - docs: add doc for built settings integration (more to come) Relates-To: #78 Relates-To: #85 Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
- test: add code to `components-ce` test to ensure `js` component is installed and usable Co-authored-by: Mantas Indrašius <mantasi@wix.com> Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
- feat: add struct which defines maven coordinates for well-known graalvm maven dependencies - feat: user-facing API to easily access these coordinates and declare them with `rules_jvm_external` Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
- test: add integration test for artifact use - test: add samples for each alias style - chore: add maven artifact test to ci Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
- fix!: toolchain repo format -> `<name>_toolchains` (previously was `<name>_toolchain_config_repo`) - fix: registration of toolchain targets from workspace hook - use toolchain targets directly instead of `@graalvm//:*` aliases - docs: rebuild apidoc - chore: update bzlmod lock Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
Signed-off-by: Sam Gammon <sam@elide.ventures>
407c2e2
to
0b12c7c
Compare
Kudos, SonarCloud Quality Gate passed! |
Summary
This branch prepares a suite of changes for collective release under the
0.10.x
series. This includes several (small) backward-incompatible changes, which are documented below.PR Tree
gu
post-install actions #99gvm
toolchain #82;
as classpath separator on Windows #68Dependency updates
Related issues
gu
post-install actions #102Breaking changes
The
default_executable_name
attribute and parameter has been renamed toexecutable_name
.This is because there is no other executable name parameter; setting this attribute will unconditionally change the output binary name.
Legacy GVM is only usable with the legacy rules.
Previously, it was possible to use a rather old version of GraalVM (Java 11-era) with the new-style rules. This use is no longer supported because older versions of
native-image
show incompatibilities with Bazel's process wrapper.Native image builds will now respect Bazel flags like
--compilation_mode=opt
.Defaults have been left to GraalVM to maintain backward compatibility with the default case, which builds binaries with
-O2
(optimizations on). However, this is still a breaking change because the behavior will be different if--compilation_mode
was being explicitly set to any value other thanopt
. Note that Bazel's default value offastbuild
also applies here, so passing no value at all will result in a behavior change (opt
→fastbuild
).The order of options passed to
native-image
has changed.Attributes like
extra_args
now pass later on the command line (last, actually, forextra_args
); becausenative-image
options are last-wins, this should allow overriding any of the flags injected by the rules. This should offer users a path forward even if the flags passed by the rules are incompatible in some way. This change in the order of action arguments may result in cache misses. Otherwise, this change should be transparent to rule users.Hermetic build environment improvements.
The parameter
use_default_shell_env
is no longer passed to the underlyingnative-image
compile action; instead, the toolchain environment is assembled for strict use. Native compiler environment variables likeINCLUDE
,LIB
,DEVELOPER_DIR
, andSDKROOT
no longer need to be passed via--action_env
.Toolchain targets and registration.
See below for an exhaustive description, but basically, the registration calls for toolchains need to change, but only for users who are consuming via Bzlmod.
Breaking changes: Toolchain registration
When registering toolchains in a Bzlmod installation of these rules, the target
@graalvm//:all
must be changed to two toolchain registrations, based on the desired functionality:Register the Java toolchain:
Register the GVM toolchain: