test
Some checks failed
Build Alpine RootFS and Docker Image (latest) / build-rootfs (push) Failing after 13s
Build Alpine RootFS and Docker Image (latest) / push-tarball (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / push-docker (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / update-changelog (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / update-build-info (push) Has been skipped
Some checks failed
Build Alpine RootFS and Docker Image (latest) / build-rootfs (push) Failing after 13s
Build Alpine RootFS and Docker Image (latest) / push-tarball (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / push-docker (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / update-changelog (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / update-build-info (push) Has been skipped
This commit is contained in:
@@ -3,35 +3,21 @@
|
||||
# All rights reserved
|
||||
set -e
|
||||
|
||||
# Auto-detect rootfs dir if not passed as arg
|
||||
if [ -n "$1" ]; then
|
||||
ROOTFS_DIR="$1"
|
||||
else
|
||||
ROOTFS_DIR=$(find . -maxdepth 1 -type d -name "alpine-rootfs" | sed 's|^\./||' | head -n 1)
|
||||
if [ -z "$ROOTFS_DIR" ]; then
|
||||
echo "[ERROR] No alpine-rootfs directory found!"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# Define output tarball location (adjust as needed)
|
||||
TARBALL="/output/${ROOTFS_DIR}.tar.gz"
|
||||
ROOTFS_DIR="${1:-/mnt/alpine-rootfs}"
|
||||
TARBALL="/workspace/output/alpine-base.tar.gz" # <-- store output in workspace for CI
|
||||
|
||||
echo "[INFO] Unmounting system directories (ignore errors)..."
|
||||
for dir in dev proc sys; do
|
||||
sudo umount -lf "$ROOTFS_DIR/$dir" 2>/dev/null || true
|
||||
done
|
||||
|
||||
echo "[INFO] Removing chroot script if exists..."
|
||||
sudo rm -f "$ROOTFS_DIR/alpine-base_pt2.sh" 2>/dev/null || true
|
||||
echo "[INFO] Cleaning up chroot script..."
|
||||
sudo rm -f "$ROOTFS_DIR/alpine-base_pt2.sh"
|
||||
|
||||
echo "[INFO] Rootfs size:"
|
||||
du -sh "$ROOTFS_DIR"
|
||||
|
||||
echo "[INFO] Creating compressed base image tarball..."
|
||||
echo "[INFO] Creating tarball: $TARBALL"
|
||||
sudo tar -czf "$TARBALL" -C "$ROOTFS_DIR" .
|
||||
|
||||
echo "[INFO] Tarball size:"
|
||||
du -sh "$TARBALL"
|
||||
|
||||
echo "[INFO] Tarball ready for CI to upload: $TARBALL"
|
||||
echo "[INFO] Tarball ready for CI: $TARBALL"
|
||||
Reference in New Issue
Block a user