From f2e3c7e8e312ca14fa4f36cb3dfb658d21e534aa Mon Sep 17 00:00:00 2001 From: krzywon Date: Tue, 4 Jun 2024 10:46:39 -0400 Subject: [PATCH] Be less aggressive with disk space free-up --- .github/workflows/test.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9df1954..9b5a3c40 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,10 +22,6 @@ jobs: - name: Free Disk Space (Ubuntu) if: ${{ matrix.os == 'ubuntu-latest' }} uses: jlumbroso/free-disk-space@main - with: - # this might remove tools that are actually needed, - # when set to "true" but frees about 6 GB - tool-cache: true - name: setup apt dependencies for Linux if: ${{ matrix.os == 'ubuntu-latest' }} @@ -69,7 +65,7 @@ jobs: - name: check that the docs build (linux only) if: ${{ matrix.os == 'ubuntu-latest' }} run: | - -make -j 4 -C doc SPHINXOPTS="-W --keep-going -n" html + make -j 4 -C doc SPHINXOPTS="-W --keep-going -n" html - name: Publish samodels docs if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'}}