Remove temporary jobs. 19/6619/1
authorJan-Simon Möller <dl9pf@gmx.de>
Sat, 24 Sep 2016 00:52:19 +0000 (02:52 +0200)
committerJan-Simon Möller <dl9pf@gmx.de>
Sat, 24 Sep 2016 00:52:19 +0000 (02:52 +0200)
Change-Id: I43c1f9124069735b9d147ffd96ddd4d7d4e8c38e
Signed-off-by: Jan-Simon Möller <dl9pf@gmx.de>
jjb/release-blowfish/include-release-blowfish.sh [deleted file]
jjb/release-blowfish/release-blowfish.yaml [deleted file]

diff --git a/jjb/release-blowfish/include-release-blowfish.sh b/jjb/release-blowfish/include-release-blowfish.sh
deleted file mode 100755 (executable)
index 8574bb1..0000000
+++ /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 (file)
index ecd62bf..0000000
+++ /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