From f5d6973901aeb773e9b5037ec821c6f8f7a22a88 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 12 May 2026 10:19:58 +0200 Subject: [PATCH] feat: use vfs --- .woodpecker/build.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 75f2e54..7a863b2 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -9,8 +9,11 @@ steps: # build yamllint container - name: "build" image: "cr.simoncor.net/quay/buildah/stable:latest" + environment: + BUILDAH_ISOLATION: "chroot" + STORAGE_DRIVER: "vfs" commands: - "VERSION=$(grep -oP '(?<=yamllint==)[0-9.]+' Dockerfile.linux.amd64)" - - "buildah bud -t yamllint -f Dockerfile.linux.amd64 ." - - "buildah tag yamllint cr.simoncor.net/yamllint:${VERSION}" - - "buildah push cr.simoncor.net/yamllint:${VERSION}" + - "buildah --storage-driver vfs build --isolation chroot -t yamllint -f Dockerfile.linux.amd64 ." + - "buildah --storage-driver vfs tag yamllint cr.simoncor.net/yamllint:${VERSION}" + - "buildah --storage-driver vfs push cr.simoncor.net/yamllint:${VERSION}"