From 1bb23eba90a7ba47def99b3e3797a4e104c4e93f Mon Sep 17 00:00:00 2001 From: Raphael Hiesgen Date: Tue, 29 Jul 2025 17:30:18 +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/main.yml | 4 ++++ .github/workflows/pull_request.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 632c6e8..b2276f8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,3 +24,7 @@ jobs: with: runner_pool: nightly build_scheme: swift-metrics-Package + + release-builds: + name: Release builds + uses: apple/swift-nio/.github/workflows/release_builds.yml@main diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e3d70d0..3b911fc 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -32,3 +32,7 @@ jobs: with: runner_pool: general build_scheme: swift-metrics-Package + + release-builds: + name: Release builds + uses: apple/swift-nio/.github/workflows/release_builds.yml@main