Skip to content

Commit

Permalink
Enable Tracy in RelWithDebInfo builds and add them to the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Oct 1, 2024
1 parent 5d96ca4 commit 8f34067
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ jobs:
build-type:
- Debug
- Release
- RelWithDebInfo
runs-on: ${{ inputs.runs-on }}
defaults:
run:
Expand Down Expand Up @@ -194,6 +195,7 @@ jobs:
run: |
cmake "${{ github.workspace }}" \
-DCMAKE_BUILD_TYPE="${{ matrix.build-type }}" \
-DTRACY_ENABLE="${{ matrix.build-type == 'RelWithDebInfo' && 'ON' || 'OFF' }}" \
${{ inputs.cmake-args }}
- name: Configure (With Test Suite)
Expand All @@ -202,6 +204,7 @@ jobs:
run: |
cmake "${{ github.workspace }}" \
-DCMAKE_BUILD_TYPE="${{ matrix.build-type }}" \
-DTRACY_ENABLE="${{ matrix.build-type == 'RelWithDebInfo' && 'ON' || 'OFF' }}" \
-DBUILD_TESTING=ON \
-DARM7_BIOS="${{ env.TESTFILE_DIR }}/${{ secrets.ARM7_BIOS }}" \
-DARM9_BIOS="${{ env.TESTFILE_DIR }}/${{ secrets.ARM9_BIOS }}" \
Expand Down

0 comments on commit 8f34067

Please sign in to comment.