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 d4fb7dd commit aefaf43Copy full SHA for aefaf43
.github/workflows/cmake.yml
@@ -43,6 +43,11 @@ jobs:
43
compiler: cl
44
cmake-args: -A x64
45
46
+ - name: Windows GCC
47
+ os: windows-latest
48
+ compiler: gcc
49
+ cmake-args: -G Ninja
50
+
51
- name: macOS Clang
52
os: macos-latest
53
compiler: clang
@@ -55,6 +60,11 @@ jobs:
55
60
- name: Checkout repository
56
61
uses: actions/checkout@v3
57
62
63
+ - name: Install packages (Windows)
64
+ if: runner.os == 'Windows'
65
+ run: |
66
+ choco install --no-progress ninja ${{ matrix.packages }}
67
58
68
- name: Generate project files
59
69
run: cmake -S ${{ matrix.src-dir || '.' }} -B ${{ matrix.build-dir || '.' }} ${{ matrix.cmake-args }} -D CMAKE_BUILD_TYPE=${{ matrix.build-config || 'Release' }}
70
env:
0 commit comments