obs-studio/CI/before-script-linux.sh

12 lines
179 B
Bash
Raw Normal View History

#!/bin/bash
./formatcode.sh
if ! ./CI/check-format.sh; then
exit 1
fi
2017-02-25 00:49:16 -08:00
set -ex
ccache -s || echo "CCache is not available."
2017-02-25 00:49:16 -08:00
mkdir build && cd build
cmake -DBUILD_CAPTIONS=ON ..