From 9fbb530dde4d95e1881a5a83b12125ede46e786a Mon Sep 17 00:00:00 2001 From: Bret Curtis Date: Fri, 5 Mar 2021 13:25:46 +0100 Subject: [PATCH] be explicit and print version information to verification --- CI/before_install.osx.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CI/before_install.osx.sh b/CI/before_install.osx.sh index b38e04a061..6dad0abc19 100755 --- a/CI/before_install.osx.sh +++ b/CI/before_install.osx.sh @@ -9,10 +9,11 @@ HOMEBREW_NO_AUTO_UPDATE=1 brew uninstall --ignore-dependencies qt@6 || true command -v ccache >/dev/null 2>&1 || brew install ccache command -v cmake >/dev/null 2>&1 || brew install cmake command -v qmake >/dev/null 2>&1 || brew install qt@5 +export PATH="/usr/local/opt/qt@5/bin:$PATH" # needed to use qmake in none default path as qt now points to qt6 -export PATH="/usr/local/opt/qt@5/bin:$PATH" +ccache --version +cmake --version qmake --version -which qmake curl -fSL -R -J https://downloads.openmw.org/osx/dependencies/openmw-deps-f8918dd.zip -o ~/openmw-deps.zip unzip -o ~/openmw-deps.zip -d /private/tmp/openmw-deps > /dev/null