Word-wrap centerprints if scr_usekfont is on #1905
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows CI (mingw) | |
| on: [push, pull_request] | |
| jobs: | |
| build-mingw: | |
| name: ${{ matrix.platform.name }} | |
| runs-on: ${{ matrix.platform.os }} | |
| defaults: | |
| run: | |
| shell: ${{ matrix.platform.shell }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: | |
| - { name: Windows (mingw64), os: windows-latest, shell: 'msys2 {0}', msystem: mingw64, msys-env: mingw-w64-x86_64, makefile: Makefile.w64 } | |
| steps: | |
| - name: Set up MSYS2 | |
| uses: msys2/setup-msys2@v2 | |
| with: | |
| msystem: ${{ matrix.platform.msystem }} | |
| install: base-devel | |
| ${{ matrix.platform.msys-env }}-gcc | |
| ${{ matrix.platform.msys-env }}-glslang | |
| - uses: actions/checkout@v6 | |
| - name: Build MinGW | |
| run: | | |
| set -eu | |
| parallel="$(getconf _NPROCESSORS_ONLN)" | |
| make -j"${parallel}" -C Quake -f ${{ matrix.platform.makefile }} all | |
| - name: Upload vkQuake | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: vkQuake archive (${{ matrix.platform.name }}) | |
| path: | | |
| Quake/*.exe | |
| Quake/*.dll |