Skip to content
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
25 changes: 14 additions & 11 deletions .github/workflows/extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
pull_request:
paths:
- ".VERSION"
- ".github/workflows/extended.yml"
schedule:
# Every day at 2:30 AM UTC
- cron: 30 2 * * *
Expand Down Expand Up @@ -43,6 +44,15 @@ jobs:
- name: "Install macOS dependencies"
if: ${{ runner.os == 'macOS' }}
run: brew install automake libtool
# Setup ccache, to speed up repeated compilation of the same binaries
# (i.e., GAP and the packages)
- name: "Setup ccache"
if: ${{ runner.os != 'Windows' }}
uses: Chocobo1/setup-ccache-action@v1
with:
update_packager_index: false
override_cache_key: ${{ runner.os }}-${{ matrix.gap-version }}-${{ matrix.ABI }}-${{ github.ref }}
override_cache_key_fallback: ${{ runner.os }}-${{ matrix.gap-version }}-${{ matrix.ABI }}
- name: "Install 32-bit Ubuntu packages"
if: ${{ runner.os == 'Linux' && matrix.ABI == '32' }}
run: |
Expand All @@ -56,20 +66,12 @@ jobs:
g++-multilib
)
sudo apt-get install "${packages[@]}"
# Setup ccache, to speed up repeated compilation of the same binaries
# (i.e., GAP and the packages)
- name: "Setup ccache"
if: ${{ runner.os != 'Windows' }}
uses: Chocobo1/setup-ccache-action@v1
with:
update_packager_index: false
override_cache_key: ${{ runner.os }}-${{ matrix.gap-version }}-${{ matrix.ABI }}-${{ github.ref }}
override_cache_key_fallback: ${{ runner.os }}-${{ matrix.gap-version }}-${{ matrix.ABI }}
- name: "Install GAP"
uses: gap-actions/setup-gap@v3
with:
ABI: ${{ matrix.ABI }}
gap-version: ${{ matrix.gap-version }}
env:
ABI: ${{ matrix.ABI }}
- name: "Build necessary GAP packages"
shell: bash
env:
Expand All @@ -80,7 +82,8 @@ jobs:
- name: "Build Semigroups"
uses: gap-actions/build-pkg@v2
with:
ABI: ${{ matrix.ABI }}
env:
ABI: ${{ matrix.ABI }}
CONFIGFLAGS: --disable-hpcombi
- name: "Run GAP's tst/teststandard.g"
uses: gap-actions/run-pkg-tests@v4
Expand Down
Loading