From 7e7d9c84288853e1258e890c6f341a6f09a9b966 Mon Sep 17 00:00:00 2001 From: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> Date: Tue, 25 Feb 2025 15:11:38 +0100 Subject: [PATCH 1/2] Try building with ClangCL --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee0512e6d..ff4646e43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: shell: bash run: | if [ "$RUNNER_OS" == "Windows" ]; then - cmake . -DBUILD_SHARED_LIBS=${{matrix.build-shared}} -A x64 + cmake . -DBUILD_SHARED_LIBS=${{matrix.build-shared}} -A x64 -T ClangCL cmake --build . elif [ "$RUNNER_OS" == "Linux" ]; then sudo apt-get -qq update From cc4733f4572e265ad1432d00cfc381a6dce93e75 Mon Sep 17 00:00:00 2001 From: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> Date: Tue, 25 Feb 2025 17:04:34 +0100 Subject: [PATCH 2/2] Actually build release version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff4646e43..cbe162963 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: run: | if [ "$RUNNER_OS" == "Windows" ]; then cmake . -DBUILD_SHARED_LIBS=${{matrix.build-shared}} -A x64 -T ClangCL - cmake --build . + cmake --build . --config Release elif [ "$RUNNER_OS" == "Linux" ]; then sudo apt-get -qq update sudo apt-get -qq install libxcb1-dev