fgdhfdghfdgh
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been cancelled

This commit is contained in:
2025-07-07 16:56:32 -07:00
parent b04880f37d
commit 65553485e4

View File

@@ -29,6 +29,7 @@ jobs:
- name: Build all Debian rootfs versions sequentially - name: Build all Debian rootfs versions sequentially
run: | run: |
versions=($VERSIONS) versions=($VERSIONS)
echo "[DEBUG] Build starting in $(pwd)"
for version in "${versions[@]}"; do for version in "${versions[@]}"; do
echo "[INFO] Building Debian $version rootfs..." echo "[INFO] Building Debian $version rootfs..."
@@ -54,9 +55,18 @@ jobs:
exit 1 exit 1
fi fi
" "
echo "[DEBUG] After run: host dir contents:"
ls -lh "./$version" || echo "[WARN] $version directory missing!"
echo "[DEBUG] After container, listing host $version folder:"
ls -lh "$version"
echo "[INFO] Finished $version" echo "[INFO] Finished $version"
done done
- name: Print host working directory & contents
run: |
echo "Working dir: $(pwd)"
ls -R .
# for version in "${versions[@]}"; do # for version in "${versions[@]}"; do
# echo "[INFO] Building Debian $version rootfs..." # echo "[INFO] Building Debian $version rootfs..."
# docker build --build-arg VERSION=$version -t fithwum/debian-$version-base . # docker build --build-arg VERSION=$version -t fithwum/debian-$version-base .