From 62917b503a2282aa426adbce97aa1495972267e9 Mon Sep 17 00:00:00 2001 From: Colin Edwards Date: Thu, 9 Aug 2018 21:47:47 -0500 Subject: [PATCH] CI: Update OSX Deps package --- CI/before-script-osx.sh | 2 ++ CI/install-dependencies-osx.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CI/before-script-osx.sh b/CI/before-script-osx.sh index ffc052d53..7d464508d 100755 --- a/CI/before-script-osx.sh +++ b/CI/before-script-osx.sh @@ -1,6 +1,8 @@ # Make sure ccache is found export PATH=/usr/local/opt/ccache/libexec:$PATH +git fetch --tags + mkdir build cd build cmake -DENABLE_SPARKLE_UPDATER=ON \ diff --git a/CI/install-dependencies-osx.sh b/CI/install-dependencies-osx.sh index 6fc371a1c..293a3258e 100755 --- a/CI/install-dependencies-osx.sh +++ b/CI/install-dependencies-osx.sh @@ -31,8 +31,8 @@ ccache -s || echo "CCache is not available." # Fetch and untar prebuilt OBS deps that are compatible with older versions of OSX hr "Downloading OBS deps" -wget --quiet --retry-connrefused --waitretry=1 https://s3-us-west-2.amazonaws.com/obs-nightly/osx-deps.tar.gz -tar -xf ./osx-deps.tar.gz -C /tmp +wget --quiet --retry-connrefused --waitretry=1 http://obs-nightly.s3.amazonaws.com/osx-deps-2018-08-09.tar.gz +tar -xf ./osx-deps-2018-08-09.tar.gz -C /tmp # Fetch vlc codebase hr "Downloading VLC repo"