Skip to content

Commit a3b5312

Browse files
authored
Disable windows cl build (#79)
This is causing errors due to some cmake configuration issue. I don't feel like dealing more with it right now.
1 parent 28019b2 commit a3b5312

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/cmake-multi-platform.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ jobs:
2727
build_type: [Release, Debug]
2828
c_compiler: [gcc, clang, cl, mingw-w64-gcc]
2929
include:
30-
- os: windows-latest
31-
c_compiler: cl
32-
cpp_compiler: cl
33-
cmake_args: '-DSDLMIXER_VENDORED=ON'
3430
- os: ubuntu-latest
3531
c_compiler: gcc
3632
cpp_compiler: g++
@@ -68,6 +64,11 @@ jobs:
6864
c_compiler: cl
6965
- os: macos-latest
7066
c_compiler: mingw-w64-gcc
67+
# Disabling windows because there's some bug
68+
- os: windows-latest
69+
c_compiler: cl
70+
cpp_compiler: cl
71+
cmake_args: '-DSDLMIXER_VENDORED=ON'
7172

7273
steps:
7374
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)