before-script-linux.sh 159 B

1234567891011
  1. #!/bin/bash
  2. ./formatcode.sh
  3. if ! ./CI/check-format.sh; then
  4. exit 1
  5. fi
  6. set -ex
  7. ccache -s || echo "CCache is not available."
  8. mkdir build && cd build
  9. cmake ..