From 68120c79d4398dfd2219aca42fcf35a47c2b49f8 Mon Sep 17 00:00:00 2001 From: Alexander Vieth Date: Fri, 24 Jul 2026 09:58:51 +0200 Subject: [PATCH] CI: Remove Release build and install steps --- conanfile.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/conanfile.py b/conanfile.py index 73491bf..a8ba72b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -120,7 +120,6 @@ def build(self): cmake = self._configure_cmake() cmake.build(build_type="RelWithDebInfo") - cmake.build(build_type="Release") def package(self): package_dir = pathlib.Path(self.build_folder, "package") @@ -138,23 +137,9 @@ def package(self): relWithDebInfo_dir, ] ) - subprocess.run( - [ - "cmake", - "--install", - self.build_folder, - "--config", - "Release", - "--prefix", - release_dir, - ] - ) self.copy(pattern="*", src=package_dir) def package_info(self): self.cpp_info.relwithdebinfo.libdirs = ["RelWithDebInfo/lib"] self.cpp_info.relwithdebinfo.bindirs = ["RelWithDebInfo/Plugins", "RelWithDebInfo"] self.cpp_info.relwithdebinfo.includedirs = ["RelWithDebInfo/include", "RelWithDebInfo"] - self.cpp_info.release.libdirs = ["Release/lib"] - self.cpp_info.release.bindirs = ["Release/Plugins", "Release"] - self.cpp_info.release.includedirs = ["Release/include", "Release"]