Skip to content

Commit 8e4ecbd

Browse files
authored
Enable release mode builds (#12)
* 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. * Disable 5.9 and 5.10 * Remove unnecessary flag
1 parent 3fdc52d commit 8e4ecbd

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,9 @@ jobs:
2929
static-sdk:
3030
name: Static SDK
3131
uses: apple/swift-nio/.github/workflows/static_sdk.yml@main
32+
33+
release-builds:
34+
name: Release builds
35+
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
36+
with:
37+
linux_5_10_enabled: false

.github/workflows/pull_request.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,9 @@ jobs:
7171
static-sdk:
7272
name: Static SDK
7373
uses: apple/swift-nio/.github/workflows/static_sdk.yml@main
74+
75+
release-builds:
76+
name: Release builds
77+
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
78+
with:
79+
linux_5_10_enabled: false

0 commit comments

Comments
 (0)