From 4c75d467eddd1b638312524c534ad63715bc7648 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sat, 6 Jan 2024 08:51:01 +0100 Subject: [PATCH] ci: building C++ modules enabled for clang-17 and apple-clang-15 --- .github/workflows/ci-conan.yml | 4 ++-- .github/workflows/ci-test-package-cmake.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index b6f6254c..58597a85 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -102,7 +102,7 @@ jobs: cxx: "clang++-17", }, lib: "libc++", - conan-config: "", + conan-config: "-o cxx_modules=True", } - { name: "Apple Clang 15", @@ -114,7 +114,7 @@ jobs: cc: "clang", cxx: "clang++", }, - conan-config: "", + conan-config: "-o cxx_modules=True", } build_type: ["Release", "Debug"] diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index ea9afa96..5670b0e1 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -98,7 +98,7 @@ jobs: cxx: "clang++-17", }, lib: "libc++", - conan-config: "", + conan-config: "-o cxx_modules=True", } - { name: "Apple Clang 15", @@ -110,7 +110,7 @@ jobs: cc: "clang", cxx: "clang++", }, - conan-config: "", + conan-config: "-o cxx_modules=True", } build_type: ["Release", "Debug"]