Skip to content

PackageInfo.g: Remove reference to obsolete fields #38

PackageInfo.g: Remove reference to obsolete fields

PackageInfo.g: Remove reference to obsolete fields #38

Workflow file for this run

name: CI (advanced)
# Trigger the workflow on push or pull request
on:
push:
branches:
- master
- main
pull_request:
# the `concurrency` settings ensure that not too many CI jobs run in parallel
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 master branch we don't
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
# Cancel intermediate builds, but only if it is a pull request build.
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
# The CI test job
test:
name: ${{ matrix.gap-branch }} ${{ matrix.ABI }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
gap-branch:
- master
- stable-4.12
- stable-4.11
- stable-4.10
- stable-4.9
ABI: ['']
include:
- gap-branch: master # add one test in 32bit mode -- nostly for packages with kernel extension
ABI: 32
steps:
- uses: actions/checkout@v3
- uses: gap-actions/setup-gap@v2
with:
GAP_PKGS_TO_CLONE: "orb"
GAP_PKGS_TO_BUILD: "io profiling orb" # io & profiling must always be built for coverage tracking
GAPBRANCH: ${{ matrix.gap-branch }}
ABI: ${{ matrix.ABI }}
- name: 'Install additional dependencies'
run: |
if [ "${{matrix.ABI}}" = "32" ]; then
sudo apt-get install libmpfr-dev:i386 # you can remove this if you don't need 32 bit builds
else
sudo apt-get install libmpfr-dev
fi
- uses: gap-actions/build-pkg@v1
with:
ABI: ${{ matrix.ABI }}
- uses: gap-actions/run-pkg-tests@v2
- uses: gap-actions/process-coverage@v2
- uses: codecov/codecov-action@v3
# The documentation job
manual:
name: Build manuals
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gap-actions/setup-gap@v2
- uses: gap-actions/build-pkg-docs@v1
with:
use-latex: 'true'
- name: 'Upload documentation'
uses: actions/upload-artifact@v3
with:
name: manual
path: ./doc/manual.pdf
if-no-files-found: error