From 2c60aa2abe27d3fdb01d01edde508f57ca26a82f Mon Sep 17 00:00:00 2001 From: jpark37 Date: Wed, 22 Jul 2020 20:31:59 -0700 Subject: [PATCH] CI: Disable Python for Mac PR automation --- CI/before-deploy-osx.sh | 4 ++-- CI/before-script-osx.sh | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CI/before-deploy-osx.sh b/CI/before-deploy-osx.sh index b4330d93c..690cb8f2e 100755 --- a/CI/before-deploy-osx.sh +++ b/CI/before-deploy-osx.sh @@ -23,8 +23,8 @@ mv ./rundir/RelWithDebInfo/data/obs-scripting/obslua.so ./rundir/RelWithDebInfo/ # Move obspython hr "Moving OBS Python" -mv ./rundir/RelWithDebInfo/data/obs-scripting/_obspython.so ./rundir/RelWithDebInfo/bin/ -mv ./rundir/RelWithDebInfo/data/obs-scripting/obspython.py ./rundir/RelWithDebInfo/bin/ +# mv ./rundir/RelWithDebInfo/data/obs-scripting/_obspython.so ./rundir/RelWithDebInfo/bin/ +# mv ./rundir/RelWithDebInfo/data/obs-scripting/obspython.py ./rundir/RelWithDebInfo/bin/ # Package everything into a nice .app hr "Packaging .app" diff --git a/CI/before-script-osx.sh b/CI/before-script-osx.sh index 80403bf55..3e37b1766 100755 --- a/CI/before-script-osx.sh +++ b/CI/before-script-osx.sh @@ -6,7 +6,8 @@ git fetch --tags mkdir build cd build cmake -DENABLE_SPARKLE_UPDATER=ON \ --DCMAKE_OSX_DEPLOYMENT_TARGET=10.11 \ +-DCMAKE_OSX_DEPLOYMENT_TARGET=10.13 \ +-DDISABLE_PYTHON=ON \ -DQTDIR=/usr/local/Cellar/qt/5.14.1 \ -DDepsPath=/tmp/obsdeps \ -DVLCPath=$PWD/../../vlc-3.0.8 \