forked from libsemigroups/libsemigroups
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
167a5d8
commit db9aedb
Showing
4 changed files
with
88 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: "Downstream" | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- "main" | ||
- "stable-*.*" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
GAP: | ||
env: | ||
GAP_VERSION: "4.12.2" | ||
GAP_SEMIGROUPS_REPO: "semigroups" | ||
GAP_SEMIGROUPS_BRANCH: "stable-5.3" | ||
GAP: "gap -A -T --quiteonbreak" | ||
name: GAP ${{ env.GAP_VERSION }} / Semigroups (${{ env.GAP_SEMIGROUPS_REPO }}) / ${{ env.GAP_SEMIGROUPS_BRANCH }} / ubuntu / 64-bit | ||
runs-on: ubuntu-latest | ||
container: | ||
image: jamesdbmitchell/gap-docker-minimal:version-${{ env.GAP_VERSION }} | ||
options: --user root | ||
volumes: | ||
- ${{ github.workspace }}:/home/libsemigroups | ||
steps: | ||
- name: "Checkout libsemigroups" | ||
uses: actions/checkout@v3 | ||
- name: "Install git + autotools" | ||
run: | | ||
sudo apt-get --yes update | ||
sudo apt-get install git --yes | ||
sudo apt-get install pkg-config m4 libtool automake autoconf --yes | ||
sudo apt-get install libtool-bin --yes | ||
- name: "Setup ccache" | ||
uses: Chocobo1/setup-ccache-action@v1 | ||
with: | ||
update_packager_index: false | ||
override_cache_key: ${{ runner.os }}-v${{ env.GAP_VERSION }}-64-${{ github.ref }} | ||
override_cache_key_fallback: ${{ runner.os }}-v${{ env.GAP_VERSION }}-64 | ||
- name: "Clone the Semigroups GAP package" | ||
run: | | ||
rm -rf $HOME/inst/gap-$GAP_VERSION/pkg/semigroups-*.*.* | ||
cd $HOME/inst/gap-$GAP_VERSION/pkg | ||
git clone -b $GAP_SEMIGROUPS_BRANCH --depth=1 https://github.com/$GAP_SEMIGROUPS_REPO/Semigroups.git Semigroups | ||
cd Semigroups | ||
mv /home/libsemigroups . | ||
- name: "Build the Semigroups GAP package" | ||
run: | | ||
cd $HOME/inst/gap-$GAP_VERSION/pkg/Semigroups | ||
if [ -x libsemigroups/etc/version-number.sh ] && [ ! -f libsemigroups/.VERSION ]; then | ||
cd libsemigroups | ||
etc/version-number.sh > .TMP_VERSION | ||
mv .TMP_VERSION .VERSION | ||
cd .. | ||
fi | ||
./prerequisites.sh | ||
./autogen.sh | ||
./configure --disable-hpcombi | ||
make -j4 | ||
- name: "Install Semigroups GAP package dependencies" | ||
run: | | ||
echo "LoadPackage(\"PackageManager\"); QuitGap(InstallPackage(\"autodoc\", false));" | $GAP | ||
echo "LoadPackage(\"PackageManager\"); QuitGap(InstallPackage(\"datastructures\", false));" | $GAP | ||
echo "LoadPackage(\"PackageManager\"); QuitGap(InstallPackage(\"digraphs\", false));" | $GAP | ||
echo "LoadPackage(\"PackageManager\"); QuitGap(InstallPackage(\"genss\", false));" | $GAP | ||
echo "LoadPackage(\"PackageManager\"); QuitGap(InstallPackage(\"images\", false));" | $GAP | ||
echo "LoadPackage(\"PackageManager\"); QuitGap(InstallPackage(\"orb\", false) and CompilePackage(\"orb\"));" | $GAP | ||
- name: "Run Semigroups GAP package workspace tests" | ||
run: | | ||
cd /home/gap/inst/gap-$GAP_VERSION/pkg/Semigroups | ||
$GAP tst/workspaces/save.g | ||
$GAP -L tst/workspaces/test-output.w tst/workspaces/load.g | ||
- name: "Run Semigroups GAP package standard tests" | ||
run: | | ||
cd /home/gap/inst/gap-${{ env.GAP_VERSION }}/pkg/Semigroups | ||
$GAP tst/teststandard.g | ||
- name: "Run GAP testinstall" | ||
run: | | ||
$GAP ci/run-gap-testinstall.g | ||
- name: "Run GAP teststandard" | ||
run: | | ||
$GAP ci/run-gap-teststandard.g | ||
- name: "Run GAP testbugfix" | ||
run: | | ||
$GAP ci/run-gap-testbugfix.g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.