From 060cfb574df8bb6892b740f36046f2f505be4e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Tue, 18 Feb 2025 22:44:55 +0100 Subject: [PATCH] Build both release and debug configurations on Linux --- .github/workflows/linux.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index c717ae58..aef5819e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -9,6 +9,9 @@ jobs: build: name: GPXSee runs-on: ubuntu-20.04 + strategy: + matrix: + config: ['release', 'debug'] steps: - name: Checkout uses: actions/checkout@v4 @@ -19,6 +22,6 @@ jobs: - name: Create localization run: lrelease gpxsee.pro - name: Configure build - run: qmake gpxsee.pro + run: qmake CONFIG+=${{ matrix.config }} gpxsee.pro - name: Build project run: make -j2