Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # | 2 # |
| 3 # This file contains constants for the shell scripts which interact | 3 # This file contains constants for the shell scripts which interact |
| 4 # with the skia-perf Google Compute Engine instance. | 4 # with the skia-perf Google Compute Engine instance. |
| 5 # | 5 # |
| 6 # Copyright 2014 Google Inc. All Rights Reserved. | 6 # Copyright 2015 Google Inc. All Rights Reserved. |
|
tfarina
2015/11/26 21:01:17
keep the copyright date? I don't think we change i
| |
| 7 | 7 |
| 8 # Sets all constants in compute_engine_cfg.py as env variables. | 8 # Sets all constants in compute_engine_cfg.py as env variables. |
| 9 | |
| 9 $(python ../compute_engine_cfg.py) | 10 $(python ../compute_engine_cfg.py) |
| 10 if [ $? != "0" ]; then | 11 if [ $? != "0" ]; then |
| 11 echo "Failed to read compute_engine_cfg.py!" | 12 echo "Failed to read compute_engine_cfg.py!" |
| 12 exit 1 | 13 exit 1 |
| 13 fi | 14 fi |
| 14 | 15 |
| 15 # The base names of the VM instances. Actual names are VM_NAME_BASE-name | 16 # The name of instance where Skia Perf is running. |
| 16 VM_NAME_BASE=${VM_NAME_BASE:="skia"} | 17 INSTANCE_NAME=skia-perf |
| 17 | |
| 18 # The name of instance where skia perf is running on. | |
| 19 INSTANCE_NAME=${VM_NAME_BASE}-perf | |
| 20 | |
| 21 PERF_MACHINE_TYPE=n1-highmem-8 | |
| 22 PERF_SOURCE_SNAPSHOT=skia-pushable-base | |
| 23 PERF_SCOPES='https://www.googleapis.com/auth/devstorage.full_control' | |
| 24 PERF_IP_ADDRESS=104.154.112.108 | |
| OLD | NEW |