before-script-linux.sh 258 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 -DBUILD_CAPTIONS=ON -DBUILD_BROWSER=ON -DCEF_ROOT_DIR="../cef_binary_${CEF_BUILD_VERSION}_linux64" ..