From e4627d679c8dbf667c8684c009c7b7e71e6e7f86 Mon Sep 17 00:00:00 2001 From: Raphael Hiesgen Date: Wed, 30 Jul 2025 09:25:57 +0100 Subject: [PATCH] Enable release mode builds Motivation: Some errors do not show up in debug builds. Enabling release mode builds improves the CI coverage. Modifications: Enable release mode builds for pull requests and scheduled builds on main. Result: Improved CI coverage. --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ab2ae2adf..4b87fe91e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,8 +26,11 @@ jobs: matrix: include: - image: swift:6.1 + swift-build-flags: -c release - image: swift:6.0-jammy + swift-build-flags: -c release - image: swift:5.10.1-noble + swift-build-flags: -c release name: Build and Test on ${{ matrix.image }} runs-on: ubuntu-latest container: