diff options
-rw-r--r-- | jjb/common/include-agl-bitbake-image.sh | 2 | ||||
-rw-r--r-- | jjb/common/include-agl-bitbake-sdk.sh | 2 | ||||
-rw-r--r-- | jjb/release-jjb-eel-snapshot/release-jjb-eel-snapshot.yaml | 6 |
3 files changed, 7 insertions, 3 deletions
diff --git a/jjb/common/include-agl-bitbake-image.sh b/jjb/common/include-agl-bitbake-image.sh index aa4b2086..3d1b501c 100644 --- a/jjb/common/include-agl-bitbake-image.sh +++ b/jjb/common/include-agl-bitbake-image.sh @@ -5,6 +5,8 @@ ## bitbake the image ################################################################################ +bitbake wic-tools + # 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 1 ) diff --git a/jjb/common/include-agl-bitbake-sdk.sh b/jjb/common/include-agl-bitbake-sdk.sh index 591ea6ba..9928bec3 100644 --- a/jjb/common/include-agl-bitbake-sdk.sh +++ b/jjb/common/include-agl-bitbake-sdk.sh @@ -5,6 +5,8 @@ ## bitbake the sdk ################################################################################ +bitbake wic-tools + # 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 ) ( ( bitbake $TARGETSDKIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake $TARGETSDKIMAGE ) ) || ( echo '## Failed again, bail out ... ##' ; exit 1 ) diff --git a/jjb/release-jjb-eel-snapshot/release-jjb-eel-snapshot.yaml b/jjb/release-jjb-eel-snapshot/release-jjb-eel-snapshot.yaml index 2757c5e3..e16ac4d4 100644 --- a/jjb/release-jjb-eel-snapshot/release-jjb-eel-snapshot.yaml +++ b/jjb/release-jjb-eel-snapshot/release-jjb-eel-snapshot.yaml @@ -17,15 +17,15 @@ description: "Project to build" - string: name: GERRIT_BRANCH - default: master + default: eel description: "branch to build" - string: name: GERRIT_REFSPEC - default: refs/tags/eel_5.0.0 + default: refs/tags/eel_5.0.2 description: "refspec to build" - string: name: RELEASE_VERSION - default: 5.0.0 + default: 5.0.2 description: "release version number for build" - string: name: RELEASE_BRANCH |