Skip to content

Commit

Permalink
Merge 1c9ba7a into 7f6436e
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfwilson authored Apr 10, 2021
2 parents 7f6436e + 1c9ba7a commit 0bb1a4a
Showing 1 changed file with 10 additions and 4 deletions.
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

0 comments on commit 0bb1a4a

Please sign in to comment.