OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 # | 2 # |
3 # The continue_install script updates the webtry user's copy of skia and depot_t
ools. | 3 # The continue_install script updates the webtry user's copy of skia and depot_t
ools. |
4 # It then builds the webtry server outside the jail. | 4 # It then builds the webtry server outside the jail. |
5 # | 5 # |
6 # The setup scripts should run this script as the 'webtry' user. | 6 # The setup scripts should run this script as the 'webtry' user. |
7 # | 7 # |
8 # See the README file for detailed installation instructions. | 8 # See the README file for detailed installation instructions. |
9 | 9 |
10 # Install Go | 10 # Install Go |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 # Checkout the skia code and dependencies (again) | 34 # Checkout the skia code and dependencies (again) |
35 mkdir skia | 35 mkdir skia |
36 cd skia | 36 cd skia |
37 gclient config --name . https://skia.googlesource.com/skia.git | 37 gclient config --name . https://skia.googlesource.com/skia.git |
38 gclient sync | 38 gclient sync |
39 git checkout master | 39 git checkout master |
40 | 40 |
41 cd experimental/webtry | 41 cd experimental/webtry |
42 | 42 |
| 43 go get -u skia.googlesource.com/buildbot.git/perf/go/logserver |
43 go get -d | 44 go get -d |
44 ./build | 45 ./build |
OLD | NEW |