From d1b931cd362e8f48f2488c4854cfa7d96d8b33a1 Mon Sep 17 00:00:00 2001 From: Chris Cowan Date: Sun, 2 Apr 2023 16:36:31 -0700 Subject: [PATCH] CI: build MacOS in release and debug mode --- .github/workflows/build-mac.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-mac.yml b/.github/workflows/build-mac.yml index b6e4ca005..f51636e10 100644 --- a/.github/workflows/build-mac.yml +++ b/.github/workflows/build-mac.yml @@ -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