Word-wrap centerprints if scr_usekfont is on #1939
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: macOS CI | |
| on: [push, pull_request] | |
| jobs: | |
| build-mac-os: | |
| name: Build macOS | |
| runs-on: macos-14 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| configuration: [release, debug] | |
| use-sdl3: ['auto', 'disabled'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Dependencies | |
| run: brew install molten-vk vulkan-headers glslang spirv-tools sdl2 sdl3 libvorbis flac opus opusfile flac mpg123 meson | |
| - name: Build vkQuake | |
| run: meson setup build --buildtype=${{ matrix.configuration }} -Ddebug=true -Dstrip=false -Duse_sdl3=${{ matrix.use-sdl3 }} && ninja -C build | |
| - name: Extract debug information and bundle it to .dSYM | |
| run: | | |
| dsymutil build/vkquake -o build/vkquake.dSYM | |
| du -sh build/vkquake build/vkquake.dSYM | |
| dwarfdump --uuid build/vkquake build/vkquake.dSYM | |
| - name: Upload vkQuake | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: vkQuake archive (${{ matrix.configuration }}${{ matrix.use-sdl3 == 'disabled' && ', SDL2' || '' }}) | |
| path: | | |
| build/vkquake | |
| build/vkquake.dSYM |