From 5e59a4d66e98ea2711acce1827d19300a89727d6 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Fri, 31 May 2024 19:46:23 +0900 Subject: [PATCH] .github: workflows: Place container storage inside work volume for merge This commit updates the CI image merge job to place the Podman container storage inside the runner work volume in order to ensure that sufficient free space is available for the source images to be pulled. Refer to d9bdf4bf44c3e44ab23595b4d28539ff33c076c1 for more details. Signed-off-by: Stephanos Ioannidis --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a62329..6b73c1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -175,6 +175,11 @@ jobs: if: ${{ github.event_name != 'pull_request' }} steps: + - name: Configure container storage + run: | + sed -i 's/graphroot = .*/graphroot = "\/__w\/container_storage"/' /etc/containers/storage.conf + mkdir -p /__w/container_storage + - name: Login to DockerHub if: ${{ github.event_name != 'pull_request' }} uses: redhat-actions/podman-login@v1