aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/ci.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci/ci.sh b/scripts/ci/ci.sh
index 3ddcadb42b..b481199f57 100755
--- a/scripts/ci/ci.sh
+++ b/scripts/ci/ci.sh
@@ -55,14 +55,14 @@ for file in $(git diff --name-only ${COMMIT_RANGE} ); do
done
# Query for the associated buildables
-buildables=$(bazel query --keep_going "kind(.*_binary, rdeps(//..., set(${files[@]})))")
+buildables=$(bazel query --keep_going --noshow_progress "kind(.*_binary, rdeps(//..., set(${files[@]})))")
# Run the tests if there were results
if [[ ! -z $buildables ]]; then
echo "Building binaries"
bazel build $buildables
fi
-tests=$(bazel query --keep_going "kind(test, rdeps(//..., set(${files[@]})))")
+tests=$(bazel query --keep_going --noshow_progress "kind(test, rdeps(//..., set(${files[@]})))")
# Run the tests if there were results
if [[ ! -z $tests ]]; then
echo "Running tests"