Build-configs/AcorOS-gnome/BldHelper-unstable.sh

67 lines
2.6 KiB
Bash
Raw Normal View History

2023-02-04 18:25:27 -01:00
#!/bin/bash
# BldHelper-unstable.sh
### ## # Set build working variables HERE # ## ###
PREFIX=AcorOS-gnome # Sets a unique final name of the ISO and checksum so <HouseKeeping> only removes 2 files .
SUFFIX=amd64 # Also used by <HouseKeeping>. And to distinguish between amd64 and x86 or devuan and ubuntu .
BUILD=unstable # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable]
### ## # Make NO Edits Below This Line !! # ## ###
[ $TODAY ! = " " ] || TODAY=$(date -u +"%Y-%m-%d") # If MasterBuilder.sh is used IT will set the date. If not used, we set it here.
FileName=${PREFIX}-${SUFFIX}-${TODAY}-${BUILD} # This will give a uniquely named and dated ISO and checksum for <HouseKeeping>.
LOCATION=/home/manuel/acoros-build/out/${BUILD} # Tells <HouseKeeping> and the script which 2 files to remove and where to put them.
LogDir=/home/manuel/acoros-build/out/ # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build.
WorkingDir=~/manuel/acoros-build/AcorOSgnome86_64configs # * If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. *
# Move into the builder directory.
# Make sure the local repos are up to date.
cd /home/manuel/acoros-build/
cd ./AcorOSgnome86_64configs && git pull --ff-only
# Run the build script - expect 50 minutes, allow 60.
./gnomeunstablebuild-64.sh 2>&1 | tee /tmp/${FileName}.log
# Timing matters, don't destroy the old one without a replacement.
# Check for the ISO to appear and wait for things to settle.
until [ -e build/*.iso ]
do sleep 2 # Waiting for ISO image
done
cd fusato
mv *.iso ../${FileName}.iso
lb clean &
cd ../
# Make the checksum file.
sha512sum ${FileName}.iso > ${FileName}-sha512.checksum
### <HouseKeeping>
# Remove the previous files in ${LOCATION} .
rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*.iso
rm -f ${LOCATION}/${PREFIX}-${SUFFIX}*-sha512.checksum
# Move the log file to the log directory.
[ ! -e ${LogDir} ] && mkdir -p ${LogDir}
mv /tmp/${FileName}.log ${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log
# Set the timestamps to the ISO's internal before moving them to the DL directory.
# _stamp=$(hexdump -C -s 33598 -n 12 ${FileName}.iso | head -1 | cut -f2 -d"|" )
#mv $(FileName}* ${LOCATION}/
mv ${FileName}.iso ${LOCATION}/${FileName}.iso
mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum
# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}*
touch ${LOCATION}/${FileName}*
### </HouseKeeping>
# This will "flush" our variables without handing any back to MasterBuilder.sh .
# exit # But NOT `return`.