Skip to content
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

Build OTP 27 #190

Merged
merged 1 commit into from
May 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/bob/job/build_elixir.ex
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ defmodule Bob.Job.BuildElixir do
version = ref_to_version(ref_name)

cond do
version_gte(version, "1.17.0-0") -> ["25.3", "26.0", "27.0"]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wonder if I should put 1.17.0-rc.0 instead

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should work

version_gte(version, "1.15.0-0") -> ["24.3", "25.3", "26.0"]
version_gte(version, "1.14.4") -> ["23.3", "24.3", "25.3", "26.0"]
version_gte(version, "1.14.0-0") -> ["23.3", "24.3", "25.3"]
Expand Down
Loading