Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 24 additions & 14 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,42 @@ 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
gap-version:
- 'devel'
- '4.15'
- '4.14'
- '4.13'
- '4.12'

steps:
- uses: actions/checkout@v6
- name: 'Install additional dependencies'
run: |
sudo apt-get update
sudo apt-get install polymake singular graphviz
- uses: gap-actions/setup-gap@v2
- uses: gap-actions/setup-gap@v3
with:
GAP_PKGS_TO_CLONE: "polymaking hapcryst" # We need >= 0.8.4 and 0.1.13 to support polymake 4.0
GAP_PKGS_TO_BUILD: "io profiling nq"
GAPBRANCH: ${{ matrix.gap-branch }}
- uses: gap-actions/build-pkg@v1
- uses: gap-actions/run-pkg-tests@v3
- uses: gap-actions/process-coverage@v2
gap-version: ${{ matrix.gap-version }}
- shell: bash
run: |
# Install GAP packages via PackageManager
gap -c 'LoadPackage("PackageManager");
InstallPackage("polymaking");
InstallPackage("hapcryst");
InstallPackage("nq");
InstallPackage("io");
QUIT;'
- uses: gap-actions/build-pkg@v2
- uses: gap-actions/run-pkg-tests@v4
#- uses: gap-actions/run-pkg-tests@v4
# with:
# mode: onlyneeded # FIXME: disabled because the tests depend on too many optional packages
- uses: gap-actions/process-coverage@v3
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ SetPackageInfo( rec(
[ "aclib", ">=1.1" ],
[ "nq", ">=1.1" ],
[ "SmallGrp", ">=1.1" ],
[ "Polymaking", ">=0.8.4"],
],
SuggestedOtherPackages := [
[ "homology", ">=0.0" ],
[ "edim", ">=1.2.2" ],
[ "singular", ">=06.07.23" ],
[ "congruence", ">=0,0" ],
[ "HAPcryst", ">=0.1.0" ],
[ "Polymaking", ">=0.8.4"],
[ "xmod", ">0.0" ],
[ "laguna", ">0.0"]
],
Expand Down
Loading