From: Vadim Zeitlin Date: Thu, 25 Jul 2013 23:36:07 +0000 (+0000) Subject: Disable tests in Travis configuration. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/19d7382a2984efdf6e464884683704bfd58c39bf 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 --- diff --git a/.travis.yml b/.travis.yml index a90d711f23..f9ee9d626d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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