diff options
| author | Even Rouault <even.rouault@mines-paris.org> | 2015-06-20 23:10:10 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@mines-paris.org> | 2015-06-20 23:10:10 +0200 |
| commit | 4fe312dd154f6542325da175e2729337c5133adc (patch) | |
| tree | 473e36418e107d3519e7f16e90d8d7779dfc0e2e | |
| parent | 5b1cff7ce4a47b72d7c429ab262d96d2d9ffff4f (diff) | |
| download | PROJ-4fe312dd154f6542325da175e2729337c5133adc.tar.gz PROJ-4fe312dd154f6542325da175e2729337c5133adc.zip | |
.travis.yml: add builds with grids
| -rw-r--r-- | .travis.yml | 27 |
1 files 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: |
