From fad4e11cc9f27719b6b5d637a5a0965c73824656 Mon Sep 17 00:00:00 2001 From: stertooy <5571903+stertooy@users.noreply.github.com> Date: Fri, 17 Oct 2025 16:57:35 +0200 Subject: [PATCH 1/2] Split tests with and without OnlyNeeded to avoid disk space problems on runners --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ee241bd..0f415a6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,11 +18,12 @@ concurrency: jobs: # The CI test job test: - name: ${{ matrix.gap-branch }} + name: "${{ matrix.gap-branch }} (only-needed: ${{ matrix.only-needed }})" runs-on: ubuntu-latest strategy: fail-fast: false matrix: + only-needed: [ "true", "false" ] gap-branch: - master - stable-4.15 @@ -39,10 +40,9 @@ jobs: with: GAPBRANCH: ${{ matrix.gap-branch }} - uses: gap-actions/build-pkg@v1 - - uses: gap-actions/run-pkg-tests@v3 - uses: gap-actions/run-pkg-tests@v3 with: - only-needed: true + only-needed: ${{ matrix.only-needed }} - uses: gap-actions/process-coverage@v2 - uses: codecov/codecov-action@v5 with: From 2b1d21e137caac538216d590684f83534edc074d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 18 Oct 2025 01:37:47 +0200 Subject: [PATCH 2/2] Apply suggestions from code review --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0f415a6..27218d8 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - only-needed: [ "true", "false" ] + only-needed: [ "true", "false" ] # need to split it to avoid disk storage issues gap-branch: - master - stable-4.15