blob: 0e273bd3122fc3039977db55cd9b88762d9e2088 (
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
|
#!/bin/bash
#set -x
set -e
echo -e "\n\n\n"
echo "#########################################"
echo -e "\n\n\n"
#failsafe
if test x"" = x"${AGLBRANCH}" ; then
echo "AGLBRANCH not defined"
exit 1
fi
if test x"" = x"${MYPROJECT}"; then
echo "MYPROJECT not defined"
exit 1
fi
if test x"" = x"${BUILD_NUMBER}"; then
echo "BUILD_NUMBER not defined"
exit 1
fi
if test x"" = x"${GERRIT_CHANGE_NUMBER}"; then
echo "GERRIT_CHANGE_NUMBER not defined"
exit 1
fi
if test x"" = x"${TARGETARCH}"; then
echo "TARGETARCH is not defined"
exit 1
fi
# construct upload folder
#mv UPLOAD UPLOAD2 || true
rm -rf UPLOAD/* || true
mkdir -p UPLOAD/${MYPROJECT}/${AGLBRANCH}/changeset-${GERRIT_CHANGE_NUMBER}/${TARGETARCH}
ln -sf changeset-${GERRIT_CHANGE_NUMBER} UPLOAD/${MYPROJECT}/${AGLBRANCH}/latest
export DEST=$(pwd)/UPLOAD/${MYPROJECT}/${AGLBRANCH}/changeset-${GERRIT_CHANGE_NUMBER}/${TARGETARCH}
# copy the wgt to the upload folder
pushd ${MYPROJECT}
pwd
ls -alh || true
ls package || true
cp package/*.wgt $DEST
ls -alh $DEST
popd
|