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 781d500 commit 4aa8707Copy full SHA for 4aa8707
1 file changed
.github/workflows/build.yml
@@ -13,11 +13,18 @@ jobs:
13
matrix:
14
include:
15
- os: ubuntu-latest
16
+ shell: bash
17
- os: macos-latest
18
19
- os: windows-latest
20
+ shell: msys2 {0}
21
22
runs-on: ${{ matrix.os }}
23
24
+ defaults:
25
+ run:
26
+ shell: ${{ matrix.shell }}
27
+
28
steps:
29
- uses: actions/checkout@v4
30
with:
@@ -45,12 +52,10 @@ jobs:
45
52
mingw-w64-clang-x86_64-ninja
46
53
47
54
- name: configure
48
- shell: ${{ runner.os == 'Windows' && 'msys2 {0}' || 'bash' }}
49
55
run: |
50
56
cmake -B build -S . -G Ninja -DCMAKE_BUILD_TYPE=Release
51
57
58
- name: build
59
60
cmake --build build
61
0 commit comments