Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a macOS job to the GitHub Actions CI #96

Merged
merged 1 commit into from
Apr 10, 2021
Merged
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
14 changes: 10 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ on:
jobs:
# The CI test job
test:
name: ${{ matrix.gap-branch }} ${{ matrix.ABI }} - HPCGAP ${{ matrix.HPCGAP }}
runs-on: ubuntu-latest
name: ${{ matrix.os }} - GAP ${{ matrix.gap-branch }} ${{ matrix.ABI }} - HPCGAP ${{ matrix.HPCGAP }}
runs-on: ${{ matrix.os }}-latest
# Don't run this twice on PRs for branches pushed to the same repository
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu
gap-branch:
- master
- stable-4.11
Expand All @@ -23,17 +25,21 @@ jobs:
HPCGAP: ['no']
ABI: ['']
include:
- os: ubuntu-latest
- os: ubuntu
gap-branch: master
GAP_PKGS_TO_BUILD: ''
HPCGAP: 'yes'
ABI: ''
NO_COVERAGE: 'yes'
- os: ubuntu-latest
- os: ubuntu
gap-branch: master
GAP_PKGS_TO_BUILD: 'profiling'
HPCGAP: 'no'
ABI: 32
- os: macos
gap-branch: master
GAP_PKGS_TO_BUILD: 'profiling'
HPCGAP: 'no'

steps:
- uses: actions/checkout@v2
Expand Down