From: Marcel Metz Date: Wed, 5 Oct 2016 16:07:26 +0000 (+0200) Subject: Add cmake as optional build system to Travis-CI configuration X-Git-Tag: v1.3.6~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20104ce7e73d9fc0467e0b16f1d0b614836a4f56;hp=0b7e73abd0e8c15cdda87f7463ec2c6439e9bc51;p=platform%2Fupstream%2Flibvorbis.git Add cmake as optional build system to Travis-CI configuration --- diff --git a/.travis.yml b/.travis.yml index bf14445..0433892 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,11 @@ compiler: env: - BUILD_SYSTEM=AUTOTOOLS + - BUILD_SYSTEM=CMAKE + +matrix: + allow_failures: + - env: BUILD_SYSTEM=CMAKE addons: apt: @@ -16,3 +21,8 @@ script: - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh ; fi - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./configure ; fi - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then make -j2 V=1 distcheck ; fi + - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then mkdir build ; fi + - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then pushd build ; fi + - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. ; fi + - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then cmake --build . ; fi + - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then popd ; fi