Skip to content

Commit

Permalink
update golang version in gcsfuse-integration test to 1.21.5
Browse files Browse the repository at this point in the history
  • Loading branch information
songjiaxun committed Jan 11, 2024
1 parent f88fff2 commit 2ec1448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/testsuites/gcsfuse_integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func (t *gcsFuseCSIGCSFuseIntegrationTestSuite) DefineTests(driver storageframew

ginkgo.By("Checking that the gcsfuse integration tests exits with no error")
tPod.VerifyExecInPodSucceed(f, specs.TesterContainerName, "apt-get update && apt-get install wget git -y")
tPod.VerifyExecInPodSucceed(f, specs.TesterContainerName, "wget https://go.dev/dl/go1.21.4.linux-$(dpkg --print-architecture).tar.gz -q && tar -C /usr/local -xzf go1.21.4.linux-$(dpkg --print-architecture).tar.gz")
tPod.VerifyExecInPodSucceed(f, specs.TesterContainerName, "wget https://go.dev/dl/go1.21.5.linux-$(dpkg --print-architecture).tar.gz -q && tar -C /usr/local -xzf go1.21.5.linux-$(dpkg --print-architecture).tar.gz")
tPod.VerifyExecInPodSucceed(f, specs.TesterContainerName, "git clone https://github.com/GoogleCloudPlatform/gcsfuse.git")

baseTestCommand := fmt.Sprintf("export PATH=$PATH:/usr/local/go/bin && cd %v/%v && GODEBUG=asyncpreemptoff=1 go test . -p 1 --integrationTest -v --mountedDirectory=%v", gcsfuseIntegrationTestsBasePath, testName, mountPath)
Expand Down

0 comments on commit 2ec1448

Please sign in to comment.