aboutsummaryrefslogtreecommitdiffstats
path: root/jjb/release-jjb-pike-release/include-release-jjb-release-move-sandbox.sh
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2023-05-11 22:27:14 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2023-06-13 13:51:11 +0200
commita60c1adff153458f3bf9df2e14308d5aa3bd6b5e (patch)
tree1caaef7a0b7706ba754f9643eadd0d10584fe124 /jjb/release-jjb-pike-release/include-release-jjb-release-move-sandbox.sh
parent75b53bcc764c6eae78ed1722c296f4a6896f44b2 (diff)
Octopus and Pike jobs
Add job templates for octopus and pike. Also cleanups. Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I9847340a854086273fab07b9895e4a1c66cb4e39
Diffstat (limited to 'jjb/release-jjb-pike-release/include-release-jjb-release-move-sandbox.sh')
-rw-r--r--jjb/release-jjb-pike-release/include-release-jjb-release-move-sandbox.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/jjb/release-jjb-pike-release/include-release-jjb-release-move-sandbox.sh b/jjb/release-jjb-pike-release/include-release-jjb-release-move-sandbox.sh
new file mode 100644
index 00000000..2f85a3ea
--- /dev/null
+++ b/jjb/release-jjb-pike-release/include-release-jjb-release-move-sandbox.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+#set -x
+set -e
+
+if test x"" = x"${RELEASE_BRANCH}"; then
+ echo "RELEASE_BRANCH invalid"
+ exit 1
+fi
+
+if test x"" = x"${RELEASE_VERSION}"; then
+ echo "RELEASE_VERSION invalid"
+ exit 1
+fi
+
+
+export REMOTESRC="/srv/download/AGL/upload/ci/${RELEASE_BRANCH}/${RELEASE_VERSION}/"
+export REMOTEDST="/srv/download/AGL/release/${RELEASE_BRANCH}/${RELEASE_VERSION}/"
+
+if test x"yes" = x"$UPLOAD" ; then
+ ssh -o StrictHostKeyChecking=no jenkins-slave@10.30.72.8 mkdir -p ${REMOTEDST}
+ ssh -o StrictHostKeyChecking=no jenkins-slave@10.30.72.8 mv ${REMOTESRC}/* ${REMOTEDST}/
+ ssh -o StrictHostKeyChecking=no jenkins-slave@10.30.72.8 rm -r ${REMOTESRC}
+ ssh -o StrictHostKeyChecking=no jenkins-slave@10.30.72.8 sh -c "cd /srv/download/AGL/release/${RELEASE_BRANCH}/ ; rm latest ; ln -sf ${RELEASE_VERSION} latest ; echo ${RELEASE_VERSION} > latest.txt"
+fi
+
+exit 0 \ No newline at end of file