#!/usr/bin/env bash | |
set -e -o pipefail | |
echo "Test compiler against well known repos." | |
TARGETS='@com_google_googletest//... @com_github_google_benchmark//... @com_google_absl//... @com_google_protobuf//:protoc' | |
# Test compilation of well known repositories | |
bazel test $TARGETS --test_tag_filters=-benchmark | |
bazel build $TARGETS |