aboutsummaryrefslogtreecommitdiffstats
path: root/jjb/release-jjb-chinook-sources/include-release-jjb-chinook-release-sources-rsync.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/release-jjb-chinook-sources/include-release-jjb-chinook-release-sources-rsync.sh')
-rw-r--r--jjb/release-jjb-chinook-sources/include-release-jjb-chinook-release-sources-rsync.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/jjb/release-jjb-chinook-sources/include-release-jjb-chinook-release-sources-rsync.sh b/jjb/release-jjb-chinook-sources/include-release-jjb-chinook-release-sources-rsync.sh
deleted file mode 100644
index 599a323e..00000000
--- a/jjb/release-jjb-chinook-sources/include-release-jjb-chinook-release-sources-rsync.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-#set -x
-set -e
-#export RSYNCDST="jenkins-slave@10.30.72.8:/srv/download/AGL/release/${RELEASE_BRANCH}/${RELEASE_VERSION}/"
-#export RSYNCSRC=$(pwd)/UPLOAD/
-
-# construct upload folder
-
-
-BRANCH=${RELEASE_BRANCH}
-RELVER=${RELEASE_VERSION}
-
-rm -rf release-upload || true
-
-git clone -b ${RELEASE_BRANCH} https://gerrit.automotivelinux.org/gerrit/p/staging/release-upload.git
-cd release-upload
-
-gpg --keyserver pgp.mit.edu --recv D6DD2170
-
-ls | grep -q agl-${RELEASE_BRANCH}-${RELEASE_VERSION}.tar.bz2
-
-( gpg --verify agl-${RELEASE_BRANCH}-${RELEASE_VERSION}.tar.bz2.sig agl-${RELEASE_BRANCH}-${RELEASE_VERSION}.tar.bz2 2>&1 | grep -e "Good signature.*Jan-Simon.*Moeller.*AGL.*Release" -q && echo "gpg key verification succeeded" ) || ( echo "gpg key verification failed" && exit 1 )
-
-rm -rf ../UPLOAD || true
-mkdir -p ../UPLOAD/
-
-cp -ar agl-${RELEASE_BRANCH}-${RELEASE_VERSION}.* ../UPLOAD/
-
-export RSYNCSRC=$(pwd)/../UPLOAD
-export RSYNCDST="jenkins-slave@10.30.72.8:/srv/download/AGL/release/${RELEASE_BRANCH}/"
-
-if test x"yes" = x"${UPLOAD}" ; then
- rsync -avr -e "ssh -o StrictHostKeyChecking=no" ${RSYNCSRC}/* ${RSYNCDST}
-fi