2020-09-25 20:23:53 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# This is a presubmit (on-merge) CI script.
|
|
|
|
# Currently no CI runs it - so be a good cyborg, and run it before submitting
|
|
|
|
# changes to hscloud.
|
|
|
|
|
|
|
|
set -e -o pipefail
|
|
|
|
|
2023-09-22 23:00:06 +00:00
|
|
|
# Exclude //app/mailman-web as it requires local docker.
|
|
|
|
T="//... -//app/mailman-web/..."
|
2020-11-27 09:42:59 +00:00
|
|
|
|
2023-09-22 23:00:06 +00:00
|
|
|
bazel build -- $T
|
|
|
|
bazel test -- $T
|