Skip to content

Commit

Permalink
ci: clone graphviz
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed May 10, 2024
1 parent 443ff11 commit d4b6e10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
19 changes: 3 additions & 16 deletions .github/workflows/gap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,10 @@ jobs:
- stable-4.11
- stable-4.12
- stable-4.13
pkgs-to-clone:
- NautyTracesInterface
ABI: ['']

include:
- gap-branch: stable-4.10
os: ubuntu
- gap-branch: master
pkgs-to-clone: "NautyTracesInterface"
os: macos
- gap-branch: master
os: ubuntu
Expand All @@ -49,7 +44,7 @@ jobs:
- name: "Install GAP and clone/compile necessary packages"
uses: gap-actions/setup-gap@v2
with:
GAP_PKGS_TO_CLONE: "${{ matrix.pkgs-to-clone }}"
GAP_PKGS_TO_CLONE: "NautyTracesInterface digraphs/graphviz"
GAP_PKGS_TO_BUILD: "io orb profiling grape NautyTracesInterface datastructures"
GAPBRANCH: ${{ matrix.gap-branch }}
ABI: ${{ matrix.ABI }}
Expand All @@ -61,16 +56,6 @@ jobs:
run: |
curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${{ env.DIGRAPHS_LIB }}.tar.gz"
tar xf "${{ env.DIGRAPHS_LIB }}.tar.gz"
- name: "Clone datastructures v0.3.0"
if: ${{ matrix.gap-branch == 'stable-4.10' }}
run: |
rm -rf $HOME/gap/pkg/datastructures
cd $HOME/gap/pkg/
git clone https://github.com/gap-packages/datastructures.git datastructures
cd datastructures
git checkout v0.3.0
./configure
make
- name: "Run DigraphsTestInstall"
uses: gap-actions/run-pkg-tests@v2
with:
Expand Down Expand Up @@ -101,6 +86,7 @@ jobs:
- uses: gap-actions/setup-gap@cygwin-v2
with:
GAP_PKGS_TO_BUILD: "io orb profiling grape datastructures"
GAP_PKGS_TO_CLONE: "digraphs/graphviz"
- uses: gap-actions/build-pkg@cygwin-v1
- name: "Install digraphs-lib"
run: |
Expand Down Expand Up @@ -135,6 +121,7 @@ jobs:
uses: gap-actions/setup-gap@v2
with:
GAP_PKGS_TO_BUILD: "io orb profiling grape datastructures"
GAP_PKGS_TO_CLONE: "digraphs/graphviz"
- name: "Build Digraphs"
uses: gap-actions/build-pkg@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "1.7.1">
## <!ENTITY GAPVERS "4.10.0">
## <!ENTITY GAPVERS "4.11.0">
## <!ENTITY GRAPEVERS "4.8.1">
## <!ENTITY IOVERS "4.5.1">
## <!ENTITY ORBVERS "4.8.2">
Expand Down Expand Up @@ -388,7 +388,7 @@ PackageDoc := rec(
),

Dependencies := rec(
GAP := ">=4.10.0",
GAP := ">=4.11.0",
NeededOtherPackages := [["io", ">=4.5.1"],
["orb", ">=4.8.2"],
["graphviz", ">=0.0.0"],
Expand Down

0 comments on commit d4b6e10

Please sign in to comment.