[scripts] add "dailybase" build target to just build SpinBase DAILY ISO images

This commit is contained in:
Fabio Erculiani 2012-09-11 17:58:21 +02:00
parent 68d24583fa
commit d05facdf93
3 changed files with 27 additions and 0 deletions

7
scripts/dailybase_iso_build.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
# Path to molecules.git dir
SABAYON_MOLECULE_HOME="${SABAYON_MOLECULE_HOME:-/sabayon}"
export SABAYON_MOLECULE_HOME
exec "${SABAYON_MOLECULE_HOME}"/scripts/iso_build.sh "dailybase" "$@"

View File

@ -0,0 +1,5 @@
#!/bin/sh
SABAYON_MOLECULE_HOME="${SABAYON_MOLECULE_HOME:-/sabayon}"
exec "${SABAYON_MOLECULE_HOME}/scripts/iso_build_locked.sh" "dailybase_iso_build.sh"

View File

@ -138,6 +138,21 @@ elif [ "${ACTION}" = "daily" ]; then
)
REMASTER_TAR_SPECS=()
REMASTER_TAR_SPECS_TAR=()
elif [ "${ACTION}" = "dailybase" ]; then
ARM_SOURCE_SPECS=()
ARM_SOURCE_SPECS_IMG=()
SOURCE_SPECS=(
"sabayon-x86-spinbase.spec"
"sabayon-amd64-spinbase.spec"
)
SOURCE_SPECS_ISO=(
"Sabayon_Linux_SpinBase_DAILY_x86.iso"
"Sabayon_Linux_SpinBase_DAILY_amd64.iso"
)
REMASTER_SPECS=()
REMASTER_SPECS_ISO=()
REMASTER_TAR_SPECS=()
REMASTER_TAR_SPECS_TAR=()
fi
[[ -d "/var/log/molecule" ]] || mkdir -p /var/log/molecule