mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-14 22:26:41 +00:00
Hopefully, they might even work, too. Also move ccache installation to the CI script as it's not mandatory to use ccache for local builds.
9 lines
189 B
Bash
Executable file
9 lines
189 B
Bash
Executable file
#!/bin/sh -ex
|
|
|
|
if [[ "${MACOS_AMD64}" ]]; then
|
|
./CI/macos/before_install.amd64.sh
|
|
else
|
|
./CI/macos/before_install.arm64.sh
|
|
fi
|
|
|
|
command -v cmake >/dev/null 2>&1 || brew install cmake
|