Add mult-digraph check #15
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
name: Valgrind | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
push: | |
paths: | |
- src/*.[hc] | |
pull_request: | |
paths: | |
- src/*.[hc] | |
env: | |
VALGRIND: valgrind --trace-children=yes --leak-check=full --error-exitcode=1 | |
NO_COVERAGE: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-valgrind: | |
name: Ubuntu / GAP stable-4.13 / valgrind | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Output g++ version . . . | |
run: g++ --version | |
- name: Install Valgrind . . . | |
run: sudo apt-get install valgrind | |
- name: Install GAP and clone/compile necessary packages . . . | |
uses: gap-actions/setup-gap@v2 | |
with: | |
GAP_PKGS_TO_CLONE: NautyTracesInterface digraphs/graphviz | |
GAP_PKGS_TO_BUILD: io orb datastructures grape NautyTracesInterface | |
GAPBRANCH: stable-4.13 | |
CONFIGFLAGS: --enable-valgrind | |
- 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 | |
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 | |
with: | |
NO_COVERAGE: true | |
GAP_TESTFILE: tst/github_actions/standard.g | |
pre-gap: ${{ env.VALGRIND }} |