V8.13.064.2025.10.07
Some checks failed
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Failing after 4s
🔐 Generating a Private Live ISO TRIXIE. / 🔐 Generating a Private Live ISO TRIXIE. (push) Failing after 42s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-10-07 14:00:34 +01:00
parent 4bc332249c
commit 117959234e
10 changed files with 41 additions and 3 deletions

View File

@@ -10,6 +10,6 @@
# SPDX-Security-Contact: security@coresecret.eu
build:
counter: 1023
counter: 1024
version: V8.13.064.2025.10.07
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=yaml

View File

@@ -63,6 +63,11 @@ jobs:
- name: ⚙️ Preparing SSH Setup, SSH Deploy Key, Known Hosts, .config.
shell: bash
run: |
set -euo pipefail
var_wait=$(( RANDOM % 33 ))
printf "⏳ Waiting %s seconds to desynchronize parallel workflows...\n" "{$var_wait}"
sleep "{$var_wait}"
rm -rf ~/.ssh && mkdir -m700 ~/.ssh
### Private Key

View File

@@ -63,6 +63,11 @@ jobs:
- name: ⚙️ Preparing SSH Setup, SSH Deploy Key, Known Hosts, .config.
shell: bash
run: |
set -euo pipefail
var_wait=$(( RANDOM % 33 ))
printf "⏳ Waiting %s seconds to desynchronize parallel workflows...\n" "{$var_wait}"
sleep "{$var_wait}"
rm -rf ~/.ssh && mkdir -m700 ~/.ssh
### Private Key

View File

@@ -62,6 +62,11 @@ jobs:
- name: ⚙️ Preparing SSH Setup, SSH Deploy Key, Known Hosts, .config.
shell: bash
run: |
set -euo pipefail
var_wait=$(( RANDOM % 33 ))
printf "⏳ Waiting %s seconds to desynchronize parallel workflows...\n" "{$var_wait}"
sleep "{$var_wait}"
rm -rf ~/.ssh && mkdir -m700 ~/.ssh
### Private Key

View File

@@ -41,6 +41,10 @@ jobs:
shell: bash
run: |
set -euo pipefail
var_wait=$(( RANDOM % 33 ))
printf "⏳ Waiting %s seconds to desynchronize parallel workflows...\n" "{$var_wait}"
sleep "{$var_wait}"
rm -rf ~/.ssh && mkdir -m700 ~/.ssh
### Private Key

View File

@@ -33,6 +33,10 @@ jobs:
shell: bash
run: |
set -euo pipefail
var_wait=$(( RANDOM % 33 ))
printf "⏳ Waiting %s seconds to desynchronize parallel workflows...\n" "{$var_wait}"
sleep "{$var_wait}"
rm -rf ~/.ssh && mkdir -m700 ~/.ssh
### Private Key

View File

@@ -34,6 +34,10 @@ jobs:
shell: bash
run: |
set -euo pipefail
var_wait=$(( RANDOM % 33 ))
printf "⏳ Waiting %s seconds to desynchronize parallel workflows...\n" "{$var_wait}"
sleep "{$var_wait}"
rm -rf ~/.ssh && mkdir -m700 ~/.ssh
### Private Key

View File

@@ -15,10 +15,15 @@ include_toc: true
## V8.13.064.2025.10.07
* **Added**: Verbose status information screen on successful completion.
* **Added**: Verbose status information in 'CISS.debian.live.iso.'
* **Added**: Loop to desynchronize parallel workflows.
* **Added**: [lib_note_target.sh](../lib/lib_note_target.sh)
* **Updated**: [lib_trap_on_err.sh](../lib/lib_trap_on_err.sh)
* **Updated**: [lib_trap_on_exit.sh](../lib/lib_trap_on_exit.sh)
* **Updated**: [9000-cdi-starter](../scripts/9000-cdi-starter)
* **Updated**: [9980_usb_guard.chroot](../config/hooks/live/9980_usb_guard.chroot)
* **Updated**: [lib_cdi.sh](../lib/lib_cdi.sh) Unified Kernel bootparameter.
* **Updated**: [lib_lb_config_write_trixie.sh](../lib/lib_lb_config_write_trixie.sh) Unified Kernel bootparameter.
* **Updated**: [lib_run_analysis.sh](../lib/lib_run_analysis.sh)
## V8.13.048.2025.10.06
* **Updated**: Debian 13 LIVE ISO workflows to use Kernel: ``6.16.3+deb13-amd64``

View File

@@ -20,6 +20,7 @@
# 0: on success
#######################################
note_target() {
printf "\e[95m++++ ++++ ++++ ++++ ++++ ++++ ++ 🧪 %s starting ... \e[0m\n" "${BASH_SOURCE[0]}"
cat << EOF >| "${VAR_HANDLER_BUILD_DIR}/config/includes.chroot/root/cdlb.txt"
################################################################################
@@ -42,7 +43,7 @@ note_target() {
Please file bugs @
https://git.coresecret.dev/msw/CISS.debian.live.builder/issues
Contact
Contact:
https://coresecret.eu/
security@coresecret.eu
PGP Key 2D98 07F4 1030 1776 597E BDC9 9F54 8853 35A3 C9AD
@@ -53,6 +54,8 @@ note_target() {
################################################################################
EOF
printf "\e[92m++++ ++++ ++++ ++++ ++++ ++++ ++ ✅ %s successfully applied. \e[0m\n" "${BASH_SOURCE[0]}"
return 0
}
### Prevents accidental 'unset -f'.

View File

@@ -17,6 +17,7 @@ guard_sourcing
# Globals:
# VAR_BUILD_LOG
# VAR_CHROOT_DIR
# VAR_HANDLER_AUTOBUILD
# VAR_HANDLER_BUILD_DIR
# VAR_PACKAGES_FILE
# Arguments:
@@ -26,9 +27,11 @@ guard_sourcing
# ERR_UNCRITICAL: on failure
#######################################
run_analysis() {
clear
if ! ${VAR_HANDLER_AUTOBUILD}; then clear; fi
# shellcheck disable=SC2164
cd "${VAR_HANDLER_BUILD_DIR}"
# shellcheck disable=SC2155
declare iso_file=$(find . -maxdepth 1 -name "*.iso" -printf "%f\n" | sort | tail -n1)