-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DAOS-16621 build: Fix Go versions in rpm/deb packaging (#15174)
- Set Go minimum version to 1.21 in rpm and debian packaging spec files. - Update scons Go version check to use version in go.mod. - Add a reminder in go.mod file so we remember the packaging files when bumping the minimum Go version in the future. - Update Ubuntu 22.04 Dockerfile to get an appropriate version of Go. Required-githooks: true Signed-off-by: Kris Jacque <[email protected]>
- Loading branch information
Showing
6 changed files
with
42 additions
and
11 deletions.
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,3 +1,9 @@ | ||
daos (2.6.1-4) 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-3) unstable; urgency=medium | ||
[ Phillip Henderson ] | ||
* Third release candidate for 2.6.1 | ||
|
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 | ||
|
@@ -591,6 +591,9 @@ 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-4 | ||
- Bump min supported go version to 1.21 | ||
|
||
* Tue Oct 01 2024 Phillip Henderson <[email protected]> 2.6.1-3 | ||
- Third release candidate for 2.6.1 | ||
|
||
|