Make regress parallel friendly.

This commit is contained in:
Nicholas Marriott
2026-09-21 22:00:47 +01:00
parent cc81429d8a
commit f5c4998db3
8 changed files with 36 additions and 33 deletions

View File

@@ -72,14 +72,14 @@ jobs:
- name: build
run: |
sh autogen.sh
sh autogen.sh
./configure ${{ matrix.configure }}
${{ matrix.make }} -j"$(getconf _NPROCESSORS_ONLN)"
- name: test
run: |
cd regress
${{ matrix.make }}
${{ matrix.make }} -j"$(getconf _NPROCESSORS_ONLN)"
- name: logs
if: failure()