From 4fe312dd154f6542325da175e2729337c5133adc Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Sat, 20 Jun 2015 23:10:10 +0200 Subject: .travis.yml: add builds with grids --- .travis.yml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a228c836..1bc864e7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ compiler: - clang install: +# cmake build - mkdir build_cmake - cd build_cmake - cmake .. -DCMAKE_INSTALL_PREFIX=/tmp/proj_cmake_install @@ -15,15 +16,37 @@ install: - make install - find /tmp/proj_cmake_install - cd .. +# autoconf build - mkdir build_autoconf - cd build_autoconf - ../configure --prefix=/tmp/proj_autoconf_install - make -j3 - make install - find /tmp/proj_autoconf_install - -script: - make check + - cd .. +# Now with grids + - wget http://download.osgeo.org/proj/proj-datumgrid-1.5.zip + - cd nad + - unzip ../proj-datumgrid-1.5.zip + - cd .. +# cmake build with grids + - mkdir build_cmake_nad + - cd build_cmake_nad + - cmake .. -DCMAKE_INSTALL_PREFIX=/tmp/proj_cmake_install_nad + - make -j3 + - make install + - find /tmp/proj_cmake_install_nad + - cd .. +# autoconf build with grids + - mkdir build_autoconf_nad + - cd build_autoconf_nad + - ../configure --prefix=/tmp/proj_autoconf_install_nad + - make -j3 + - make install + - find /tmp/proj_autoconf_install_nad + - make check + - cd .. notifications: #email: -- cgit v1.2.3