From 66c82666279e34eaa6b23b8c99873ff87b7c62d5 Mon Sep 17 00:00:00 2001 From: Tejal Desai Date: Fri, 5 Jun 2020 13:58:30 -0700 Subject: [PATCH] remove private buckets --- integration/benchmark_fs/cloudbuild.yaml | 2 +- integration/benchmark_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)