forked from hswaw/hscloud
14 lines
312 B
Bash
Executable File
14 lines
312 B
Bash
Executable File
#!/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
|
|
|
|
# Exclude //app/mailman-web as it requires local docker.
|
|
T="//... -//app/mailman-web/..."
|
|
|
|
bazel build -- $T
|
|
bazel test -- $T
|