| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |