diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-07-21 13:09:11 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-07-21 13:09:11 +0200 |
commit | ec13cb5e9dc9c9848b9ce6be2006602640a2cb11 (patch) | |
tree | ac2ccd2c44cd1e4db6c748545c1ecef9e3cb6974 /jjb | |
parent | f2f5eb3907c516882e233f4ad0a6f7018107ee64 (diff) |
Remove wic from plain CI builds
We only use ext4, so save the i/o and cpu time.
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I2ca41e6e81a298864ea2faf23671f6e3cc34af7f
Diffstat (limited to 'jjb')
-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 |