Don't build sample in macOS Travis CI builds

This takes too much time and the entire build regularly times out, resulting
in spurious errors.
This commit is contained in:
Vadim Zeitlin 2017-01-04 22:04:05 +01:00
parent 2e5968bffc
commit 62d2f4e5f5

View File

@ -21,7 +21,7 @@ matrix:
- os: osx
osx_image: xcode6.4
compiler: clang
env: wxCONFIGURE_FLAGS="--enable-cxx11" wxMAKEFILE_FLAGS="CXXFLAGS='-std=c++11 -stdlib=libc++'"
env: wxCONFIGURE_FLAGS="--enable-cxx11" wxMAKEFILE_FLAGS="CXXFLAGS='-std=c++11 -stdlib=libc++'" wxSKIP_SAMPLES=1
branches:
only:
@ -51,7 +51,7 @@ script: |
popd &&
echo -en 'travis_fold:end:script.3\\r' &&
echo 'Building the samples...' && echo -en 'travis_fold:start:script.4\\r' &&
make samples &&
(test -n "$wxSKIP_SAMPLES" && make samples || echo "*** Skipping building samples ***) &&
echo -en 'travis_fold:end:script.4\\r' &&
echo 'Installing...' && echo -en 'travis_fold:start:script.5\\r' &&
sudo make install &&