Skip to content

Commit 1079229

Browse files
authored
Enable release mode builds (#77)
### 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 b799051 commit 1079229

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
@@ -35,3 +35,12 @@ jobs:
3535
with:
3636
runner_pool: nightly
3737
build_scheme: swift-openapi-urlsession
38+
39+
release-builds:
40+
name: Release builds
41+
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
42+
with:
43+
windows_6_0_enabled: true
44+
windows_6_1_enabled: true
45+
windows_nightly_next_enabled: true
46+
windows_nightly_main_enabled: true

.github/workflows/pull_request.yml

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

0 commit comments

Comments
 (0)