Skip to content

Commit

Permalink
CI: build MacOS in release and debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Macil authored and Novum committed Apr 10, 2023
1 parent cf03023 commit d1b931c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
runs-on: macos-11
strategy:
fail-fast: false
matrix:
configuration: [release, debug]
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: brew install molten-vk vulkan-headers glslang spirv-tools sdl2 libvorbis flac opus opusfile flac mad meson
- name: Build vkQuake
run: meson build && ninja -C build
run: meson build --buildtype=${{ matrix.configuration }} && ninja -C build
- name: Upload vkQuake
uses: actions/upload-artifact@v3
with:
name: vkQuake archive
name: vkQuake archive (${{ matrix.configuration }})
path: build/vkquake

0 comments on commit d1b931c

Please sign in to comment.