Taking an additional stab by modifying parallelism.

This commit is contained in:
Ward Fisher 2024-07-16 11:03:39 -06:00
parent 85e5d11374
commit 15c2e25f73

View File

@ -81,12 +81,12 @@ jobs:
- name: (Autotools) Build tests
timeout-minutes: 30
run: |
make check -j 8 TESTS="" SHELL=/bin/dash
make check -j$(nproc) TESTS="" SHELL=/bin/dash
- name: (Autotools) Run tests
timeout-minutes: 30
run: |
make check -j 8 SHELL=/bin/dash
make check -j$(nproc) SHELL=/bin/dash
build-and-test-cmake:
name: Cygwin-based CMake tests