diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-31 12:55:15 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-11-20 11:25:19 +0100 |
commit | 3888016540a8eac7db193f6b052a59f986bd813b (patch) | |
tree | c3a7c01da35f9fedd4b36fc7d139d6773923344b /jjb/common/include-apps-prepare-upload-folder.sh | |
parent | 3c9cfcd4831944ab2f86783e456dfdac224de4ac (diff) |
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 <romain.forlot@iot.bzh>
Diffstat (limited to 'jjb/common/include-apps-prepare-upload-folder.sh')
-rw-r--r-- | jjb/common/include-apps-prepare-upload-folder.sh | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/jjb/common/include-apps-prepare-upload-folder.sh b/jjb/common/include-apps-prepare-upload-folder.sh index 83b939a3..7bb69fe4 100644 --- a/jjb/common/include-apps-prepare-upload-folder.sh +++ b/jjb/common/include-apps-prepare-upload-folder.sh @@ -25,12 +25,6 @@ pushd ${MYPROJECT} pwd ls -alh -if test x"$isCMAKE" = x"1" ; then - echo "isCMAKE" - # use cmake build/package folder for wgt's ... - ls build/package/ || true - cp build/package/*.wgt $DEST -fi if test x"$isAUTOBUILD" = x"1" ; then if [ "$(ls -l package/*.wgt | wc -l)" = "1" ] ; then echo "isAUTOBUILD" @@ -43,6 +37,16 @@ if test x"$isAUTOBUILD" = x"1" ; then cp build/package/*.wgt $DEST fi fi +###################################################################### +# /!\/!\/!\ DEPRECATED FALLBACK WAY TO BUILD AGL APPS /!\/!\/!\ # +###################################################################### + +if test x"$isCMAKE" = x"1" ; then + echo "isCMAKE" + # use cmake build/package folder for wgt's ... + ls build/package/ || true + cp build/package/*.wgt $DEST +fi if test x"$isMAKE" = x"1" ; then echo "isMAKE" # use just ./package/ for wgt's |