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

Side by Side Diff: scripts/travis-checkout.sh

Issue 1873133003: Add travis CI config (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: More review fixup Created 4 years, 8 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/travis-build.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2 set -ex
3
4 get_depot_tools() {
5 cd
6 git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
7 PATH="$HOME/depot_tools:$PATH"
8 }
9
10 gclient_sync() {
11 # Rename the source dir to match what gclient expects.
12 srcdir=$(basename "$TRAVIS_BUILD_DIR")
13 cd "${TRAVIS_BUILD_DIR}"/..
14 mv "${srcdir}" src
15 gclient config --unmanaged https://github.com/google/breakpad.git
16 gclient sync
17 }
18
19 main() {
20 get_depot_tools
21 gclient_sync
22 }
23
24 main "$@"
OLDNEW
« no previous file with comments | « scripts/travis-build.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698