chore(CI): Run tests in parallel

Faster, with the bonus of catching unexpected dependencies between tests.
pull/6503/head
Anthony Bilinski 2022-03-03 03:52:42 -08:00
parent 4fcc2251f4
commit 8a7461fc16
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ build_qtox() {
-DCMAKE_PREFIX_PATH="$(brew --prefix qt5)" .
make -j$(sysctl -n hw.ncpu)
export CTEST_OUTPUT_ON_FAILURE=1
make test
ctest -j$(sysctl -n hw.ncpu)
make install
}

View File

@ -72,4 +72,4 @@ else
fi
cmake --build . -- -j $(nproc)
cmake --build . --target test
ctest -j$(nproc)

View File

@ -116,7 +116,7 @@ then
export WINEPATH='/export;/windows/bin'
export CTEST_OUTPUT_ON_FAILURE=1
export PATH="$PATH:/opt/wine-stable/bin"
make test
ctest -j$(nproc)
fi
set -u