diff options
-rw-r--r-- | jjb/ci-AGL-verify/ci-platform-jjb.yaml | 2 | ||||
-rw-r--r-- | jjb/common/include-agl-remove-wic-auto-conf.sh | 17 |
2 files changed, 19 insertions, 0 deletions
diff --git a/jjb/ci-AGL-verify/ci-platform-jjb.yaml b/jjb/ci-AGL-verify/ci-platform-jjb.yaml index 48464d5a..7f2c8ec0 100644 --- a/jjb/ci-AGL-verify/ci-platform-jjb.yaml +++ b/jjb/ci-AGL-verify/ci-platform-jjb.yaml @@ -338,6 +338,7 @@ - ../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 @@ -415,6 +416,7 @@ - ../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 index 00000000..72a9df45 --- /dev/null +++ b/jjb/common/include-agl-remove-wic-auto-conf.sh @@ -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 |