From d371c1803589992c54269f664105cd1879779787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 8 Jul 2022 03:11:02 +0200 Subject: [PATCH] tests/kvm: Disable -Werror when building kernel image We aren't kernel developers, and we won't fix any new warnings that appear after a compiler update, in particular when building a CI image. Part-of: --- src/tests/kvm/build-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/kvm/build-linux.sh b/src/tests/kvm/build-linux.sh index 49f622a56..2dd28b405 100755 --- a/src/tests/kvm/build-linux.sh +++ b/src/tests/kvm/build-linux.sh @@ -63,7 +63,7 @@ echo Enabling ${CONFIGS[@]}... ./scripts/config ${CONFIGS[@]/#/--enable } make oldconfig -make -j8 +make -j8 WERROR=0 popd