Skip to content

Commit f13e0af

Browse files
committed
Clang vs MSVC
1 parent 3df26b4 commit f13e0af

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ on:
22
- push
33

44
jobs:
5-
build:
5+
build-clang:
66
runs-on: windows-latest
77
steps:
88
- uses: actions/checkout@v4
9-
- run: cmake -Bbuild -GNinja -DCMAKE_C_COMPILER=clang
10-
# -DCMAKE_CXX_COMPILER=clang++
11-
- run: cmake --build build
12-
9+
- run: |
10+
cmake -Bbuild -GNinja -DCMAKE_C_COMPILER=clang
11+
cmake --build build
12+
build-msvc:
13+
runs-on: windows-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- run: |
17+
cmake -Bbuild
18+
cmake --build build

0 commit comments

Comments
 (0)