File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,15 @@ readonly test_disk_image_snapshot=${TEST_DISK_IMAGE_SNAPSHOT:-true}
33
33
34
34
readonly GCE_PD_TEST_FOCUS=" PersistentVolumes\sGCEPD|[V|v]olume\sexpand|\[sig-storage\]\sIn-tree\sVolumes\s\[Driver:\sgcepd\]|allowedTopologies|Pod\sDisks|PersistentVolumes\sDefault"
35
35
36
+ # Install golang.
37
+ version=1.22.3
38
+ wget -O go_tar.tar.gz https://go.dev/dl/go${version} .linux-amd64.tar.gz -q
39
+ # Remove the existing GoLang installation directory
40
+ rm -rf /usr/local/go && tar -xzf go_tar.tar.gz -C /usr/local
41
+ # Add the GoLang binary directory to systems PATH env, allowing prow tests
42
+ # to run go commands with this go version.
43
+ export PATH=$PATH :/usr/local/go/bin && go version && rm go_tar.tar.gz
44
+
36
45
storage_classes=sc-balanced.yaml,sc-ssd.yaml,sc-xfs.yaml
37
46
38
47
if [[ $test_pd_labels = true ]] ; then
You can’t perform that action at this time.
0 commit comments