Skip to content

Commit

Permalink
Merge pull request #121 from rouault/travis_remove_osx
Browse files Browse the repository at this point in the history
.travis.yml: remove OSX
  • Loading branch information
rouault authored Jun 13, 2024
2 parents af121ef + 42474b0 commit cee338f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
35 changes: 18 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,22 @@ matrix:
env:
- BUILD_NAME=linux

- os: osx
osx_image: xcode14.2
compiler: clang
cache:
apt: true
directories:
- $HOME/.ccache
env:
- BUILD_NAME=osx
- CC=clang
- CXX=clang++
addons:
homebrew:
packages:
- ccache
# Causes "Owner OSGeo does not have enough credits" since we downgraded our Travis plan
#- os: osx
# osx_image: xcode14.2
# compiler: clang
# cache:
# apt: true
# directories:
# - $HOME/.ccache
# env:
# - BUILD_NAME=osx
# - CC=clang
# - CXX=clang++
# addons:
# homebrew:
# packages:
# - ccache

cache:
directories:
Expand All @@ -39,11 +40,11 @@ install:
- export CC="ccache $CC"
- export CXX="ccache $CXX"
- $CC --version
- (cd proj && cmake . -DBUILD_APPS=OFF -DPROJ_TESTS=OFF && make -j3 && sudo make install && (if test "$TRAVIS_OS_NAME" = "linux"; then sudo ldconfig; fi))
- (cd proj && cmake . -DBUILD_APPS=OFF -DBUILD_TESTING=OFF && make -j3 && sudo make install && (if test "$TRAVIS_OS_NAME" = "linux"; then sudo ldconfig; fi))
- cd libgeotiff
- ./autogen.sh
- ./configure
- make dist
- make distcheck
- mkdir libgeotiff
- cat libgeotiff*.tar.gz | tar xz -C libgeotiff --strip-components=1
- cd libgeotiff
Expand Down
3 changes: 1 addition & 2 deletions libgeotiff/cmake/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
EXTRA_DIST = FindGeoTIFF.cmake \
FindPROJ.cmake \
EXTRA_DIST = FindPROJ.cmake \
geo_config.h.in \
project-config-version.cmake.in \
project-config.cmake.in \
Expand Down

0 comments on commit cee338f

Please sign in to comment.