You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm testing against GVM master for a few bugs which are anticipated to be fixed in the upcoming Sept release. While I could figure out how to use a dev release, I couldn't find a way to use a custom distribution URL (in case testing needs to be done against a completely custom GVM distribution).
I wanted to humbly request a way to do this, and I intend to offer a PR as well shortly.
The text was updated successfully, but these errors were encountered:
sgammon
added a commit
to elide-dev/setup-graalvm
that referenced
this issue
Sep 13, 2023
Adds a `distribution_url` property to the action, which overrides
the download URL unconditionally. It is up to the caller to
provide an archive which works on their Github Actions runner;
there is no way (at this time) to vary the distribution URL by
architecture or OS.
- feat: add `distribution_url` input option
- feat: honor `distribution_url` in all branches
- chore: update docs with `distribution_url` info
Fixes and closesgraalvm#60
Adds a `distribution_url` property to the action, which overrides
the download URL unconditionally. It is up to the caller to
provide an archive which works on their Github Actions runner;
there is no way (at this time) to vary the distribution URL by
architecture or OS.
- feat: add `distribution_url` input option
- feat: honor `distribution_url` in all branches
- chore: update docs with `distribution_url` info
Fixes and closesgraalvm#60
Signed-off-by: Sam Gammon <[email protected]>
While I could figure out how to use a dev release.
java-version: 'dev' is what you need to use a GraalVM dev build. If this is not clear enough in the README.md, maybe you have an idea how we can improve the docs?
I intend to offer a PR as well shortly.
Thank you! Generally, I'm not against distribution_url but if your only use case is to use a dev build, then I'm not sure this is the right thing to do. The main reason for this is that GraalVM dev builds are volatile: we only keep the last N builds around. This means that whatever URL you decide to use, it will become unavailable and break your builds within a few weeks. java-version: 'dev', on the other hand, always pulls the latest dev build.
Hey there GraalVM team,
I'm testing against GVM
master
for a few bugs which are anticipated to be fixed in the upcoming Sept release. While I could figure out how to use adev
release, I couldn't find a way to use a custom distribution URL (in case testing needs to be done against a completely custom GVM distribution).I wanted to humbly request a way to do this, and I intend to offer a PR as well shortly.
The text was updated successfully, but these errors were encountered: