X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/19d7382a2984efdf6e464884683704bfd58c39bf..4e4aacdf1204ae73c3d4d21218586d5367bf9528:/.travis.yml diff --git a/.travis.yml b/.travis.yml index f9ee9d626d..7f19bdead3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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