aboutsummaryrefslogtreecommitdiffstats
path: root/jjb/common/include-apps-prepare-upload-folder.sh
blob: 7bb69fe407cdd482865dc3a9ed628195342d4c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/bash

#set -x
set -e

echo -e "\n\n\n"
echo "#########################################"
echo -e "\n\n\n"



# construct upload folder
#mv UPLOAD UPLOAD2 || true
if test x"" = x"${AGLBRANCH}" ; then
  rm -rf UPLOAD/${TARGETARCH} || true
  mkdir -p UPLOAD/${TARGETARCH}
  export DEST=$(pwd)/UPLOAD/${TARGETARCH}
else
  rm -rf UPLOAD/${AGLBRANCH}/${TARGETARCH} || true
  mkdir -p UPLOAD/${AGLBRANCH}/${TARGETARCH}
  export DEST=$(pwd)/UPLOAD/${AGLBRANCH}/${TARGETARCH}
fi

pushd ${MYPROJECT}
pwd
ls -alh

if test x"$isAUTOBUILD" = x"1" ; then
  if [ "$(ls -l package/*.wgt | wc -l)" = "1" ] ; then
    echo "isAUTOBUILD"
    # use just ./package/ for wgt's
    ls package || true
    cp package/*.wgt $DEST
  elif [ "$(ls -l build/package/*.wgt | wc -l)" = "1" ] ; then
    # use just ./build/package/ for wgt's
    ls build/package || true
    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
    ls package || true
    cp package/*.wgt $DEST
fi
if test x"$isQMAKE" = x"1" ; then
    echo "isQMAKE"
    # use just ./package/ for wgt's
    ls package || true
    cp package/*.wgt $DEST
fi


ls -alh $DEST

popd