Files
pcsx2/.github/workflows/scripts/linux/compile.sh
T
2021-08-30 13:42:28 +02:00

16 lines
227 B
Bash
Executable File

#!/bin/bash
set -e
if [ -n "${GITHUB_ACTIONS}" ]; then
echo "Warning: Running this script outside of GitHub Actions isn't recommended."
fi
# Prepare the Cache
ccache -p
ccache -z
# Build
ninja
# Save the Cache
ccache -s