CI: use multiple threads to run CMake tests - #1767
Merged
pwrobeldev merged 1 commit intoJul 2, 2025
Merged
Conversation
pwrobeldev
force-pushed
the
pwrobeldev/use-ctest-parallel-level-env-variable-for-cmake-tests
branch
from
July 2, 2025 06:49
ae7ed2f to
618160c
Compare
Contributor
Author
|
The historical data from executions without Some durations of running CMake tests -- three last executions of that job:
The usage of
The usage of 8 threads yields similar results to the initial durations:
The usage of 6 threads:
The usage of 4 threads:
The usage of 3 threads:
|
pwrobeldev
force-pushed
the
pwrobeldev/use-ctest-parallel-level-env-variable-for-cmake-tests
branch
2 times, most recently
from
July 2, 2025 07:14
38e0107 to
1163828
Compare
The step, which is responsible for running CMake tests on CI is extended to use multiple threads. This speeds up the execution. It is achieved via 'CTEST_PARALLEL_LEVEL' environment variable. Signed-off-by: Patryk Wrobel <183546751+pwrobeldev@users.noreply.github.com>
pwrobeldev
force-pushed
the
pwrobeldev/use-ctest-parallel-level-env-variable-for-cmake-tests
branch
from
July 2, 2025 07:29
1163828 to
ca5d539
Compare
Hsilgos
approved these changes
Jul 2, 2025
pwrobeldev
deleted the
pwrobeldev/use-ctest-parallel-level-env-variable-for-cmake-tests
branch
July 2, 2025 08:23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The step, which is responsible for running CMake tests on CI is
extended to use multiple threads. This speeds up the execution.
It is achieved via 'CTEST_PARALLEL_LEVEL' environment variable.