Bump dependencies and run tests in parallel#159
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates Conan dependencies (homestore and sisl) to newer compatible ranges, switches requirements to track stable releases (by removing the @oss/master channel suffix), and configures ctest to run test binaries in parallel during the Conan build.
Changes:
- Bumped package version to
5.1.0and updated dependency ranges (homestore^7.5, sisl^13.2), removing@oss/master. - Set
CTEST_PARALLEL_LEVELfromtools.build:jobs(default3) before invokingcmake.test().
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
101
to
103
| jobs = self.conf.get("tools.build:jobs", default=3) | ||
| os.environ["CTEST_PARALLEL_LEVEL"] = str(jobs) | ||
| cmake.test() |
Update homestore to ^7.5, sisl to ^13.2, and drop the @oss/master channel suffix from all conan requirements to track stable releases. Set CTEST_PARALLEL_LEVEL from tools.build:jobs (default 3) so ctest runs all three test binaries concurrently during conan build. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
ac45aa7 to
7dbb471
Compare
Comment on lines
+102
to
+103
| jobs = self.conf.get("tools.build:jobs", default=3) | ||
| os.environ["CTEST_PARALLEL_LEVEL"] = str(jobs) |
Comment on lines
102
to
104
| jobs = self.conf.get("tools.build:jobs", default=3) | ||
| os.environ["CTEST_PARALLEL_LEVEL"] = str(jobs) | ||
| cmake.test() |
Replace the global os.environ mutation with Conan's Environment helper, scoping CTEST_PARALLEL_LEVEL to just the cmake.test() call so it does not leak into subsequent recipe steps. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Switch all build_dependencies workflow references from rolling master/main branches to pinned stable branches: - sisl: master → stable/v13.x - nuraft_mesg: main → stable/v4.x - iomanager: master → stable/v12.x - homestore: master → stable/v7.x Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Update all ebay/sisl action refs from @master to @stable/v13.x, nuraft_mesg checkout from main to stable/v4.x, and HomeStore checkout from master to stable/v7.x. Drop --user oss --channel flags from conan export commands to match the channel-less requirements in conanfile.py. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
ede0d9b to
37ff904
Compare
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.
Update homestore to ^7.5, sisl to ^13.2, and drop the @oss/master channel suffix from all conan requirements to track stable releases.
Set CTEST_PARALLEL_LEVEL from tools.build:jobs (default 3) so ctest runs all three test binaries concurrently during conan build.