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

Side by Side Diff: perf/server/setup/continue_install

Issue 390953003: Add a new log server that runs on port 8001. (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: rebase Created 6 years, 5 months 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
« no previous file with comments | « perf/server/Makefile ('k') | perf/server/setup/perf_setup.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # Don't execute this script directly, instead it is copied into the perf 3 # Don't execute this script directly, instead it is copied into the perf
4 # user's directory and executed as the user perf by the perf_setup.sh 4 # user's directory and executed as the user perf by the perf_setup.sh
5 # script. 5 # script.
6 # 6 #
7 # See the README file for detailed installation instructions. 7 # See the README file for detailed installation instructions.
8 cd 8 cd
9 pwd 9 pwd
10 10
(...skipping 11 matching lines...) Expand all
22 else 22 else
23 git clone https://skia.googlesource.com/buildbot 23 git clone https://skia.googlesource.com/buildbot
24 fi 24 fi
25 25
26 if [ -d skia ]; then 26 if [ -d skia ]; then
27 (cd skia && git pull); 27 (cd skia && git pull);
28 else 28 else
29 git clone https://skia.googlesource.com/skia 29 git clone https://skia.googlesource.com/skia
30 fi 30 fi
31 31
32 mkdir=/tmp/glog
32 mkdir=$HOME/golib 33 mkdir=$HOME/golib
33 export GOROOT=$HOME/go 34 export GOROOT=$HOME/go
34 export GOPATH=$HOME/golib 35 export GOPATH=$HOME/golib
35 export PATH=$PATH:$GOROOT/bin 36 export PATH=$PATH:$GOROOT/bin
36 37
37 cd ~/buildbot/perf/server 38 cd ~/buildbot/perf/server
38 go get -d 39 go get -d
39 npm install 40 npm install
40 make 41 make
41 make tile 42 make tile
42 make ingest 43 make ingest
44 make logs
OLDNEW
« no previous file with comments | « perf/server/Makefile ('k') | perf/server/setup/perf_setup.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698