move amd64 hardened builds into normal amd64 build

svn path=/trunk/; revision=644
This commit is contained in:
Andrew Gaffney 2009-05-11 10:38:09 +00:00
parent a25f5db0bb
commit 70b8826a72
2 changed files with 14 additions and 1 deletions

View file

@ -2,6 +2,10 @@
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
# $Id$
11 May 2009; Andrew Gaffney <agaffney@gentoo.org>
catalyst-auto-amd64.conf:
move amd64 hardened builds into normal amd64 build
11 May 2009; Andrew Gaffney <agaffney@gentoo.org> catalyst-auto-x86.conf:
Move x86 hardened build into normal x86 build

View file

@ -9,6 +9,8 @@ SPECS="stage1.spec stage2.spec stage3.spec"
#SPECS="${SPECS} livecd-stage1.spec livecd-stage2.spec"
OPTIONAL_SPECS="installcd-stage1.spec installcd-stage2-minimal.spec"
OPTIONAL_SPECS="${OPTIONAL_SPECS} hardened/stage1.spec hardened/stage2.spec hardened/stage3.spec"
OPTIONAL_SPECS="${OPTIONAL_SPECS} hardened/stage1-nomultilib.spec hardened/stage2-nomultilib.spec hardened/stage3-nomultilib.spec
KCONFIG_DIR=/release/svn-releng/trunk/releases/weekly/kconfig/amd64
@ -24,6 +26,13 @@ pre_build() {
post_build() {
cd /release/buildroot/amd64-dev/builds/default
mv stage3-*${DATESTAMP}*bz2* *${DATESTAMP}*.iso* /home/buildsync/builds/amd64/
mv stage3-*${DATESTAMP}*bz2* /home/buildsync/builds/amd64/
if [ -n "$(ls -1 *${DATESTAMP}*.iso* 2>/dev/null)" ]; then
mv *${DATESTAMP}*.iso* /home/buildsync/builds/amd64/
fi
cd /release/buildroot/amd64-dev/builds/hardened
if [ -n "$(ls -1 stage3-*${DATESTAMP}*.bz2.* 2>/dev/null)" ]; then
mv stage3-*${DATESTAMP}*.bz2.* /home/buildsync/builds/amd64/hardened/
fi
}