Make Travis logs more readable by folding the different sections
See https://github.com/travis-ci/travis-ci/issues/2285 for more information about log folding on Travis.
This commit is contained in:
12
.travis.yml
12
.travis.yml
@@ -30,12 +30,24 @@ env:
|
|||||||
- wxCONFIGURE_FLAGS="--enable-stl" CXXFLAGS=-std=c++0x
|
- wxCONFIGURE_FLAGS="--enable-stl" CXXFLAGS=-std=c++0x
|
||||||
|
|
||||||
script:
|
script:
|
||||||
|
- echo 'Configuring...' && echo -en 'travis_fold:start:script.1\\r'
|
||||||
- ./configure --disable-optimise $wxCONFIGURE_FLAGS
|
- ./configure --disable-optimise $wxCONFIGURE_FLAGS
|
||||||
|
- echo -en 'travis_fold:end:script.1\\r'
|
||||||
|
- echo 'Building...' && echo -en 'travis_fold:start:script.2\\r'
|
||||||
- make
|
- make
|
||||||
|
- echo -en 'travis_fold:end:script.2\\r'
|
||||||
|
- echo 'Testing...' && echo -en 'travis_fold:start:script.3\\r'
|
||||||
- make -C tests
|
- make -C tests
|
||||||
- pushd tests
|
- pushd tests
|
||||||
- ./test -t
|
- ./test -t
|
||||||
- popd
|
- popd
|
||||||
|
- echo -en 'travis_fold:end:script.3\\r'
|
||||||
|
- echo 'Building the samples...' && echo -en 'travis_fold:start:script.4\\r'
|
||||||
- make samples
|
- make samples
|
||||||
|
- echo -en 'travis_fold:end:script.4\\r'
|
||||||
|
- echo 'Installing...' && echo -en 'travis_fold:start:script.5\\r'
|
||||||
- sudo make install
|
- sudo make install
|
||||||
|
- echo -en 'travis_fold:end:script.5\\r'
|
||||||
|
- echo 'Testing building with the installed version...' && echo -en 'travis_fold:start:script.6\\r'
|
||||||
- make -C samples/minimal -f makefile.unx
|
- make -C samples/minimal -f makefile.unx
|
||||||
|
- echo -en 'travis_fold:end:script.6\\r'
|
||||||
|
Reference in New Issue
Block a user