diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c3324bbe2..015aefec4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -24,6 +24,27 @@ jobs: - name: 'Install' run: meson install -C _build + windows-msvc-debug: + runs-on: windows-2022 + steps: + - name: 'Checkout' + uses: actions/checkout@v4 + - name: 'Setup Python' + uses: actions/setup-python@v4 + with: + python-version: '3.x' + - name: 'Install Meson' + run: pip install meson + - name: 'Enter DevShell' + run: '.github\workflows\EnterDevShell.ps1 ${{ inputs.architecture }}' + shell: pwsh + - name: 'Configure with meson' + run: meson setup _build -D werror=true -D buildtype=debug + - name: 'Build' + run: meson compile -C _build + - name: 'Install' + run: meson install -C _build + windows-mingw: runs-on: windows-2022 env: