Skip to content

Commit

Permalink
Update to have debug and release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
EmosewaMC committed Oct 28, 2024
1 parent e0b5464 commit 0509aaf
Show file tree
Hide file tree
Showing 4 changed files with 251 additions and 171 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
continue-on-error: true
strategy:
matrix:
os: [ windows-2022, ubuntu-22.04, macos-13, windows-2022-debug ]
os: [ windows-2022, ubuntu-22.04, macos-13 ]
cfg: [ debug, release ]

steps:
- uses: actions/checkout@v3
Expand All @@ -33,9 +34,9 @@ jobs:
- name: cmake
uses: lukka/run-cmake@v10
with:
configurePreset: "ci-${{matrix.os}}"
buildPreset: "ci-${{matrix.os}}"
testPreset: "ci-${{matrix.os}}"
configurePreset: "ci-${{matrix.os}}-${{matrix.cfg}}"
buildPreset: "ci-${{matrix.os}}-${{matrix.cfg}}"
testPreset: "ci-${{matrix.os}}-${{matrix.cfg}}"
- name: artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
Loading

0 comments on commit 0509aaf

Please sign in to comment.