Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Side by Side Diff: compute_engine_scripts/perf/vm_config.sh

Issue 1473383002: Moved Perf to systemd and also move to using tracedb. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698