From 06c582b895872da5da771ce09b3bfcb86bc8d61c Mon Sep 17 00:00:00 2001 From: Daniel Wolff Date: Wed, 26 Feb 2025 11:38:04 +0100 Subject: [PATCH] fix: Workflow quick-fix by @gilrrei as proposed in #140 --- .github/workflows/tests_local.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests_local.yml b/.github/workflows/tests_local.yml index bbe6a2c69..30162c07d 100644 --- a/.github/workflows/tests_local.yml +++ b/.github/workflows/tests_local.yml @@ -32,6 +32,11 @@ jobs: - name: Create links to 4C run: | ln -s /home/user/4C/build/ config/4C_build + - name: Delete unnecessary 4C docker image stuff + run: | + rm -rf /home/user/4C/.git + find /home/user/4C -mindepth 1 -maxdepth 1 -type d -not -name build -exec rm -rf '{}' \; + sudo apt-get clean - name: Create Python environment id: environment uses: ./.github/actions/create_python_environment