diff --git a/integration/benchmark_fs/cloudbuild.yaml b/integration/benchmark_fs/cloudbuild.yaml index 9f2e7204e..01a83440b 100644 --- a/integration/benchmark_fs/cloudbuild.yaml +++ b/integration/benchmark_fs/cloudbuild.yaml @@ -5,7 +5,7 @@ steps: - --no-push - --snapshotMode=redo env: - - 'BENCHMARK_FILE=gs://tejal-test/redo_gcb/benchmark_file_${_COUNT}' + - 'BENCHMARK_FILE=gs://$PROJECT_ID/gcb/benchmark_file_${_COUNT}' timeout: 2400s timeout: 2400s substitutions: diff --git a/integration/benchmark_test.go b/integration/benchmark_test.go index fe3286e35..8503315a1 100644 --- a/integration/benchmark_test.go +++ b/integration/benchmark_test.go @@ -167,7 +167,7 @@ func runInGcloud(dir string, num int) (string, error) { if err != nil { return "", err } - src := fmt.Sprintf("gs://tejal-test/redo_gcb/benchmark_file_%d", num) + src := fmt.Sprintf("%s/gcb/benchmark_file_%d", config.gcsBucket, num) dest := filepath.Join(tmpDir, "results") copyCommand := exec.Command("gsutil", "cp", src, dest) _, err = RunCommandWithoutTest(copyCommand)