Disable tests in Travis configuration.

As cppunit is not available, building tests fails.

Also disable optimizations in an attempt to make the build faster as we risk
being killed because it takes so long.

Finally, test compilation of the minimal sample using the installed library
for completeness.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2013-07-25 23:36:07 +00:00
parent d57d8c21d1
commit 19d7382a29

View File

@ -18,4 +18,8 @@ notifications:
on_failure: change
script:
- ./configure && make && make samples && make -C tests && (cd test && ./test -t) && sudo make install
- ./configure --disable-optimise
- make
- make samples
- sudo make install
- make -C samples/minimal -f makefile.unx