Closed as not planned
Description
Go version
go version devel go1.24-de0aafa3c7 Wed Sep 4 20:42:05 2024 +0000 linux/amd64
Output of go env
in your module/workspace:
[root@raji-x86-workspace1 src]# go env
GO111MODULE=''
GOARCH='amd64'
GOBIN=''
GOCACHE='/root/.cache/go-build'
GOENV='/root/.config/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='amd64'
GOHOSTOS='linux'
GOINSECURE=''
GOMODCACHE='/root/go/pkg/mod'
GONOPROXY=''
GONOSUMDB=''
GOOS='linux'
GOPATH='/root/go'
GOPRIVATE=''
GOPROXY='https://proxy.golang.org,direct'
GOROOT='/usr/local/go'
GOSUMDB='sum.golang.org'
GOTMPDIR=''
GOTOOLCHAIN='auto'
GOTOOLDIR='/usr/local/go/pkg/tool/linux_amd64'
GOVCS=''
GOVERSION='devel go1.24-004686b6e5 Wed Sep 4 20:37:00 2024 +0000'
GODEBUG=''
GOTELEMETRY='local'
GOTELEMETRYDIR='/root/.config/go/telemetry'
GCCGO='gccgo'
GOAMD64='v1'
AR='ar'
CC='gcc'
CXX='g++'
CGO_ENABLED='0'
GOMOD='/root/go_src/go/src/go.mod'
GOWORK=''
CGO_CFLAGS='-O2 -g'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
PKG_CONFIG='pkg-config'
GOGCCFLAGS='-fPIC -m64 -fno-caret-diagnostics -Qunused-arguments -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build1003699293=/tmp/go-build -gno-record-gcc-switches'
[root@raji-x86-workspace1 src]#
What did you do?
Building of binaries in kubernetes repo
Running of k8s UT
What did you see happen?
# [k8s.io/kubernetes/test/e2e_node]
test/e2e_node/util_sriov.go:45:19: non-constant format string in call to k8s.io/kubernetes/test/e2e/framework.Failf
test/e2e_node/util_sriov.go:47:20: non-constant format string in call to k8s.io/kubernetes/test/e2e/framework/skipper.Skipf
test/e2e_node/system_node_critical_test.go:93:21: non-constant format string in call to k8s.io/kubernetes/test/e2e/framework.Logf
test/e2e_node/system_node_critical_test.go:94:24: non-constant format string in call to fmt.Errorf
test/e2e_node/system_node_critical_test.go:103:22: non-constant format string in call to k8s.io/kubernetes/test/e2e/framework.Logf
Steps to Reproduce:
- Setup go version devel version
de0aafa3c7f669df0a93dd62cc336ebda52815f2
- git clone https://github.com/kubernetes/kubernetes
- cd kubernetes
- run
KUBE_BUILD_PLATFORMS=linux/amd64 make cross
What did you expect to see?
The binary should be built successfully.