Browse Source

CI: Don't install python for OSX

Colin Edwards 7 years ago
parent
commit
3040ff6347
2 changed files with 2 additions and 4 deletions
  1. 1 3
      CI/before-script-osx.sh
  2. 1 1
      CI/install-dependencies-osx.sh

+ 1 - 3
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 \

+ 1 - 1
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."