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

Unified Diff: experimental/webtry/setup/continue_install.sh

Issue 688713002: delete webtry from main skia repo; it's been moved to buildbots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/webtry/seccomp_bpf.h ('k') | experimental/webtry/setup/continue_install_jail.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webtry/setup/continue_install.sh
diff --git a/experimental/webtry/setup/continue_install.sh b/experimental/webtry/setup/continue_install.sh
deleted file mode 100755
index ff4238668fc9c2bc889af3fa045000e2730954ec..0000000000000000000000000000000000000000
--- a/experimental/webtry/setup/continue_install.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/bash
-#
-# The continue_install script updates the webtry user's copy of skia and depot_tools.
-# It then builds the webtry server outside the jail.
-#
-# The setup scripts should run this script as the 'webtry' user.
-#
-# See the README file for detailed installation instructions.
-
-# Install Go
-
-cd
-
-if [ -d go ]; then
- echo Go already installed.
-else
- wget https://storage.googleapis.com/golang/go1.3.3.linux-amd64.tar.gz
- tar -xzf go1.3.3.linux-amd64.tar.gz
-fi
-
-mkdir ${HOME}/golib
-export GOROOT=${HOME}/go
-export GOPATH=${HOME}/golib
-export PATH=$PATH:$GOROOT/bin
-
-# 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:~/depot_tools
-
-# Checkout the skia code and dependencies (again)
-mkdir skia
-cd skia
-gclient config --name . https://skia.googlesource.com/skia.git
-gclient sync
-git checkout master
-
-cd experimental/webtry
-
-go get -u skia.googlesource.com/buildbot.git/perf/go/logserver
-go get -d
-./build
« no previous file with comments | « experimental/webtry/seccomp_bpf.h ('k') | experimental/webtry/setup/continue_install_jail.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698