import UBI golang-1.24.4-1.module+el8.10.0+23323+67916f33

This commit is contained in:
eabdullin 2025-07-10 05:53:01 +00:00
parent c7130ae3e8
commit a59e37d449
4 changed files with 16 additions and 8 deletions

4
.gitignore vendored
View File

@ -1,2 +1,2 @@
SOURCES/go1.23.9-1-openssl-fips.tar.gz SOURCES/go1.24.4-1-openssl-fips.tar.gz
SOURCES/go1.23.9.tar.gz SOURCES/go1.24.4.tar.gz

View File

@ -1,2 +1,2 @@
f88e1a017f8abb82764e1340b858268b8beca1d8 SOURCES/go1.23.9-1-openssl-fips.tar.gz 17f42100ea9dfb490f9e01ceb202ed77de85af58 SOURCES/go1.24.4-1-openssl-fips.tar.gz
ac7c4463e6f0e61fceb6c4e73d7c7d9da61d6a5d SOURCES/go1.23.9.tar.gz c47e32e36f3bc042dde60d44908c0c78039a69a4 SOURCES/go1.24.4.tar.gz

View File

@ -1,5 +1,9 @@
//go:build rpm_crashtraceback
// +build rpm_crashtraceback // +build rpm_crashtraceback
// Copyright 2017 The Fedora Project Contributors. All rights reserved.
// Use of this source code is governed by the MIT license.
package runtime package runtime
func init() { func init() {

View File

@ -91,8 +91,8 @@
%global gohostarch s390x %global gohostarch s390x
%endif %endif
%global go_api 1.23 %global go_api 1.24
%global version 1.23.9 %global version 1.24.4
%global pkg_release 1 %global pkg_release 1
Name: golang Name: golang
@ -457,9 +457,9 @@ export GOLANG_FIPS=1
export OPENSSL_FORCE_FIPS_MODE=1 export OPENSSL_FORCE_FIPS_MODE=1
pushd crypto pushd crypto
# Run all crypto tests but skip TLS, we will run FIPS specific TLS tests later # Run all crypto tests but skip TLS, we will run FIPS specific TLS tests later
go test -timeout 50m $(go list ./... | grep -v tls) -v go test -timeout 50m $(go list ./... | grep -v tls) -v -skip="TestEd25519Vectors|TestACVP"
# Check that signature functions have parity between boring and notboring # Check that signature functions have parity between boring and notboring
CGO_ENABLED=0 go test -timeout 50m $(go list ./... | grep -v tls) -v CGO_ENABLED=0 go test -timeout 50m $(go list ./... | grep -v tls) -v -skip="TestEd25519Vectors|TestACVP"
popd popd
# Run all FIPS specific TLS tests # Run all FIPS specific TLS tests
pushd crypto/tls pushd crypto/tls
@ -523,6 +523,10 @@ cd ..
%endif %endif
%changelog %changelog
* Tue Jul 01 2025 David Benoit <dbenoit@redhat.com> - 1.24.4-1
- Update to Go 1.24.4 (fips-1)
- Resolves: RHEL-85264
* Mon Jun 02 2025 Alejandro Sáez <asm@redhat.com> - 1.23.9-1 * Mon Jun 02 2025 Alejandro Sáez <asm@redhat.com> - 1.23.9-1
- Update to Go 1.23.9 - Update to Go 1.23.9
- Resolves: RHEL-94636 - Resolves: RHEL-94636