wxWidgets/.travis.yml
Vadim Zeitlin 19d7382a29 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
2013-07-25 23:36:07 +00:00

26 lines
531 B
YAML

# This is the control file for Travis continuous integration system.
#
# It is used automatically for the repositories on Github if it's found in the
# root directory of the project.
language: cpp
compiler: gcc
branches:
only:
- master
notifications:
email:
recipients:
- vadim@wxwidgets.org
on_success: change
on_failure: change
script:
- ./configure --disable-optimise
- make
- make samples
- sudo make install
- make -C samples/minimal -f makefile.unx