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

Side by Side Diff: experimental/webtry/setup/continue_install.sh

Issue 619943002: complete overhaul of webtry work partition between jail and host (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Replace missing pre-build of jpeg, etc1, flags Created 6 years, 2 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
OLDNEW
(Empty)
1 #!/bin/bash
2 #
3 # The continue_install script updates the jail's copy of depot tools and the lat est
4 # verion of skia. It then builds the skia libraries inside the jail, and builds the webtry
5 # server outside the jail.
6 #
7 # See the README file for detailed installation instructions.
8
9 CHROOT_JAIL=/srv/chroot/webtry_gyp
10 sudo cp continue_install_jail.sh ${CHROOT_JAIL}/bin/continue_install_jail.sh
11 sudo chmod 755 ${CHROOT_JAIL}/bin/continue_install_jail.sh
12 sudo chroot ${CHROOT_JAIL} /bin/continue_install_jail.sh
13 sudo chown -R webtry:webtry ${CHROOT_JAIL}/skia_build/skia
14 cd
15
16 # Install Go
17 if [ -d go ]; then
18 echo Go already installed.
19 else
20 wget https://storage.googleapis.com/golang/go1.3.3.linux-amd64.tar.gz
21 tar -xzf go1.3.3.linux-amd64.tar.gz
22 fi
23
24 mkdir ${HOME}/golib
25 export GOROOT=${HOME}/go
26 export GOPATH=${HOME}/golib
27 export PATH=$PATH:$GOROOT/bin
28
29 cd skia/experimental/webtry
30
31 go get -d
32 ./build
OLDNEW
« no previous file with comments | « experimental/webtry/setup/continue_install ('k') | experimental/webtry/setup/continue_install_jail.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698