File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ include: https://gitlab-templates.ddbuild.io/compute-delivery/v2/compute-deliver
33test :
44 stage : verify
55 tags : [ "arch:amd64" ]
6- image : registry.ddbuild.io/images/mirror/golang:1.21
6+ image : registry.ddbuild.io/images/mirror/golang:1.22
7+ variables :
8+ GOTOOLCHAIN : " auto"
79 script :
810 - make test-go test-vet test-fmt
911
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ ARG BASE_IMAGE
33FROM golang:1.21 as builder
44WORKDIR /go/src/kubernetes-csi/external-snapshotter
55ADD . .
6+ ENV GOTOOLCHAIN auto
67ENV GOFLAGS="-buildvcs=false"
78RUN make build
89
Original file line number Diff line number Diff line change 11ARG BASE_IMAGE
22
3- FROM golang:1.21 as builder
3+ FROM registry.ddbuild.io/images/mirror/ golang:1.22 as builder
44WORKDIR /go/src/kubernetes-csi/external-snapshotter
55ADD . .
6+ ENV GOTOOLCHAIN auto
67ENV GOFLAGS="-buildvcs=false"
78RUN make build
89
You can’t perform that action at this time.
0 commit comments