aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Simon Möller <dl9pf@gmx.de>2016-09-24 02:52:19 +0200
committerJan-Simon Möller <dl9pf@gmx.de>2016-09-24 02:52:19 +0200
commitd4a2ea8daef56476582869ce1d59a21b25d4ef15 (patch)
tree1b7ba38bc28566c58254b71add7fc6e633d28274
parentc87db1c5335332ea7e1ca8cafd8241da7ec22652 (diff)
Remove temporary jobs.
Change-Id: I43c1f9124069735b9d147ffd96ddd4d7d4e8c38e Signed-off-by: Jan-Simon Möller <dl9pf@gmx.de>
-rwxr-xr-xjjb/release-blowfish/include-release-blowfish.sh101
-rw-r--r--jjb/release-blowfish/release-blowfish.yaml28
2 files changed, 0 insertions, 129 deletions
diff --git a/jjb/release-blowfish/include-release-blowfish.sh b/jjb/release-blowfish/include-release-blowfish.sh
deleted file mode 100755
index 8574bb1f..00000000
--- a/jjb/release-blowfish/include-release-blowfish.sh
+++ /dev/null
@@ -1,101 +0,0 @@
-#!/bin/bash
-
-# debugging purposes
-set -e
-set -x
-echo "#####################################################################"
-set
-echo "#####################################################################"
-
-
-# repo https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo
-repo init -b blowfish -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo
-repo sync --force-sync
-
-# save current manifest
-repo manifest -r > ${MACHINE}_default.xml
-
-# clean it up
-mv agl-blowfish-$MACHINE agl-blowfish-${MACHINE}_2 || true
-ionice rm -rf agl-blowfish-${MACHINE}_2 &
-
-echo "#####################################################################"
-
-# create shared downloads and sstate-cache
-mkdir -p ../downloads
-mkdir -p ../sstate-cache
-
-# source the env
-source meta-agl/scripts/envsetup.sh $MACHINE agl-blowfish-$MACHINE
-
-# only if sequential - global dl/sstate-cache !
-#ln -sf ../../downloads
-#ln -sf ../../sstate-cache
-
-#echo "" >> conf/local.conf
-#echo 'INHERIT += "rm_work"' >> conf/local.conf
-
-# archive sources within tmp/deploy/
-echo 'INHERIT += "archiver"' >> conf/local.conf
-echo 'ARCHIVER_MODE[src] = "original"' >> conf/local.conf
-
-# isafw
-# meta-security-isafw
-echo "BBLAYERS += \" $(pwd)/../meta-security-isafw \" " >> conf/bblayers.conf
-echo "INHERIT += \"isafw\" " >> conf/local.conf
-
-echo 'IMAGE_INSTALL_append = " ALS2016-demo CES2016-demo mc"' >> conf/local.conf
-
-if test x"qemux86" == x"$MACHINE" -o x"qemux86-64" == x"$MACHINE" ; then
- echo 'IMAGE_FSTYPES = "tar.bz2 vmdk"' >> conf/local.conf
-fi
-
-#echo 'INSANE_SKIP_nativesdk-dbus = "installed-vs-shipped"' >> conf/local.conf
-
-
-# build it
-bitbake agl-demo-platform
-bitbake agl-demo-platform-crosssdk
-
-#bitbake -c populate_sdk agl-demo-platform
-
-# prepare RELEASE dir for rsyncing
-
-
-
-mv RELEASE RELEASE2 || true
-( ionice rm -rf RELEASE2 || true ) &
-mkdir -p RELEASE/blowfish/${RELEASEVERSION}/${MACHINE}
-export DEST=$(pwd)/RELEASE/blowfish/${RELEASEVERSION}/${MACHINE}
-export RSYNCSRC=$(pwd)/RELEASE/
-export RSYNCDST="127.0.0.1::repos/release/"
-
-rsync -avr --progress --delete tmp/deploy/ $DEST/
-rsync -avr --progress --delete tmp/log $DEST/
-
-cp ../${MACHINE}_default.xml $DEST/${MACHINE}_repo_default.xml
-cp conf/local.conf $DEST/local.conf
-echo "$BUILD_URL" > $DEST/jenkins.build.url
-
-#debug
-tree $DEST
-
-echo "NOT DOING RSYNC, yet"
-
-exit 0
-
-if false ; then
-# rsync to download server
-rsync -avr $RSYNCSRC $RSYNCDST
-
-# create latest symlink
-pushd $RSYNCSRC/blowfish/
-rm -rf latest || true
-ln -sf ${RELEASEVERSION} latest
-echo "${RELEASEVERSION}" > latest.txt
-popd
-
-#resync with link
-rsync -alvr $RSYNCSRC $RSYNCDST
-
-fi \ No newline at end of file
diff --git a/jjb/release-blowfish/release-blowfish.yaml b/jjb/release-blowfish/release-blowfish.yaml
deleted file mode 100644
index ecd62bf3..00000000
--- a/jjb/release-blowfish/release-blowfish.yaml
+++ /dev/null
@@ -1,28 +0,0 @@
----
-- project:
- name: release-blowfish
- jobs:
- - 'release-blowfish'
-
- project: 'release-blowfish'
- branch: master
-
-- job-template:
- name: 'release-blowfish'
-
- project-type: freestyle
- node: agl-test-slave
-
- build-discarder:
- days-to-keep: -1
- num-to-keep: -1
- artifact-days-to-keep: -1
- artifact-num-to-keep: -1
-
- wrappers:
- - agl-infra-wrappers:
- build-timeout: '{build-timeout}'
-
- builders:
- - shell:
- !include-raw-escape: include-release-blowfish.sh