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

Unified 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, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: compute_engine_scripts/perf/vm_config.sh
diff --git a/compute_engine_scripts/perf/vm_config.sh b/compute_engine_scripts/perf/vm_config.sh
index c42a4f339f5fa1d01b67d8f2fed5544cc885d261..16c4d8503addbeb4d314a3fba306a2a2328eb434 100644
--- a/compute_engine_scripts/perf/vm_config.sh
+++ b/compute_engine_scripts/perf/vm_config.sh
@@ -3,22 +3,15 @@
# This file contains constants for the shell scripts which interact
# with the skia-perf Google Compute Engine instance.
#
-# Copyright 2014 Google Inc. All Rights Reserved.
+# 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
# Sets all constants in compute_engine_cfg.py as env variables.
+
$(python ../compute_engine_cfg.py)
if [ $? != "0" ]; then
echo "Failed to read compute_engine_cfg.py!"
exit 1
fi
-# The base names of the VM instances. Actual names are VM_NAME_BASE-name
-VM_NAME_BASE=${VM_NAME_BASE:="skia"}
-
-# The name of instance where skia perf is running on.
-INSTANCE_NAME=${VM_NAME_BASE}-perf
-
-PERF_MACHINE_TYPE=n1-highmem-8
-PERF_SOURCE_SNAPSHOT=skia-pushable-base
-PERF_SCOPES='https://www.googleapis.com/auth/devstorage.full_control'
-PERF_IP_ADDRESS=104.154.112.108
+# The name of instance where Skia Perf is running.
+INSTANCE_NAME=skia-perf

Powered by Google App Engine
This is Rietveld 408576698