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 2a1536a commit 53e459dCopy full SHA for 53e459d
.github/workflows/windows.yml
@@ -24,6 +24,27 @@ jobs:
24
- name: 'Install'
25
run: meson install -C _build
26
27
+ windows-msvc-debug:
28
+ runs-on: windows-2022
29
+ steps:
30
+ - name: 'Checkout'
31
+ uses: actions/checkout@v4
32
+ - name: 'Setup Python'
33
+ uses: actions/setup-python@v4
34
+ with:
35
+ python-version: '3.x'
36
+ - name: 'Install Meson'
37
+ run: pip install meson
38
+ - name: 'Enter DevShell'
39
+ run: '.github\workflows\EnterDevShell.ps1 ${{ inputs.architecture }}'
40
+ shell: pwsh
41
+ - name: 'Configure with meson'
42
+ run: meson setup _build -D werror=true -D buildtype=debug
43
+ - name: 'Build'
44
+ run: meson compile -C _build
45
+ - name: 'Install'
46
+ run: meson install -C _build
47
+
48
windows-mingw:
49
runs-on: windows-2022
50
env:
0 commit comments