From 93bf0af3480b0ce69f88ae609c68b828dfa6a0ff Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Mon, 5 Feb 2024 12:49:47 +0200 Subject: [PATCH] ci: Reclaim some of the used space Reclaim some storage space in the middle of the CI job that builds and installs Dangerzone in Fedora. The reason is that previously, we encountered an issues with CI runners running out of space. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be71a50..d8f2a27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -192,6 +192,12 @@ jobs: ./dev_scripts/env.py --distro fedora --version ${{ matrix.version }} \ run --dev --no-gui ./dangerzone/install/linux/build-rpm.py + # Reclaim some space in this step, now that the dev environment is no + # longer necessary. Previously, we encountered out-of-space issues while + # running this CI job. + - name: Reclaim some storage space + run: podman system reset -f + - name: Build end-user environment run: | ./dev_scripts/env.py --distro fedora --version ${{ matrix.version }} \