Skip to content

Commit

Permalink
ci: also build rel preset
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsergio committed Jan 19, 2025
1 parent 91c2660 commit 078202a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
matrix:
os:
- ubuntu-24.04
preset:
- dev
- rel

steps:
- name: Install Qt
Expand Down Expand Up @@ -43,10 +46,10 @@ jobs:
GH_TOKEN: ${{ github.token }}

- name: Configure project
run: cmake -S . -B ./build-dev --preset dev
run: cmake -S . -B ./build-${{ matrix.preset }} --preset ${{ matrix.preset }}

- name: Build Project
run: cmake --build ./build-dev
run: cmake --build ./build-${{ matrix.preset }}

- name: Build example
run: |
Expand Down

0 comments on commit 078202a

Please sign in to comment.