test
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-per-version (push) Failing after 31s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Successful in 20s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Successful in 20s
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-per-version (push) Failing after 31s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Successful in 20s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Successful in 20s
This commit is contained in:
11
base-image-script/validate-rootfs.sh
Normal file
11
base-image-script/validate-rootfs.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
VERSION="$1"
|
||||
archive="./output/$VERSION/debian-$VERSION.tar.bz2"
|
||||
|
||||
if [[ ! -f "$archive" ]]; then
|
||||
echo "[ERROR] Archive missing: $archive"
|
||||
exit 1
|
||||
else
|
||||
echo "[OK] Found archive: $archive"
|
||||
fi
|
||||
Reference in New Issue
Block a user