Skip to content

Commit 26916de

Browse files
authored
Merge pull request #163 from rouault/tiff_rest
TIFF cache: add possibility of using HTTP hosted TIFF files with GDAL /vsicurl/ and /vsigs/ virtual filesystems
2 parents 34bb73c + 64d561f commit 26916de

File tree

3 files changed

+583
-15
lines changed

3 files changed

+583
-15
lines changed

.travis.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,22 @@ matrix:
77
sudo: required
88
env:
99
- DISTRO=trusty
10+
- BUILD_TYPE=maximum
11+
12+
- os: linux
13+
dist: trusty
14+
language: c
15+
sudo: required
16+
env:
17+
- DISTRO=trusty
18+
- BUILD_TYPE=minimum
1019

1120
- os: linux
1221
language: c
1322
sudo: required
1423
env:
1524
- DISTRO=precise
25+
- BUILD_TYPE=maximum
1626

1727
language: c
1828

@@ -28,11 +38,11 @@ before_install:
2838
script:
2939
- mkdir build
3040
- cd build
31-
- cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DWITH_TIFF=ON -DWITH_GEOTIFF=ON -DWITH_TIFF_WRITE_SUPPORT=ON -DWITH_PCRE=ON -DWITH_SQLITE=ON -DWITH_BERKELEY_DB=ON
41+
- if test "$BUILD_TYPE" = "maximum"; then cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DWITH_TIFF=ON -DWITH_GEOTIFF=ON -DWITH_TIFF_WRITE_SUPPORT=ON -DWITH_PCRE=ON -DWITH_SQLITE=ON -DWITH_BERKELEY_DB=ON; else cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DWITH_TIFF=OFF -DWITH_GEOTIFF=OFF -DWITH_TIFF_WRITE_SUPPORT=OFF -DWITH_PCRE=OFF -DWITH_SQLITE=OFF -DWITH_BERKELEY_DB=OFF -DWITH_GDAL=OFF -DWITH_GEOS=OFF -DWITH_FCGI=OFF -DWITH_CGI=OFF -DWITH_APACHE=OFF -DWITH_OGR=OFF -DWITH_MAPSERVER=OFF; fi
3242
- make -j3
3343
- sudo make install
3444
# Only test with Apache 2.4
35-
- if test "$DISTRO" = "trusty"; then cd ../tests; sh ./travis_setup.sh; sh ./run_tests.sh; fi
45+
- if test "$DISTRO" = "trusty" -a "$BUILD_TYPE" = "maximum"; then cd ../tests; sh ./travis_setup.sh; sh ./run_tests.sh; fi
3646

3747

3848
#notifications:

0 commit comments

Comments
 (0)