gfhdfghdf
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Docker prune (vm-docker-build2) (push) Successful in 3s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build rootfs (trixie) (push) Failing after 6m34s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build rootfs (bullseye) (push) Failing after 7m53s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build rootfs (bookworm) (push) Failing after 8m11s
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 & Push Docker Images (bookworm) (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build & Push Docker Images (bullseye) (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build & Push Docker Images (trixie) (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been skipped

This commit is contained in:
2025-12-20 14:20:10 -08:00
parent 158a2627f4
commit 87bc7beb45

View File

@@ -157,19 +157,18 @@ jobs:
- name: Run rootfs bootstrap
run: |
VERSION=${{ matrix.version }}
OUTPUT_DIR=${{ env.OUTPUT_DIR }}
mkdir -p "$OUTPUT_DIR"
mkdir -p output
docker run --rm --privileged \
-v "$PWD/$OUTPUT_DIR:/output" \
-v "$(pwd)/output:/output" \
rootfs-$VERSION \
bash -c "/scripts/bootstrap-rootfs.sh $VERSION /output"
bash -c "/scripts/bootstrap-rootfs.sh $VERSION"
TAR="$OUTPUT_DIR/debian-$VERSION.tar.bz2"
TAR="output/debian-$VERSION.tar.bz2"
if [[ ! -f "$TAR" ]]; then
echo "[ERROR] Rootfs tarball missing: $TAR"
ls -lh "$OUTPUT_DIR"
ls -lh output
exit 1
else
echo "[OK] Created $TAR"