diff --git a/.github/workflows/pmem_long.yml b/.github/workflows/pmem_long.yml index 38d471c8db4..6324501d182 100644 --- a/.github/workflows/pmem_long.yml +++ b/.github/workflows/pmem_long.yml @@ -18,14 +18,8 @@ jobs: fail-fast: false matrix: os: [[self-hosted, rhel],[self-hosted, opensuse]] - config: ['RUNTESTS.sh -t long -b debug', - 'RUNTESTS.sh -t long -b nondebug', - 'RUNTESTS.sh -t long -b static_debug', - 'RUNTESTS.sh -t long -b static_nondebug', - 'RUNTESTS.py -t long -b debug', - 'RUNTESTS.py -t long -b nondebug', - 'RUNTESTS.py -t long -b static_debug', - 'RUNTESTS.py -t long -b static_nondebug'] + script: ['sh', 'py'] + build: [ 'debug', 'nondebug', 'static_debug', 'static_nondebug'] env: WORKDIR: utils/gha-runners @@ -44,4 +38,4 @@ jobs: run: ./$WORKDIR/create-testconfig.sh - name: Run tests - run: cd src/test/ && ./${{ matrix.config }} + run: cd src/test/ && ./RUNTESTS.${{ matrix.script }} -t long -b ${{ matrix.build }}