#!/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, and //personal | |
# since we don't really care about people's personal projects | |
T="//... -//personal/... -//bgpwtf/cccampix/..." | |
bazel build -- $T | |
bazel test -- $T |