Skip to content

Commit

Permalink
Merge pull request #5790 from grom72/test-runtests-instead-of-make-check
Browse files Browse the repository at this point in the history
common: use RUNTESTS.* instead of make (py)check
  • Loading branch information
janekmi authored Jul 10, 2023
2 parents 8f69bed + 604e22c commit f0815d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pmem_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [[self-hosted, rhel],[self-hosted, opensuse]]
config: ['debug', 'nondebug', 'static_debug', 'static_nondebug']
build: ['debug', 'nondebug', 'static_debug', 'static_nondebug']
env:
WORKDIR: utils/gha-runners

Expand All @@ -34,8 +34,8 @@ jobs:
- name: Create testconfig files
run: ./$WORKDIR/create-testconfig.sh

- name: Run tests check
run: make check TEST_BUILD=${{ matrix.config }}
- name: Run tests (Bash)
run: cd src/test/ && ./RUNTESTS.sh -b ${{ matrix.build }}

- name: Run tests pycheck
run: make pycheck TEST_BUILD=${{ matrix.config }}
- name: Run tests (Python)
run: cd src/test/ && ./RUNTESTS.py -b ${{ matrix.build }}

0 comments on commit f0815d4

Please sign in to comment.