mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
15 lines
227 B
Bash
Executable file
15 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
|