Skip to content

Commit 37f1bb5

Browse files
committed
Wrong OS in win workflow. Need to sleep.
1 parent 1d2ac26 commit 37f1bb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
# TODO: Add clang-cl build
1414
jobs:
1515
build-cl:
16-
runs-on: ubuntu-latest
16+
runs-on: windows-latest
1717

1818
steps:
1919
- uses: actions/checkout@v3
@@ -23,7 +23,7 @@ jobs:
2323
tag: v1.14.0
2424

2525
- name: Configure CMake
26-
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -GNinja
26+
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=cl -DCMAKE_CXX_COMPILER=cl -GNinja
2727

2828
- name: Build with GCC
2929
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

0 commit comments

Comments
 (0)