]> git.saurik.com Git - wxWidgets.git/blobdiff - .travis.yml
carbon sdk must be 10.7 max, 10.8 is not supported anymore
[wxWidgets.git] / .travis.yml
index f9ee9d626de3aed7c22015deef2753ca92d34b4c..7f19bdead38fa12246bac522376e8f2f79aa4565 100644 (file)
@@ -17,9 +17,22 @@ notifications:
         on_success: change
         on_failure: change
 
+before_install:
+    - sudo apt-get install -y libcppunit-dev
+
+env:
+    - wxCONFIGURE_FLAGS=
+    - wxCONFIGURE_FLAGS="--disable-shared"
+    - wxCONFIGURE_FLAGS="--disable-precomp-headers --enable-monolithic"
+    - wxCONFIGURE_FLAGS="--enable-stl" CXXFLAGS=-std=c++0x
+
 script:
-    - ./configure --disable-optimise
+    - ./configure --disable-optimise $wxCONFIGURE_FLAGS
     - make
+    - make -C tests
+    - pushd tests
+    - ./test -t
+    - popd
     - make samples
     - sudo make install
     - make -C samples/minimal -f makefile.unx