From 961b328eeba789951081491e88435faf129d4697 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Sat, 20 Jun 2015 23:02:30 +0200 Subject: Add .travis.yml --- .travis.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..cee17d94 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,37 @@ +# This is the config file for building proj.4 and running its test suite +# with Travis-ci.org + +language: c + +compiler: + - gcc + - clang + +install: + - mkdir build_cmake + - cd build_cmake + - cmake .. -DCMAKE_PREFIX_INSTALL=/tmp/proj_cmake_install + - make -j3 + - make install + - find /tmp/proj_cmake_install + - cd .. + - mkdir build_autoconf + - cd build_autoconf + - ../configure --prefix=/tmp/proj_autoconf_install + - make -j3 + - make install + - find /tmp/proj_autoconf_install + +script: + - make check + +notifications: + #email: + # recipients: + # - gdal-commits@lists.osgeo.org + + irc: + channels: + - "irc.freenode.org#gdal" + use_notice: true + -- cgit v1.2.3