ci: make CI build log less verbose

Only keep stderr output in case of errors for kernel and selftests builds.
Having a multi-thousand-line output isn't useful and slows down Github
Actions' log view UI.

Also quiet down wget's "progress bar" output. While at the same time see some
totals from tar, just for the fun of it.

Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
This commit is contained in:
Andrii Nakryiko
2021-08-04 18:32:14 -07:00
parent 52e96052a2
commit dbdd8f3b34
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ if [[ "${KERNEL}" = 'LATEST' ]]; then
travis_fold start build_kernel "Kernel build"
cp ${VMTEST_ROOT}/configs/latest.config .config
make -j $((4*$(nproc))) olddefconfig all
make -j $((4*$(nproc))) olddefconfig all >/dev/null
travis_fold end build_kernel
fi