pcsx2/.github/workflows/scripts/linux/compile.sh

16 lines
227 B
Bash
Raw Normal View History

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