Draft
Conversation
Introduce CMake-native + Conan 2 workflow to replace build.py-driven FetchContent/ExternalProject approach. - CMakeLists.txt: guard FetchContent behind TRITON_SKIP_THIRD_PARTY_FETCH; add TRITON_COMMON_ENABLE_GRPC / METRICS option guards - protobuf/CMakeLists.txt: use protobuf::libprotobuf Conan imported target - src/test/CMakeLists.txt: use Conan imported targets (re2::re2, protobuf::libprotobuf) instead of Find-module variables - CMakePresets.json / cmake/CMakePresets.json: configure + build presets for Release and Debug on Linux x86_64 and aarch64 - conanfile.py: Conan package descriptor for triton-common - profiles/: GCC 13 host/build profiles (release + debug) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced Apr 13, 2026
build: replace build.py with Conan 2 + CMakePresets build system
triton-inference-server/server#8734
Draft
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.
triton-inference-server/backend#123
triton-inference-server/core#490
triton-inference-server/server#8734
triton-inference-server/third_party#74
Description
Introduces Conan 2 package manager and CMakePresets-based build system for dependency management in the common repository, as part of the broader Triton CMake/Conan migration (TRI-122).
Changes
Affected Files