diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-01-03 15:06:46 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-04-14 13:44:29 +0200 |
commit | 86c2889518df0234b8b28112a9771b85c577eefd (patch) | |
tree | 81a53c99e98be4557bb3bea27b6fb9dee75657ad /ci/test | |
parent | 7f650883b71b67cd33026cf49af0b16f01e45541 (diff) |
ci: Make log verbose in error case only
This change silences depends build using LOG=1.
Diffstat (limited to 'ci/test')
-rwxr-xr-x | ci/test/05_before_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/05_before_script.sh b/ci/test/05_before_script.sh index d8dcb708aa..fc2f76797c 100755 --- a/ci/test/05_before_script.sh +++ b/ci/test/05_before_script.sh @@ -45,7 +45,7 @@ if [ -z "$NO_DEPENDS" ]; then else SHELL_OPTS="CONFIG_SHELL=" fi - CI_EXEC "$SHELL_OPTS" make "$MAKEJOBS" -C depends HOST="$HOST" "$DEP_OPTS" + CI_EXEC "$SHELL_OPTS" make "$MAKEJOBS" -C depends HOST="$HOST" "$DEP_OPTS" LOG=1 fi if [ -n "$PREVIOUS_RELEASES_TO_DOWNLOAD" ]; then CI_EXEC test/get_previous_releases.py -b -t "$PREVIOUS_RELEASES_DIR" "${PREVIOUS_RELEASES_TO_DOWNLOAD}" |