Actions
Support #22610
openUpdate everything to get Go version from go.mod
Status:
New
Priority:
Normal
Assigned To:
-
Category:
CI
Target version:
-
Due date:
Story points:
-
Description
A bunch of tools determine what Go version to use with code like this:
build/run-build-packages-one-target.sh: GOVERSION=$(grep 'const goversion =' $WORKSPACE/lib/install/deps.go |awk -F'"' '{print $2}')
Now that we put our Go version in go.mod
, they should all be updated to use:
awk '($1 == "toolchain" && sub("^go", "", $2) == 1) { print $2; }' "$WORKSPACE/go.mod"
The current list of files to update, excluding deps.go
itself, is:
$ git grep -lF -e /deps.go -e 'goversion =' build/package-build-dockerfiles/Makefile build/package-build-dockerfiles/build-all-build-containers.sh build/run-build-packages-one-target.sh services/workbench2/docker/Dockerfile tools/arvbox/bin/arvbox
Actions