Make verbose sections foldable on Travis

This commit is contained in:
Daniel J. Hofmann 2016-04-06 10:58:49 +02:00
parent a33bd9dfe6
commit b20de76037

View File

@ -159,12 +159,18 @@ script:
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
sudo ldconfig sudo ldconfig
fi fi
- echo "travis_fold:start:UNIT_TESTS"
- ./extractor-tests - ./extractor-tests
- ./engine-tests - ./engine-tests
- ./util-tests - ./util-tests
- echo "travis_fold:end:UNIT_TESTS"
- popd - popd
- echo "travis_fold:start:CUCUMBER"
- npm test - npm test
- echo "travis_fold:end:CUCUMBER"
- echo "travis_fold:start:BENCHMARK"
- make -C test/data benchmark - make -C test/data benchmark
- echo "travis_fold:end:BENCHMARK"
- ./build/library-tests test/data/monaco.osrm - ./build/library-tests test/data/monaco.osrm
- mkdir example/build && pushd example/build - mkdir example/build && pushd example/build
- cmake .. - cmake ..