Reduce Xcode output in Travis CI CMake build
This should fix builds that terminate due to: job exceeded the maximum log length and generally make Xcode build logs more readable and useful. Closes https://github.com/wxWidgets/wxWidgets/pull/1747
This commit is contained in:
parent
bdceda3c6d
commit
811f916dae
@ -26,7 +26,10 @@ case $wxTOOLSET in
|
||||
|
||||
echo 'travis_fold:start:building'
|
||||
echo 'Building...'
|
||||
cmake --build . -- $wxJOBS
|
||||
if [ "$wxCMAKE_GENERATOR" == "Xcode" ]; then
|
||||
wxTOOL_ARG="-quiet"
|
||||
fi
|
||||
cmake --build . -- $wxJOBS $wxTOOL_ARG
|
||||
echo 'travis_fold:end:building'
|
||||
|
||||
if [ "$wxCMAKE_TESTS" != "OFF" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user