From 59c773acbf826e2f816103a2b701f42291aeec97 Mon Sep 17 00:00:00 2001 From: stertooy <5571903+stertooy@users.noreply.github.com> Date: Sat, 28 Mar 2026 15:56:25 +0100 Subject: [PATCH] Update `PackageInfo.g` and CI suite --- .github/workflows/CI.yml | 40 ++++++++++++++++++---------------------- PackageInfo.g | 1 + 2 files changed, 19 insertions(+), 22 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d1b83c9..474d0c3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,36 +19,32 @@ concurrency: jobs: # The CI test job test: - name: ${{ matrix.gap-branch }} + name: ${{ matrix.gap-version }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: - gap-branch: - - master - - stable-4.15 - - stable-4.14 - - stable-4.13 - - stable-4.12 - - stable-4.11 - - stable-4.10 - - stable-4.9 + gap-version: + - 'devel' + - '4.15' + - '4.14' + - '4.13' + - '4.12' + - '4.11' + - '4.10' + - '4.9' steps: - uses: actions/checkout@v6 - - name: 'Install additional dependencies' - run: | - sudo apt-get update - sudo apt-get install polymake - - uses: gap-actions/setup-gap@v2 + - uses: gap-actions/setup-gap@v3 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 + gap-version: ${{ matrix.gap-version }} + - uses: gap-actions/build-pkg@v3 + - uses: gap-actions/run-pkg-tests@v4 + - uses: gap-actions/run-pkg-tests@v4 with: - only-needed: true - - uses: gap-actions/process-coverage@v2 - - uses: codecov/codecov-action@v5 + mode: onlyneeded + - uses: gap-actions/process-coverage@v3 + - uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/PackageInfo.g b/PackageInfo.g index 852f49c..0ada72a 100644 --- a/PackageInfo.g +++ b/PackageInfo.g @@ -53,6 +53,7 @@ Dependencies := rec( GAP := ">=4.8", NeededOtherPackages := [], SuggestedOtherPackages := [], + NeededSystemPackages := rec( Ubuntu := [["polymake"]] ), ExternalConditions := ["polymake (https://www.polymake.org) must be installed"] ),