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

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

Issue 1873133003: Add travis CI config (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: 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
OLDNEW
(Empty)
1 #!/bin/sh
2
3 set -ex
4
vapier 2016/04/11 15:09:17 i would restructure this code a bit up front: se
Ted Mielczarek 2016/04/11 16:30:18 Okay. I'm not a big fan of overly-complex shell sc
5 if test -n "$USE_CC"; then
6 export CC=$USE_CC
7 fi
8 if test -n "$USE_CXX"; then
9 export CXX=$USE_CXX
10 fi
11
12 # Use -j4 for faster builds. Travis build machines under Docker
vapier 2016/04/11 15:09:17 i've never run into this problem. i do: ncpus=$
Ted Mielczarek 2016/04/11 16:30:18 I tried something very similar: https://github.com
13 # have a lot of cores, but resource limits will kill the build
14 # if we try to use them all.
15 ./configure && make -j4 check
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698