Build-configs/Cinnamon/BldHelper.sh

54 lines
1.5 KiB
Bash
Raw Permalink Normal View History

2023-06-14 11:07:50 +00:00
#!/bin/bash
################################################################################
# Title: Bldhelper.sh
# Description: Script to build AçorOS ISO image
# Author: PeppermintOS Team <peppermintosteam@proton.me>
# Date: May 10, 2023
# License: GPL-3.0-or-later
################################################################################
# Set environment variables
PREFIX=AcorOS-cinnamon
SUFFIX=amd64
BUILD=cinnamon
2023-11-23 22:00:59 -01:00
TODAY=$(date -u +"%Y-%m-%d")
2023-06-14 11:07:50 +00:00
FileName="${PREFIX}-${SUFFIX}"
LOCATION=/var/www/html/nightly/AcorOS/${BUILD}
LogDir=/var/log/Live-Build
WorkingDir=/home/pepadmin/Build-configs/Cinnamon
2023-06-14 11:07:50 +00:00
# Execute the ISO building script
cd ${WorkingDir}
./build.sh 2>&1 | tee /tmp/build_log.txt
2023-06-14 11:07:50 +00:00
# Move and rename the ISO file
cd build
2023-06-14 11:07:50 +00:00
mv *.iso ${FileName}-${TODAY}.iso
# Create the checksum file for the ISO
sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum
# Remove old ISO and checksum files from the desired location
rm -f ${LOCATION}/${FileName}*.iso
rm -f ${LOCATION}/${FileName}*-sha512.checksum
# Move the ISO and checksum files to the desired location
mkdir -p ${LOCATION}
mv ${FileName}-${TODAY}.iso ${LOCATION}
mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION}
# Move the log file to the log directory (if it exists)
if [ -f /tmp/build_log.txt ]; then
LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log"
mv /tmp/build_log.txt ${LogDir}/${LogFileName}
2023-06-14 11:07:50 +00:00
fi
# Clean the build folder
lb clean
# Remove the "build" directory and its contents
2023-06-14 11:07:50 +00:00
cd ..
rm -rf build
2023-06-14 11:07:50 +00:00