Skip to content

Commit d9bdf4b

Browse files
committed
ci: Place container storage inside work volume
This commit updates the CI workflow to explicitly configure the Podman container storage to be inside the runner work volume (`__w`), which is guaranteed to have at least 100GB available. The default container storage path is `/var/lib/containers/storage`, which resides in the Docker storage volume that has no free space guarantees. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 0e26968 commit d9bdf4b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ jobs:
4646
builder: zephyr-runner-v2-linux-arm64-4xlarge
4747

4848
steps:
49+
- name: Configure container storage
50+
run: |
51+
sed -i 's/graphroot = .*/graphroot = "\/__w\/container_storage"/' /etc/containers/storage.conf
52+
mkdir -p /__w/container_storage
53+
4954
- name: Checkout
5055
uses: actions/checkout@v4
5156

0 commit comments

Comments
 (0)