From 46c377e88c10d4d8693540845f23c295ad136a41 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Mon, 8 Jan 2024 14:17:44 +0100 Subject: [PATCH] ci: `cxx_modules` changed to text --- .github/workflows/ci-conan.yml | 10 +++++----- .github/workflows/ci-test-package-cmake.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index e0150575..059e6dc4 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -64,7 +64,7 @@ jobs: cc: "gcc-12", cxx: "g++-12", }, - cxx_modules: False, + cxx_modules: "False", conan-config: "", } - { @@ -77,7 +77,7 @@ jobs: cc: "gcc-13", cxx: "g++-13", }, - cxx_modules: False, + cxx_modules: "False", conan-config: "", } - { @@ -91,7 +91,7 @@ jobs: cxx: "clang++-16", }, lib: "libc++", - cxx_modules: False, + cxx_modules: "False", conan-config: "", } - { @@ -105,7 +105,7 @@ jobs: cxx: "clang++-17", }, lib: "libc++", - cxx_modules: True, + cxx_modules: "True", conan-config: "", } - { @@ -118,7 +118,7 @@ jobs: cc: "clang", cxx: "clang++", }, - cxx_modules: False, + cxx_modules: "False", conan-config: "", } build_type: ["Release", "Debug"] diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index 544a8074..ded4ab93 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -63,7 +63,7 @@ jobs: cc: "gcc-12", cxx: "g++-12", }, - cxx_modules: False, + cxx_modules: "False", } - { name: "GCC-13", @@ -75,7 +75,7 @@ jobs: cc: "gcc-13", cxx: "g++-13", }, - cxx_modules: False, + cxx_modules: "False", } - { name: "Clang-16", @@ -88,7 +88,7 @@ jobs: cxx: "clang++-16", }, lib: "libc++", - cxx_modules: False, + cxx_modules: "False", } - { name: "Clang-17", @@ -101,7 +101,7 @@ jobs: cxx: "clang++-17", }, lib: "libc++", - cxx_modules: True, + cxx_modules: "True", } - { name: "Apple Clang 15", @@ -113,7 +113,7 @@ jobs: cc: "clang", cxx: "clang++", }, - cxx_modules: False, + cxx_modules: "False", } build_type: ["Release", "Debug"]