We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d2ac26 commit 37f1bb5Copy full SHA for 37f1bb5
.github/workflows/build-windows.yml
@@ -13,7 +13,7 @@ env:
13
# TODO: Add clang-cl build
14
jobs:
15
build-cl:
16
- runs-on: ubuntu-latest
+ runs-on: windows-latest
17
18
steps:
19
- uses: actions/checkout@v3
@@ -23,7 +23,7 @@ jobs:
23
tag: v1.14.0
24
25
- name: Configure CMake
26
- run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -GNinja
+ run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=cl -DCMAKE_CXX_COMPILER=cl -GNinja
27
28
- name: Build with GCC
29
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
0 commit comments