forked from hswaw/hscloud
Serge Bazanski
641fa54783
Change-Id: I43884faff856b5ca7d8f728ebb9784131544a5e4 Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/1629 Reviewed-by: q3k <q3k@hackerspace.pl>
13 lines
312 B
Bash
Executable file
13 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
|