-
Notifications
You must be signed in to change notification settings - Fork 60
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
Add support for Ubuntu 24 #271
Conversation
When I try to run the tests locally, I get the following error:
I don't see any information in the README or in the code about how to set up the project for running tests locally, but am happy to do so if someone can point me in a good direction. |
You may have to generate a github access token [1] and set |
Can you add ubuntu-24.04 to the matrix here? https://github.com/erlef/setup-beam/blob/main/.github/workflows/ubuntu.yml ubuntu-latest currently points to ubuntu-22.04. @paulo-ferraz-oliveira Should we be explicitly with the ubuntu version instead of using latest? |
Awesome, @ericmj One thing that I ran into today is that there are no Elixir builds yet for OTP 27 in builds.hex.pm. Do you have a preference for how many OTP versions (and which versions) I add to the matrix? |
The builds were delayed but are available now.
No, I would defer to @paulo-ferraz-oliveira here. |
Ok, based on the CI failures and looking deeper at the test suite I just reran the tests locally in an Ubuntu container in docker. |
Also to be very transparent I'm totally happy with anybody updating these changes, or throwing them away in favor of something else if that's decided to be better. Attribution is nice, but being able to update my apps to OTP 27 would be very nice 😄. |
.github/workflows/ubuntu.yml
Outdated
- otp-version: '26.0' | ||
os: 'ubuntu-24.04' | ||
version-type: 'strict' | ||
- otp-version: '25.0' |
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.
- otp-version: '25.0' | |
- otp-version: '25' |
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.
Applied in d2ad644
.github/workflows/ubuntu.yml
Outdated
- otp-version: '27.0' | ||
os: 'ubuntu-24.04' | ||
version-type: 'strict' | ||
- otp-version: '26.0' |
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.
- otp-version: '26.0' | |
- otp-version: '26' |
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.
Applied in d2ad644
.github/workflows/ubuntu.yml
Outdated
@@ -39,6 +39,14 @@ jobs: | |||
elixir-version: '1.14.3' | |||
os: 'ubuntu-latest' | |||
version-type: 'strict' | |||
- otp-version: '27.0' |
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.
- otp-version: '27.0' | |
- otp-version: '27' |
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.
This way we make it choose the latest 27.x.y.z...
, not the latest 27.0.y.z...
😄
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.
Applied in d2ad644
The proposed changes seem sane to me.
What does this mean? From |
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.
Feel free to merge with or without the code change suggestions.
Cool! Decided to apply your suggestions as a single commit, vs 3 commits via the GitHub UI.
Yeah looks like this was just an issue yesterday, and built are coming out for the different platforms. So not a real issue, just an explanation of why I chose to open this PR yesterday. |
No prob. Now we're |
Thanks for the PR. |
Description
As of right now, the only packages available for OTP 27 are only available for Ubuntu 24.04. The setup-beam action only supports Ubuntu 22 or earlier.
These changes seem to work for me, though I am currently unable to run the tests... will add more info in the comments.
Closes #270.