-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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: support golang 1.23 #14748
build: support golang 1.23 #14748
Conversation
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.
Thanks for adding this, we are past due to add the support since it was released last month. Could you also add the new version to the go-version
matrix in the build CI workflow as seen here for previous versions when there are multiple golang versions supported? Thanks!
b49c19e
to
7a8454a
Compare
.github/workflows/build.yml
Outdated
@@ -71,7 +71,7 @@ jobs: | |||
strategy: | |||
fail-fast: false | |||
matrix: | |||
go-version: ["1.22"] | |||
go-version: ["1.22", "1.23] |
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.
should we change the other CI??
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.
I was not sure. We could do it as follow-up.
.github/workflows/build.yml
Outdated
@@ -71,7 +71,7 @@ jobs: | |||
strategy: | |||
fail-fast: false | |||
matrix: | |||
go-version: ["1.22"] | |||
go-version: ["1.22", "1.23] |
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.
go-version: ["1.22", "1.23] | |
go-version: ["1.22", "1.23"] |
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.
done, thanks!
Signed-off-by: Michael Adam <obnox@samba.org>
7a8454a
to
9ecd6a2
Compare
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.
The build with go 1.22 and 1.23 are passing now
build: support golang 1.23 (backport #14748)
Description
Currently, only golang version 1.22 is supported for building rook.
This change adds support for golang version 1.23
Checklist: