blob: b816eb04097fc264caffe63377f9ecdcc5e69e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/bin/bash
#
# Don't execute this script directly, instead it is copied into the webtry
# user's directory and executed as the user webtry by the webtry_setup.sh
# script.
#
# See the README file for detailed installation instructions.
cd
pwd
# Install depot_tools.
if [ -d depot_tools ]; then
(cd depot_tools && git pull);
else
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git;
fi
export PATH=$PATH:$HOME/depot_tools
# Install Go
if [ -d go ]; then
echo Go already installed.
else
wget https://go.googlecode.com/files/go1.2.1.linux-amd64.tar.gz
tar -xzf go1.2.1.linux-amd64.tar.gz
fi
export GOROOT=$HOME/go
mkdir=$HOME/golib
export GOPATH=$HOME/golib
export PATH=$PATH:$GOROOT/bin
mkdir /home/webtry/cache
mkdir /home/webtry/inout
chmod 777 /home/webtry/inout
# Sometimes you need to test patches on the server, to do that uncomment
# the following commented out lines and update the PATCH env variable to the
# name of the codereview to use.
# rm -rf skia
# Checkout the skia code and dependencies.
mkdir skia
cd skia
gclient config --name . https://skia.googlesource.com/skia.git
gclient sync
git checkout master
# PATCH=issue196723021_100001.diff
# rm $PATCH
# wget https://codereview.chromium.org/download/$PATCH
# git apply $PATCH
GYP_GENERATORS=ninja ./gyp_skia gyp/webtry.gyp gyp/most.gyp -Dskia_gpu=0
ninja -C out/Debug webtry
cd experimental/webtry
go get github.com/mattn/go-sqlite3
go get github.com/go-sql-driver/mysql
go build webtry.go
|