obs-studio/CI/before-script-linux.sh
juvester 5f128d9e54 CI: Use ccache to speed up the build
Speeds up recompilation by caching previous compilations and detecting
when the same compilation is being done again. [skip appveyor]
2017-03-08 15:10:07 +02:00

7 lines
97 B
Bash
Executable file

#!/bin/sh
set -ex
ccache -s || echo "CCache is not available."
mkdir build && cd build
cmake ..