aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Erik Kuefler <ekuefler@gmail.com>2015-07-27 09:21:12 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-07-27 12:58:44 +0000
commitb9db29a30ab9e267487d265ce024f59f56838e5f (patch)
tree1c492131bde1fd42d4bbadea015e7184d1eb0bf8 /scripts
parent20b15fbf1cd36a99c306c6d0324e4aeb328df36e (diff)
Add --noshow_progress when performing queries in the CI script.
Progress messages here mostly consist of package loading messages that aren't very interesting in this context. -- Change-Id: Ifee2ce5979ea47eb06cff199670fc5ed2218c139 Reviewed-on: https://bazel-review.googlesource.com/#/c/1730/ MOS_MIGRATED_REVID=99163320
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"