Skip to content

Commit bdff45d

Browse files
authored
Enable release mode builds (#2255)
### 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 4aa1757 commit bdff45d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@ jobs:
2626
matrix:
2727
include:
2828
- image: swift:6.1
29+
swift-build-flags: -c release
2930
- image: swift:6.0-jammy
31+
swift-build-flags: -c release
3032
- image: swift:5.10.1-noble
33+
swift-build-flags: -c release
3134
name: Build and Test on ${{ matrix.image }}
3235
runs-on: ubuntu-latest
3336
container:

0 commit comments

Comments
 (0)