Skip to content

Commit b00139f

Browse files
authored
Enable release mode builds (#102)
### 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.
1 parent 3faa71f commit b00139f

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,12 @@ jobs:
4747
with:
4848
runner_pool: nightly
4949
build_scheme: swift-http-types-Package
50+
51+
release-builds:
52+
name: Release builds
53+
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
54+
with:
55+
windows_6_0_enabled: true
56+
windows_6_1_enabled: true
57+
windows_nightly_next_enabled: true
58+
windows_nightly_main_enabled: true

.github/workflows/pull_request.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,12 @@ jobs:
5151
with:
5252
runner_pool: general
5353
build_scheme: swift-http-types-Package
54+
55+
release-builds:
56+
name: Release builds
57+
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
58+
with:
59+
windows_6_0_enabled: true
60+
windows_6_1_enabled: true
61+
windows_nightly_next_enabled: true
62+
windows_nightly_main_enabled: true

0 commit comments

Comments
 (0)