CI: add --tmpfs for build directory to fix nested overlayfs in Docker

Docker's default overlayfs driver doesn't support nested overlayfs
upperdirs. A tmpfs at the build location sidesteps the issue.
This commit is contained in:
2026-06-27 18:29:06 +02:00
parent 38aea4c370
commit 0f8eb250e8
+1 -1
View File
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
container:
image: artixlinux/artixlinux:base
options: --privileged
options: --privileged --tmpfs /var/lib/artools/buildiso
steps:
- uses: actions/checkout@v4