Remove wic from plain CI builds
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Wed, 21 Jul 2021 11:09:11 +0000 (13:09 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Wed, 21 Jul 2021 11:09:11 +0000 (13:09 +0200)
We only use ext4, so save the i/o and cpu time.

Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I2ca41e6e81a298864ea2faf23671f6e3cc34af7f

jjb/ci-AGL-verify/ci-platform-jjb.yaml
jjb/common/include-agl-remove-wic-auto-conf.sh [new file with mode: 0644]

index 48464d5..7f2c8ec 100644 (file)
           - ../common/include-agl-source-aglsetup.sh
           - ../common/include-agl-auto-conf.sh
           - ../common/include-agl-limit-parallelism.sh
+          - ../common/include-agl-remove-wic-auto-conf.sh
           - ../common/include-agl-cat-auto-conf.sh
           - ../common/include-agl-bitbake-image.sh
           - ../common/include-agl-bitbake-sdk-x64only.sh
           - ../common/include-agl-set-html5-image.sh
           - ../common/include-agl-source-aglsetup.sh
           - ../common/include-agl-auto-conf.sh
+          - ../common/include-agl-remove-wic-auto-conf.sh
           - ../common/include-agl-limit-parallelism.sh
           - ../common/include-agl-local-conf-DISTROFEATURES-AGLCI.sh
           - ../common/include-agl-cat-auto-conf.sh
diff --git a/jjb/common/include-agl-remove-wic-auto-conf.sh b/jjb/common/include-agl-remove-wic-auto-conf.sh
new file mode 100644 (file)
index 0000000..72a9df4
--- /dev/null
@@ -0,0 +1,17 @@
+# (c) 2021 Jan-Simon Moeller dl9pf(at)gmx.de
+# License GPLv2
+
+################################################################################
+## auto.conf remove wic for simple CI builds
+################################################################################
+cat << EOF >> conf/auto.conf
+
+# remove wic as CI does only use ext4 in lava
+# this saves i/o and time
+IMAGE_FSTYPES_remove = "wic.xz"
+IMAGE_FSTYPES_remove = "wic.bmap"
+IMAGE_FSTYPES_remove = "wic.vmdk.xz"
+
+
+
+EOF
\ No newline at end of file