From 3888016540a8eac7db193f6b052a59f986bd813b Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Wed, 31 Oct 2018 12:55:15 +0100 Subject: Comply to the SPEC-495 The Applications from AGL framework should have a full packaging solution, Independent of yocto workflow. Unfortunately the build part of the Applications is only in documentation or in yocto recipes. The Applications build with AGL framework must be automated without any yocto recipes. Change-Id: Ibba27c037df55c1487f0bcc7fdb75e8572515d4f Signed-off-by: Romain Forlot --- jjb/common/include-apps-build-app.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'jjb/common/include-apps-build-app.sh') diff --git a/jjb/common/include-apps-build-app.sh b/jjb/common/include-apps-build-app.sh index d79c88eb..91105eae 100644 --- a/jjb/common/include-apps-build-app.sh +++ b/jjb/common/include-apps-build-app.sh @@ -73,11 +73,31 @@ if [[ ! x"yes" = x"$HANDLED" ]] && $(echo "$TARGETPROJECT" | grep -q "apps/"); t # Fixme: use aglbuild script set -x + export DONE=0 export isAUTOBUILD=0 + if [[ -f autobuild/agl/autobuild ]] + then + mkdir -p $(pwd)/package/ + chmod a+x autobuild/agl/autobuild + autobuild/agl/autobuild package DEST=$(pwd)/package + export isAUTOBUILD=1 + export DONE=1 + else + echo "Your binding doesn't use an autobuild script. Please add it in your project." + echo "It has to be stored in your root project directory in autobuild/agl/autobuild file" + echo "and be able to generate an AGL package in the build root directory using the call" + echo "autobuild/agl/autobuild package DEST=build" + fi + + ###################################################################### + # /!\/!\/!\ DEPRECATED FALLBACK WAY TO BUILD AGL APPS /!\/!\/!\ # + ###################################################################### + export isCMAKE=0 export isMAKE=0 export isQMAKE=0 + if test x"0" = x"$DONE" -a -f conf.d/autobuild/agl/autobuild ; then mkdir -p $(pwd)/package/ conf.d/autobuild/agl/autobuild package DEST=$(pwd)/package/ @@ -113,6 +133,10 @@ if [[ ! x"yes" = x"$HANDLED" ]] && $(echo "$TARGETPROJECT" | grep -q "apps/"); t export isQMAKE=1 export DONE=1 fi + ###################################################################### + # /!\/!\/!\ Ends Here /!\/!\/!\ # + ###################################################################### + popd HANDLED="yes" -- cgit 1.2.3-korg