Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8ca426d

Browse files
committedAug 7, 2024·
enable StrictConcurrency build setting
1 parent 54d1006 commit 8ca426d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎Package.swift

+3
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ let package = Package(
5656
.product(name: "Logging", package: "swift-log"),
5757
.product(name: "Atomics", package: "swift-atomics"),
5858
.product(name: "Algorithms", package: "swift-algorithms"),
59+
],
60+
swiftSettings: [
61+
.enableExperimentalFeature("StrictConcurrency")
5962
]
6063
),
6164
.testTarget(

‎docker/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232

3333
test:
3434
<<: *common
35-
command: /bin/bash -xcl "swift test --parallel -Xswiftc -warnings-as-errors --enable-test-discovery $${SANITIZER_ARG-} $${IMPORT_CHECK_ARG-}"
35+
command: /bin/bash -xcl "swift test --parallel --enable-test-discovery $${SANITIZER_ARG-} $${IMPORT_CHECK_ARG-}"
3636

3737
# util
3838

0 commit comments

Comments
 (0)
Please sign in to comment.