feat: 添加conan包构建测试

This commit is contained in:
2025-11-07 22:12:45 +08:00
parent 0aa3bf3473
commit c7a647f48a
3 changed files with 47 additions and 0 deletions

26
test_package/conanfile.py Normal file
View File

@@ -0,0 +1,26 @@
import os
from conan import ConanFile
from conan.tools.cmake import CMake, cmake_layout
from conan.tools.build import can_run
class LoggingTestConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
generators = "CMakeDeps", "CMakeToolchain"
def requirements(self):
self.requires(self.tested_reference_str)
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def layout(self):
cmake_layout(self)
def test(self):
if can_run(self):
cmd = os.path.join(self.cpp.build.bindir, "LoggingTest")
self.run(cmd, env="conanrun")