Changed version back to 1.31.3 for an ultimate 1.31 bugfix #836
Workflow file for this run
This file contains 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-12 | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [release, debug] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: brew install molten-vk vulkan-headers glslang spirv-tools sdl2 libvorbis flac opus opusfile flac mpg123 meson | |
- name: Build vkQuake | |
run: meson build --buildtype=${{ matrix.configuration }} && ninja -C build | |
- name: Upload vkQuake | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vkQuake archive (${{ matrix.configuration }}) | |
path: build/vkquake |