remove private buckets
This commit is contained in:
parent
6ab97e2b5f
commit
66c8266627
|
|
@ -5,7 +5,7 @@ steps:
|
||||||
- --no-push
|
- --no-push
|
||||||
- --snapshotMode=redo
|
- --snapshotMode=redo
|
||||||
env:
|
env:
|
||||||
- 'BENCHMARK_FILE=gs://tejal-test/redo_gcb/benchmark_file_${_COUNT}'
|
- 'BENCHMARK_FILE=gs://$PROJECT_ID/gcb/benchmark_file_${_COUNT}'
|
||||||
timeout: 2400s
|
timeout: 2400s
|
||||||
timeout: 2400s
|
timeout: 2400s
|
||||||
substitutions:
|
substitutions:
|
||||||
|
|
|
||||||
|
|
@ -167,7 +167,7 @@ func runInGcloud(dir string, num int) (string, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
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")
|
dest := filepath.Join(tmpDir, "results")
|
||||||
copyCommand := exec.Command("gsutil", "cp", src, dest)
|
copyCommand := exec.Command("gsutil", "cp", src, dest)
|
||||||
_, err = RunCommandWithoutTest(copyCommand)
|
_, err = RunCommandWithoutTest(copyCommand)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue