-
Notifications
You must be signed in to change notification settings - Fork 307
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
DAOS-16621 build: Fix Go versions in rpm/deb packaging (#15174) #15255
Merged
daltonbohning
merged 8 commits into
release/2.6
from
kjacque/2.6/go-build-version-checks
Dec 14, 2024
Merged
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b227b4a
DAOS-16621 build: Fix Go versions in rpm/deb packaging (#15174)
kjacque 2c3440b
Merge branch 'release/2.6' into kjacque/2.6/go-build-version-checks
kjacque 96e94a9
Merge branch 'release/2.6' into kjacque/2.6/go-build-version-checks
kjacque 36f41ad
Merge branch 'release/2.6' into kjacque/2.6/go-build-version-checks
kjacque fe18786
Merge branch 'release/2.6' into kjacque/2.6/go-build-version-checks
kjacque 6ab2652
Merge branch 'release/2.6' into kjacque/2.6/go-build-version-checks
kjacque b0cff36
Merge branch 'release/2.6' into kjacque/2.6/go-build-version-checks
kjacque 631eb8f
Fix email address and RPM spec date/version
kjacque File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
daos (2.6.1-4) unstable; urgency=medium | ||
daos (2.6.1-5) unstable; urgency=medium | ||
[ Kris Jacque ] | ||
* Bump minimum golang-go version to 1.21 | ||
|
||
-- Kris Jacque <[email protected]> Fri, 04 Oct 2024 15:13:00 -0700 | ||
|
||
daos (2.6.1-4) unstable; urgency=medium | ||
[ Tomasz Gromadzki ] | ||
* Add support of the PMDK package 2.1.0 with NDCTL enabled. | ||
* Increase the default ULT stack size to 20KiB if the engine uses | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ BuildRequires: libyaml-devel | |
BuildRequires: libcmocka-devel | ||
BuildRequires: valgrind-devel | ||
BuildRequires: systemd | ||
BuildRequires: go >= 1.17 | ||
BuildRequires: go >= 1.21 | ||
BuildRequires: pciutils-devel | ||
%if (0%{?rhel} >= 8) | ||
BuildRequires: numactl-devel | ||
|
@@ -218,7 +218,7 @@ Requires: dbench | |
Requires: lbzip2 | ||
Requires: attr | ||
Requires: ior | ||
Requires: go >= 1.18 | ||
Requires: go >= 1.21 | ||
%if (0%{?suse_version} >= 1315) | ||
Requires: lua-lmod | ||
Requires: libcapstone-devel | ||
|
@@ -598,6 +598,8 @@ getent passwd daos_agent >/dev/null || useradd -s /sbin/nologin -r -g daos_agent | |
# No files in a shim package | ||
|
||
%changelog | ||
* Fri Oct 04 2024 Kris Jacque <[email protected]> 2.6.1-5 | ||
- Bump min supported go version to 1.21 | ||
|
||
* Wed Oct 02 2024 Tomasz Gromadzki <[email protected]> 2.6.1-4 | ||
- Add support of the PMDK package 2.1.0 with NDCTL enabled. | ||
|
Oops, something went wrong.
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.
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.
A bit late now I suppose since the master PR for this has already landed, but you could add a new
%global go_version 1.21
afterdaos/utils/rpms/daos.spec
Line 7 in b227b4a
and the same for
daos/utils/rpms/daos.spec
Line 221 in b227b4a
Maybe next time.
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 the tip, Brian. Yeah, we should probably make that fix at the master level first.