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
sudo ldconfig
fi
- echo "travis_fold:start:UNIT_TESTS"
- ./extractor-tests
- ./engine-tests
- ./util-tests
- echo "travis_fold:end:UNIT_TESTS"
- popd
- echo "travis_fold:start:CUCUMBER"
- npm test
- echo "travis_fold:end:CUCUMBER"
- echo "travis_fold:start:BENCHMARK"
- make -C test/data benchmark
- echo "travis_fold:end:BENCHMARK"
- ./build/library-tests test/data/monaco.osrm
- mkdir example/build && pushd example/build
- cmake ..