Skip to content

Commit

Permalink
Update GHA & build script: set build mode from matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ibressler committed Jun 20, 2024
1 parent c0d64f6 commit 63b7d50
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ jobs:
strategy:
matrix:
os: ['ubuntu-22.04']
include:
- env: BUILD_MODE=release
- env: BUILD_MODE=debug
mode: ['release', 'debug']
runs-on: ${{ matrix.os }}
env: ${{ matrix.env.BUILD_MODE }}
env:
- BUILD_MODE: ${{ matrix.mode }}
steps:
- name: Checking out the repo
uses: actions/checkout@v4
Expand Down

0 comments on commit 63b7d50

Please sign in to comment.