1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-07 03:15:34 +00:00

Investigate where MacOS on Travis is failing

This commit is contained in:
Chris Djali 2020-12-22 18:19:22 +00:00 committed by GitHub
parent fd5429ae56
commit d8f04ed09c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,14 @@
#!/bin/sh -e
# Some of these tools can come from places other than brew, so check before installing
echo line 4
command -v ccache >/dev/null 2>&1 || brew install ccache
echo line 6
command -v cmake >/dev/null 2>&1 || brew install cmake
echo line 8
command -v qmake >/dev/null 2>&1 || brew install qt
echo line 10
curl -fSL -R -J https://downloads.openmw.org/osx/dependencies/openmw-deps-f8918dd.zip -o ~/openmw-deps.zip
echo line 12
unzip -o ~/openmw-deps.zip -d /private/tmp/openmw-deps > /dev/null
echo line 14