From 3040ff6347d006e52c90b5be365cae7a04aa07d6 Mon Sep 17 00:00:00 2001 From: Colin Edwards Date: Tue, 30 Jan 2018 22:42:07 -0600 Subject: [PATCH] CI: Don't install python for OSX --- CI/before-script-osx.sh | 4 +--- CI/install-dependencies-osx.sh | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CI/before-script-osx.sh b/CI/before-script-osx.sh index d20a4f9ed..6cff70dab 100755 --- a/CI/before-script-osx.sh +++ b/CI/before-script-osx.sh @@ -3,9 +3,7 @@ export PATH=/usr/local/opt/ccache/libexec:$PATH mkdir build cd build -cmake -DPYTHON_LIBRARY=/usr/local/Cellar/python3/3.6.4_2/Frameworks/Python.framework/Versions/3.6/lib/libpython3.6.dylib \ --DPYTHON_INCLUDE_DIR=/usr/local/Cellar/python3/3.6.4_2/Frameworks/Python.framework/Versions/3.6/include/python3.6m \ --DENABLE_SPARKLE_UPDATER=ON \ +cmake -DENABLE_SPARKLE_UPDATER=ON \ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.10 \ -DDepsPath=/tmp/obsdeps \ -DVLCPath=$PWD/../../vlc-master \ diff --git a/CI/install-dependencies-osx.sh b/CI/install-dependencies-osx.sh index fbe7e78d2..4d5329661 100755 --- a/CI/install-dependencies-osx.sh +++ b/CI/install-dependencies-osx.sh @@ -17,7 +17,7 @@ sudo installer -pkg ./Packages.pkg -target / brew update #Base OBS Deps and ccache -brew install qt5 jack speexdsp ccache python3 swig +brew install qt5 jack speexdsp ccache swig export PATH=/usr/local/opt/ccache/libexec:$PATH ccache -s || echo "CCache is not available."