fix bad change from commit 7e71dcd5f0383ce7ab30ddb1b85c421fb48b2d77 #877
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-13 | |
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 |