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 1ad7491 commit ed60ed0Copy full SHA for ed60ed0
.github/workflows/package.yml
@@ -1,20 +1,17 @@
1
name: Package
2
-
3
on:
4
push:
5
branches:
6
- 'main'
7
8
jobs:
9
package:
10
runs-on: windows-latest
11
12
steps:
13
- uses: actions/checkout@v3
14
- name: Install Ninja
15
run: choco install ninja
16
- name: Generate Ninja build
17
- run: cmake -B build -G Ninja -D CMAKE_BUILD_TYPE=RelWithDebInfo
+ run: cmake -B build -G Ninja -D CMAKE_BUILD_TYPE=RelWithDebInfo -D CMAKE_C_COMPILER=clang
18
- name: Package
19
run: cmake --build build --target package
20
- uses: actions/upload-artifact@v3
0 commit comments