Skip to content

Commit

Permalink
Run CTest testsuite in parallel at GitHub Actions [skip appveyor]
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeu committed Nov 23, 2024
1 parent d6d397f commit 12b0e74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
cmake --build build -- -j8
fi
- name: Test
run: ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }}
run: ctest --no-tests=error --test-dir build --build-config ${{ matrix.configuration }} --parallel 8

build-openbsd:
name: openbsd-clang
Expand All @@ -100,7 +100,7 @@ jobs:
set -e
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DMATIO_SHARED=OFF -DMATIO_MAT73=OFF
cmake --build build -- -j8
ctest --no-tests=error --test-dir build --build-config Release
ctest --no-tests=error --test-dir build --build-config Release --parallel 8
build-solaris:
name: solaris-gcc
Expand All @@ -125,7 +125,7 @@ jobs:
mkdir build
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DMATIO_SHARED=OFF -DMATIO_MAT73=OFF
cmake --build build -- -j8
ctest --no-tests=error --test-dir build --build-config Release
ctest --no-tests=error --test-dir build --build-config Release --parallel 8
build-cygwin:
name: windows-cygwin
Expand Down

0 comments on commit 12b0e74

Please sign in to comment.