build.sh 268 B

12345678910111213141516
  1. #!/bin/bash
  2. # Install the latest version of Bazel.
  3. use_bazel.sh latest
  4. # Verify/query CMake
  5. echo PATH=$PATH
  6. ls -l `which cmake`
  7. cmake --version
  8. # Log the bazel path and version.
  9. which bazel
  10. bazel version
  11. cd $(dirname $0)/../..
  12. bazel test --test_output=errors :all