Skip to content

Commit

Permalink
Full matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed May 25, 2024
1 parent 8eaea3c commit e5d20e9
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions .github/workflows/gap.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI with gap
name: CI with GAP

on:
push:
Expand All @@ -17,33 +17,30 @@ concurrency:

jobs:
test:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }}
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - GAP ${{ matrix.gap-version }}
runs-on: ${{ matrix.os }}
timeout-minutes: 20
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
strategy:
fail-fast: false
matrix:
gap-version:
# - 'master'
# - 'stable-4.13'
- 'master'
- 'stable-4.13'
- 'v4.13.0' # latest release
julia-version:
# - '1.6'
- '1.6'
- '1.10'
# - 'nightly'
- 'nightly'
julia-arch:
- x64
os:
- ubuntu-latest
# include:
# Add a few macOS jobs (not too many, the number we can run in parallel is limited)
# - julia-version: '1.10'
# julia-arch: x64
# os: macOS-latest
# - julia-version: 'nightly'
# julia-arch: x64
# os: macOS-latest
- macOS-latest
exclude:
# Remove a few macOS jobs (the number we can run in parallel is limited)
- julia-version: '1.6'
os: macOS-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -60,13 +57,14 @@ jobs:
path: 'GAPROOT'
- name: "Build GAP"
run: |
cd GAPROOT
mv GAPROOT /tmp/GAPROOT
cd /tmp/GAPROOT
./autogen.sh
./configure
make -j`nproc`
- name: "Override bundled GAP"
run: |
julia --proj=override etc/setup_override_dir.jl GAPROOT /tmp/gap_jll_override
julia --proj=override etc/setup_override_dir.jl /tmp/GAPROOT /tmp/gap_jll_override
- name: "Run tests"
run: |
julia --proj=override etc/run_with_override.jl /tmp/gap_jll_override --depwarn=error -e "using Pkg; Pkg.test(\"GAP\")"
Expand Down

0 comments on commit e5d20e9

Please sign in to comment.