Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 1 addition & 6 deletions .github/workflows/os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ on:
# Every day at 3:30 AM UTC
- cron: 30 3 * * *

env:
DIGRAPHS_LIB: digraphs-lib-0.7

concurrency:
# Group by workflow and ref; the last component ensures that for pull requests
# we limit to one concurrent job, but for the main/stable branches we don't
Expand Down Expand Up @@ -91,9 +88,7 @@ jobs:
with:
ABI: ${{ matrix.ABI }}
- name: Install digraphs-lib . . .
run: |
curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${{ env.DIGRAPHS_LIB }}.tar.gz"
tar xf "${{ env.DIGRAPHS_LIB }}.tar.gz"
run: git clone https://github.com/digraphs/digraphs-lib.git
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess we could also use actions/checkout@v5 here, with the path digraphs-lib. But this seems fine.

- name: Run DigraphsTestInstall . . .
uses: gap-actions/run-pkg-tests@v4
with:
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ on:
# Every day at 3:30 AM UTC
- cron: 30 3 * * *

env:
DIGRAPHS_LIB: digraphs-lib-0.7

concurrency:
# Group by workflow and ref; the last component ensures that for pull requests
# we limit to one concurrent job, but for the main/stable branches we don't
Expand Down Expand Up @@ -68,9 +65,7 @@ jobs:
- name: Build Digraphs . . .
uses: gap-actions/build-pkg@v2
- name: Install digraphs-lib . . .
run: |
curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${{ env.DIGRAPHS_LIB }}.tar.gz"
tar xf "${{ env.DIGRAPHS_LIB }}.tar.gz"
run: git clone https://github.com/digraphs/digraphs-lib.git
- name: Run DigraphsTestInstall . . .
uses: gap-actions/run-pkg-tests@v4
with:
Expand Down
Loading