remove private buckets

This commit is contained in:
Tejal Desai 2020-06-05 13:58:30 -07:00
parent 6ab97e2b5f
commit 66c8266627
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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)