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"