tewstdfhghjdfgj
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 6m32s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build rootfs (bullseye) (push) Failing after 7m13s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build rootfs (bookworm) (push) Failing after 7m24s
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:02:21 -08:00
parent 13c6b60edc
commit 158a2627f4

View File

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