]> git.saurik.com Git - wxWidgets.git/commitdiff
Disable tests in Travis configuration.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 25 Jul 2013 23:36:07 +0000 (23:36 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 25 Jul 2013 23:36:07 +0000 (23:36 +0000)
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

.travis.yml

index a90d711f2350df481a20c4478d5807b89007c268..f9ee9d626de3aed7c22015deef2753ca92d34b4c 100644 (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