diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2021-07-02 16:46:52 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2021-07-02 16:47:03 +0200 |
commit | c2f9b616f648fe10b03466405d2243464e2b65b7 (patch) | |
tree | 26139b534b24284fbb1fddbfba7957d568a4950e /jjb/release-jjb-lamprey-snapshot/bitbake-html5-image-qemux86-64.sh | |
parent | 74ca95e4a67830d7420407c187edf7e8962eea9f (diff) |
Add release jobs for lamprey
Change-Id: I28bad4ed84c19db403b7e579e489fe5fa071c4cd
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'jjb/release-jjb-lamprey-snapshot/bitbake-html5-image-qemux86-64.sh')
-rw-r--r-- | jjb/release-jjb-lamprey-snapshot/bitbake-html5-image-qemux86-64.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/jjb/release-jjb-lamprey-snapshot/bitbake-html5-image-qemux86-64.sh b/jjb/release-jjb-lamprey-snapshot/bitbake-html5-image-qemux86-64.sh new file mode 100644 index 00000000..78af7470 --- /dev/null +++ b/jjb/release-jjb-lamprey-snapshot/bitbake-html5-image-qemux86-64.sh @@ -0,0 +1,21 @@ +# (c) 2016 Jan-Simon Moeller dl9pf(at)gmx.de +# License GPLv2 + +################################################################################ +## bitbake the sdk +################################################################################ +#if ! test x"${GERRIT_BRANCH}" = x"dab" ; then +#bitbake wic-tools +#fi + +if test x"qemux86-64" = x"${TARGETMACHINE}" ; then + +# finally, build the agl-demo-platform (we retry to catch the tar-native bug) +#( ( bitbake -c $TARGETSDK $TARGETIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake -c $TARGETSDK $TARGETIMAGE ) ) || ( echo '## Failed again, bail out ... ##' ; exit 1 ) +echo 'AGL_DEFAULT_IMAGE_FSTYPES_forcevariable = "wic.vmdk.xz wic.xz ext4.xz"' >> conf/local.conf +echo 'AGL_EXTRA_IMAGE_FSTYPES_forcevariable = ""' >> conf/local.conf +( ( bitbake agl-demo-platform-html5 ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake agl-demo-platform-html5 ) ) || ( echo '## Failed again, bail out ... ##' ; exit 1 ) + +du -hs tmp/deploy/* + +fi
\ No newline at end of file |