Skip to content

Commit 21d132f

Browse files
authored
Enable release mode builds (#368)
### 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 ce592ae commit 21d132f

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
@@ -41,3 +41,12 @@ jobs:
4141
with:
4242
runner_pool: nightly
4343
build_scheme: swift-log
44+
45+
release-builds:
46+
name: Release builds
47+
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
48+
with:
49+
windows_6_0_enabled: true
50+
windows_6_1_enabled: true
51+
windows_nightly_next_enabled: true
52+
windows_nightly_main_enabled: true

.github/workflows/pull_request.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,12 @@ jobs:
4545
with:
4646
runner_pool: general
4747
build_scheme: swift-log
48+
49+
release-builds:
50+
name: Release builds
51+
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
52+
with:
53+
windows_6_0_enabled: true
54+
windows_6_1_enabled: true
55+
windows_nightly_next_enabled: true
56+
windows_nightly_main_enabled: true

0 commit comments

Comments
 (0)