From d16e57ffc10d4835c434dcf8acaa38aa9393f03a Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Wed, 19 Aug 2015 19:16:24 +1000 Subject: [PATCH] Cull unneeded dependencies from Travis OSX build --- ci/travis/osx/before_install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/travis/osx/before_install.sh b/ci/travis/osx/before_install.sh index 77c0a8b2e4c..c0c98920677 100755 --- a/ci/travis/osx/before_install.sh +++ b/ci/travis/osx/before_install.sh @@ -1,6 +1,6 @@ brew tap osgeo/osgeo4mac brew update -brew install osgeo/osgeo4mac/qgis-28 --only-dependencies +brew install osgeo/osgeo4mac/qgis-28 --without-postgis --without-postgresql --without-grass --without-gpsbabel --only-dependencies brew install spawn-fcgi brew install lighttpd brew install poppler @@ -12,3 +12,6 @@ brew ln expat --force brew ln libxml2 --force brew ln gettext --force brew ln libffi --force + +mkdir -p /Users/travis/Library/Python/2.7/lib/python/site-packages +echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> /Users/travis/Library/Python/2.7/lib/python/site-packages/homebrew.pth