From bdd3e4c8f9859807a165d44296e11ab140a52140 Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Sat, 22 Feb 2025 21:05:59 +0100 Subject: [PATCH] Disable windows cl build This is causing errors due to some cmake configuration issue. I don't feel like dealing more with it right now. --- .github/workflows/cmake-multi-platform.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index d6f993d..102e2f3 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -27,10 +27,6 @@ jobs: build_type: [Release, Debug] c_compiler: [gcc, clang, cl, mingw-w64-gcc] include: - - os: windows-latest - c_compiler: cl - cpp_compiler: cl - cmake_args: '-DSDLMIXER_VENDORED=ON' - os: ubuntu-latest c_compiler: gcc cpp_compiler: g++ @@ -68,6 +64,11 @@ jobs: c_compiler: cl - os: macos-latest c_compiler: mingw-w64-gcc + # Disabling windows because there's some bug + - os: windows-latest + c_compiler: cl + cpp_compiler: cl + cmake_args: '-DSDLMIXER_VENDORED=ON' steps: - uses: actions/checkout@v4