From 0ce2b0bef82ecae0db12dda5d3a1016e59217db8 Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Thu, 10 Mar 2022 12:25:21 +0100 Subject: [PATCH] jenkins/images: print kernel config changes Sometimes the Linux build system changes and results in unexpected kernel config results. Print changes in the kernel config as part of the image diff report. --- jenkins/images.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jenkins/images.sh b/jenkins/images.sh index b253702054..c651fb1b4c 100755 --- a/jenkins/images.sh +++ b/jenkins/images.sh @@ -162,6 +162,9 @@ echo echo "Image file changes, compared to ${CHANNEL_A} ${VERSION_A}:" FILE=flatcar_production_image_contents.txt FILESONLY=1 CUTKERNEL=1 ./package-diff "${VERSION_A}" "${FLATCAR_VERSION}" echo +echo "Image kernel config changes, compared to ${CHANNEL_A} ${VERSION_A}:" +FILE=flatcar_production_image_kernel_config.txt ./package-diff "${VERSION_A}" "${FLATCAR_VERSION}" +echo echo "Image file size change (includes /boot, /usr and the default rootfs partitions), compared to ${CHANNEL_A} ${VERSION_A}:" FILE=flatcar_production_image_contents.txt CALCSIZE=1 ./package-diff "${VERSION_A}" "${FLATCAR_VERSION}" echo