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

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: 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 | « .travis.yml ('k') | scripts/travis-checkout.sh » ('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 #!/bin/sh
2
3 set -ex
4
5 setup_env() {
6 # Travis sets CC/CXX to the system toolchain, so our .travis.yml
7 # exports USE_{CC,CXX} for this script to use.
8 if [ -n "$USE_CC" ]; then
9 export CC=$USE_CC
10 fi
11 if [ -n "$USE_CXX" ]; then
12 export CXX=$USE_CXX
13 fi
14 # Use -jN for faster builds. Travis build machines under Docker
15 # have a lot of cores, but are memory-limited, so the kernel
16 # will OOM if we try to use them all, so use at most 4.
17 # See https://github.com/travis-ci/travis-ci/issues/1972
18 export NCPUS=$(getconf _NPROCESSORS_ONLN)
19 export JOBS=$(( $NCPUS < 4 ? $NCPUS : 4 ))
20 }
21
22 build() {
23 ./configure
24 make -j${JOBS} check
25 }
26
27 main() {
28 setup_env
29 build
30 }
31
32 main "$@"
OLDNEW
« no previous file with comments | « .travis.yml ('k') | scripts/travis-checkout.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698