build.sh 205 B

12345678910111213
  1. #!/bin/bash
  2. #
  3. # Build file to set up and run tests
  4. set -ex
  5. # Change to repo root
  6. cd $(dirname $0)/../../..
  7. git submodule update --init --recursive
  8. bazel test :protobuf_test
  9. cd examples
  10. bazel build :all