ci: fix elixir build on aarch#215
Merged
Merged
Conversation
4283f48 to
b589232
Compare
nrc
approved these changes
Jun 2, 2026
The Elixir job has started failing because it says the `ImageOS` env var is no longer one of a set of blessed values (it wants `ubuntu24` but sees `ubuntu24-arm`). I'm guessing GitHub changed how they name the runner images recently. This value is used to select the dependency bundle to download from Hex, so overriding it like this is fine, at least until the maintainers of the BEAM action update their infrastructure to catch up with the GitHub rename, which will probably cause this to break again. Signed-off-by: Nathan Perry <nathan@tailscale.com> Change-Id: I3cc65790ad65130486bb98c434b9c2f46a6a6964
b589232 to
a62d5a2
Compare
Collaborator
Author
|
Merging this with the failing check, that's #218 |
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.
The Elixir job has started failing on aarch64 because it says the
ImageOSenv var is no longer one of a set of blessed values (it wantsubuntu24but seesubuntu24-arm). I'm guessing GitHub changed how they name the runner images recently. This value is used to select the dependency bundle to download from Hex, so overriding it like this is fine, at least until the maintainers of the BEAM action update their infrastructure to catch up with the GitHub rename, which will probably cause this to break again.