From e5464914e7eb0cd62550333829409adca9fb0bd5 Mon Sep 17 00:00:00 2001 From: Celestia Ludenberg Date: Sat, 27 Jun 2026 18:44:33 +0200 Subject: [PATCH] CI: bump tmpfs to 8G, fix artifact paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rootfs.img ran out of space on default-size tmpfs (3.5G). The KDE rootfs + squashfs output needs ~5-6G. Also fix artifact upload and IA upload paths — ISO_POOL defaults to $WORKSPACE_DIR/iso, not /var/lib/artools/buildiso/iso/. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3c50f8..2577e73 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest container: image: artixlinux/artixlinux:base - options: --privileged --tmpfs /var/lib/artools/buildiso:exec,suid,dev + options: --privileged --tmpfs /var/lib/artools/buildiso:exec,suid,dev,size=8G steps: - uses: actions/checkout@v4 @@ -55,7 +55,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: Antergos-NeXT-ISO - path: /var/lib/artools/buildiso/iso/ + path: ${{ github.workspace }}/iso/ - name: Upload to Internet Archive if: github.ref == 'refs/heads/master' @@ -71,7 +71,7 @@ jobs: secret = $IA_SECRET_KEY EOF - ISO_DIR="/var/lib/artools/buildiso/iso" + ISO_DIR="${{ github.workspace }}/iso" ISO=$(ls "$ISO_DIR"/antergos/*.iso 2>/dev/null | head -1) [[ -z "$ISO" || ! -f "$ISO" ]] && { echo "No ISO found"; exit 1; }