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
4 changes: 2 additions & 2 deletions .github/workflows/config_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
with:
CONFIGFLAGS: ${{ matrix.bliss }} ${{ matrix.planarity }}
- name: Run Digraphs package's tst/teststandard.g . . .
uses: gap-actions/run-pkg-tests@v2
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true

Expand Down Expand Up @@ -101,4 +101,4 @@ jobs:
with:
CONFIGFLAGS: ${{ matrix.debug }} ${{ matrix.without-intrinsics }} ${{ matrix.warnings && '--enable-compile-warnings WARNING_CXXFLAGS="-Werror" WARNING_CFLAGS="-Werror"' || '' }}
- name: Run Digraphs package's tst/teststandard.g . . .
uses: gap-actions/run-pkg-tests@v2
uses: gap-actions/run-pkg-tests@v3
12 changes: 4 additions & 8 deletions .github/workflows/os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,26 +58,22 @@ jobs:
curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${{ env.DIGRAPHS_LIB }}.tar.gz"
tar xf "${{ env.DIGRAPHS_LIB }}.tar.gz"
- name: Run DigraphsTestInstall . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/install.g
- name: Run DigraphsTestStandard . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/standard.g
- name: Run DigraphsTestManualExamples . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/examples.g
- name: Run DigraphsTestExtreme . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/extreme.g
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,29 +59,25 @@ jobs:
curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${{ env.DIGRAPHS_LIB }}.tar.gz"
tar xf "${{ env.DIGRAPHS_LIB }}.tar.gz"
- name: Run DigraphsTestInstall . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/install.g
only-needed: ${{ matrix.only-needed }}
- name: Run DigraphsTestStandard . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/standard.g
only-needed: ${{ matrix.only-needed }}
- name: Run DigraphsTestManualExamples . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/examples.g
only-needed: ${{ matrix.only-needed }}
- name: Run DigraphsTestExtreme . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/extreme.g
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,13 @@ jobs:
- name: Build Digraphs . . .
uses: gap-actions/build-pkg@v1
- name: Run DigraphsTestInstall . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/install.g
pre-gap: ${{ env.VALGRIND }}
- name: Run DigraphsTestStandard . . .
# TODO: Replace below with gap-actions/run-pkg-tests@v2 if the functionality gets added
uses: ./.github/actions/run-pkg-tests
uses: gap-actions/run-pkg-tests@v3
with:
NO_COVERAGE: true
GAP_TESTFILE: tst/github_actions/standard.g
Expand Down
Loading