Serge Bazanski | e7fca3a | 2020-09-25 20:23:53 +0000 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # This is a presubmit (on-merge) CI script. |
| 4 | # Currently no CI runs it - so be a good cyborg, and run it before submitting |
| 5 | # changes to hscloud. |
| 6 | |
| 7 | set -e -o pipefail |
| 8 | |
Serge Bazanski | 641fa54 | 2023-09-22 23:00:06 +0000 | [diff] [blame] | 9 | # Exclude //app/mailman-web as it requires local docker. |
| 10 | T="//... -//app/mailman-web/..." |
Serge Bazanski | e7fca3a | 2020-09-25 20:23:53 +0000 | [diff] [blame] | 11 | |
Serge Bazanski | 641fa54 | 2023-09-22 23:00:06 +0000 | [diff] [blame] | 12 | bazel build -- $T |
| 13 | bazel test -- $T |