Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ GO_TEST_PACKAGES=./cmd/... ./pkg/...
export CGO_ENABLED ?= 1

# Specify OCP build tools image tag when building rpm with podman
RPM_BUILDER_IMAGE_TAG := rhel-9-golang-1.25-openshift-4.22
RPM_BUILDER_IMAGE_TAG := rhel-9-golang-1.26-openshift-5.0

all: generate-config microshift etcd

Expand Down
2 changes: 1 addition & 1 deletion scripts/auto-rebase/rebase_job_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fi
# It's before rebase.py because we want this to be part of the rebase PR.
# Go version in go.mods are updated in rebase.sh.
go_version=$(go version 2>/dev/null | awk '{print $3}' | tr -d '[a-z]')
sed -i "s/^GO_VER=.*/GO_VER=${go_version}/" ./scripts/devenv-builder/configure-vm.sh
sed -i "s/GO_VER=.*/GO_VER=${go_version}/" ./scripts/devenv-builder/configure-vm.sh
go_version_xy="$(echo "${go_version}" | cut -f1-2 -d.)"
sed -i "s/^%global golang_version .*/%global golang_version ${go_version_xy}/" ./packaging/rpm/microshift.spec

Expand Down
2 changes: 1 addition & 1 deletion scripts/devenv-builder/configure-vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ function install_build_deps() {
# run only if booted with systemd
[[ -d /run/systemd/system ]] && sudo systemctl enable --now cockpit.socket

GO_VER=1.24.4
GO_VER=1.26.3
GO_ARCH=$([ "$(uname -m)" == "x86_64" ] && echo "amd64" || echo "arm64")
GO_INSTALL_DIR="/usr/local/go${GO_VER}"
if [ ! -d "${GO_INSTALL_DIR}" ]; then
Expand Down