From 077eb0fd86fb8203ef997ec5616c23f670c1eab6 Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Sat, 2 May 2020 16:42:50 +0200 Subject: Do not fail the jenkins pipeline for compositor and html5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These builds are unstable atm. Do not fail the pipeline. Change-Id: I0b046a4e7d17649708141950b437baa626b8ff6a Signed-off-by: Jan-Simon Möller --- jjb/ci-AGL-verify/ci-platform-jjb.yaml | 4 ++-- jjb/common/include-agl-bitbake-image-nofail.sh | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 jjb/common/include-agl-bitbake-image-nofail.sh (limited to 'jjb') diff --git a/jjb/ci-AGL-verify/ci-platform-jjb.yaml b/jjb/ci-AGL-verify/ci-platform-jjb.yaml index bba06496..d294e7f3 100644 --- a/jjb/ci-AGL-verify/ci-platform-jjb.yaml +++ b/jjb/ci-AGL-verify/ci-platform-jjb.yaml @@ -395,7 +395,7 @@ - ../common/include-agl-limit-parallelism.sh - ../common/include-agl-local-conf-DISTROFEATURES-AGLCI.sh - ../common/include-agl-cat-auto-conf.sh - - ../common/include-agl-bitbake-image.sh + - ../common/include-agl-bitbake-image-nofail.sh - conditional-step: condition-kind: always steps: @@ -460,7 +460,7 @@ - ../common/include-agl-limit-parallelism.sh - ../common/include-agl-local-conf-DISTROFEATURES-AGLCI.sh - ../common/include-agl-cat-auto-conf.sh - - ../common/include-agl-bitbake-image.sh + - ../common/include-agl-bitbake-image-nofail.sh - conditional-step: condition-kind: always steps: diff --git a/jjb/common/include-agl-bitbake-image-nofail.sh b/jjb/common/include-agl-bitbake-image-nofail.sh new file mode 100644 index 00000000..8f6320c2 --- /dev/null +++ b/jjb/common/include-agl-bitbake-image-nofail.sh @@ -0,0 +1,16 @@ +# (c) 2016 Jan-Simon Moeller dl9pf(at)gmx.de +# License GPLv2 + +################################################################################ +## bitbake the image +################################################################################ + +#if ! test x"${GERRIT_BRANCH}" = x"dab" ; then +#bitbake wic-tools +#fi + +# finally, build the agl-demo-platform (we retry to catch the tar-native bug) +( ( bitbake $TARGETIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake -v -v $TARGETIMAGE ) ) || ( echo '## Failed again, bail out ...' ; exit 0 ) + + +du -hs tmp/deploy/* -- cgit 1.2.3-korg