From 4131115ce9010255a7f148dbf977c3c450352a80 Mon Sep 17 00:00:00 2001 From: Dominik Berner Date: Mon, 13 Nov 2023 21:07:16 +0100 Subject: [PATCH] Debug output for conan --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13b00d01..20d684e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,6 +68,7 @@ jobs: - name: conan-profile run: | + conan --version conan profile detect --force if [ "${{ matrix.compiler-name-conan }}" != "" ]; then sed -i.bak -e 's/compiler=.*/compiler=${{ matrix.compiler-name-conan }}/g' ~/.conan2/profiles/default @@ -78,6 +79,7 @@ jobs: if [ "${{ matrix.compiler-cppstd }}" != "" ]; then sed -i.bak -e 's/compiler.cppstd=gnu[0-9]\+/compiler.cppstd=${{ matrix.compiler-cppstd }}/g' ~/.conan2/profiles/default fi + cat ~/.conan2/profiles/default shell: bash - name: cmake-configure-debug