Skip to content

Add CI job against GAP master #10

Add CI job against GAP master

Add CI job against GAP master #10

Workflow file for this run

name: CI with GAP
on:
push:
branches:
- 'master'
- 'release-*'
tags: '*'
pull_request:
concurrency:
# group by workflow and ref; the last slightly strange component ensures that for pull
# requests, we limit to 1 concurrent job, but for the default repository branch we don't
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref_name != github.event.repository.default_branch || github.run_number }}
# Cancel intermediate builds, but only if it is a pull request build.
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
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'
- 'v4.13.0' # latest release
julia-version:
- '1.6'
- '1.10'
- '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'

Check failure on line 41 in .github/workflows/gap.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/gap.yml

Invalid workflow file

You have an error in your yaml syntax on line 41
julia-arch: x64
os: macOS-latest
- julia-version: 'nightly'
julia-arch: x64
os: macOS-latest
steps:
- uses: actions/checkout@v4
- name: "Set up Julia"
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- name: Checkout GAP
uses: actions/checkout@v4
with:
repository: 'gap-system/gap'
ref: ${{ matrix.gap-version }}
path: '/tmp/GAPROOT'
- name: "Build GAP"
run: |
cd /tmp/GAPROOT
./autogen.sh
./configure
make -j`nproc`
- name: "Override bundled GAP"
run: |
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\")"