| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 | 2 |
| 3 set -ex | 3 set -ex |
| 4 | 4 |
| 5 setup_env() { | 5 setup_env() { |
| 6 # Travis sets CC/CXX to the system toolchain, so our .travis.yml | 6 # Travis sets CC/CXX to the system toolchain, so our .travis.yml |
| 7 # exports USE_{CC,CXX} for this script to use. | 7 # exports USE_{CC,CXX} for this script to use. |
| 8 if [ -n "$USE_CC" ]; then | 8 if [ -n "$USE_CC" ]; then |
| 9 export CC=$USE_CC | 9 export CC=$USE_CC |
| 10 fi | 10 fi |
| 11 if [ -n "$USE_CXX" ]; then | 11 if [ -n "$USE_CXX" ]; then |
| 12 export CXX=$USE_CXX | 12 export CXX=$USE_CXX |
| 13 fi | 13 fi |
| 14 # Use -jN for faster builds. Travis build machines under Docker | 14 # Use -jN for faster builds. Travis build machines under Docker |
| 15 # have a lot of cores, but are memory-limited, so the kernel | 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. | 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 | 17 # See https://github.com/travis-ci/travis-ci/issues/1972 |
| 18 export NCPUS=$(getconf _NPROCESSORS_ONLN) | 18 export NCPUS=$(getconf _NPROCESSORS_ONLN) |
| 19 export JOBS=$(( $NCPUS < 4 ? $NCPUS : 4 )) | 19 export JOBS=$(( $NCPUS < 4 ? $NCPUS : 4 )) |
| 20 } | 20 } |
| 21 | 21 |
| 22 # Do an in-tree build and make sure tests pass. |
| 22 build() { | 23 build() { |
| 23 ./configure | 24 ./configure |
| 24 make -j${JOBS} check VERBOSE=1 | 25 make -j${JOBS} check VERBOSE=1 |
| 26 make distclean |
| 27 } |
| 28 |
| 29 # Do an out-of-tree build and make sure we can create a release tarball. |
| 30 build_out_of_tree() { |
| 31 mkdir -p build/native |
| 32 cd build/native |
| 33 ../../configure |
| 34 make -j${JOBS} distcheck VERBOSE=1 |
| 25 } | 35 } |
| 26 | 36 |
| 27 main() { | 37 main() { |
| 28 setup_env | 38 setup_env |
| 29 build | 39 build |
| 40 build_out_of_tree |
| 30 } | 41 } |
| 31 | 42 |
| 32 main "$@" | 43 main "$@" |
| OLD | NEW |