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

Side by Side Diff: scripts/skiabot-master-start-on-boot.sh

Issue 648353002: Remove Skia's forked buildbot code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Address comment 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
« no previous file with comments | « scripts/run_on_slave_host.py ('k') | site_config/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 while [ -z "$(df -v | grep sdb)" ]; do
3 echo "/dev/sdb not yet attached..."
4 sleep 1
5 done
6 if [ -z "$1" ]; then
7 SKIA_REPO_DIR="skia-master"
8 else
9 SKIA_REPO_DIR="$1"
10 fi
11 export PATH="$PATH:/home/default/$SKIA_REPO_DIR/depot_tools"
12 mkdir -p ~/$SKIA_REPO_DIR
13 cd ~/$SKIA_REPO_DIR
14 gclient config https://skia.googlesource.com/buildbot.git
15 gclient sync --force
16 cd buildbot
17 python scripts/launch_master.py --loop
18 } > ~/reboot.log 2>&1
OLDNEW
« no previous file with comments | « scripts/run_on_slave_host.py ('k') | site_config/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698