From a2375c013645f8563d03e07806b0f4b95bf1d6fb Mon Sep 17 00:00:00 2001 From: Vilius Sutkus '89 Date: Mon, 2 Sep 2024 18:54:38 +0300 Subject: [PATCH] Run full debug build for proper stacktraces. Disable clang --- .github/workflows/build_test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index dbf4d4ff..4e69e57a 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: include: - - { os: ubuntu-24.04, compiler: clang-18 } +# - { os: ubuntu-24.04, compiler: clang-18 } - { os: ubuntu-24.04, compiler: gcc-14 } # - { os: macos-13, compiler: clang-14 } # - { os: macos-14, compiler: armv8-clang-14 } @@ -50,7 +50,7 @@ jobs: - name: conan config run: conan config install .github/config/${{ matrix.os }}-${{ matrix.compiler }}/conan - name: conan install - run: conan install . --output-folder=build --build=never -s build_type=Release -s "&:build_type=Debug" + run: conan install . --output-folder=build --build=missing -s build_type=Debug - name: cache uses: actions/cache@v4 @@ -163,7 +163,7 @@ jobs: fail-fast: false matrix: include: - - { os: ubuntu-24.04, compiler: clang-18 } +# - { os: ubuntu-24.04, compiler: clang-18 } - { os: ubuntu-24.04, compiler: gcc-14 } # - { os: macos-13, compiler: clang-14 } # - { os: macos-14, compiler: armv8-clang-14 }