Skip to content

Commit

Permalink
pass the right flag
Browse files Browse the repository at this point in the history
  • Loading branch information
glbrntt committed Aug 15, 2023
1 parent 97f0e0f commit 59a9c7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
matrix:
include:
- image: swiftlang/swift:nightly-focal
swift-build-flags: "-Xswiftc strict-concurrency=complete"
swift-build-flags: "-Xswiftc -strict-concurrency=complete"
# No TSAN because of: https://github.com/apple/swift/issues/59068
swift-test-flags: "-Xswiftc strict-concurrency=complete" # "--sanitize=thread"
swift-test-flags: "-Xswiftc -strict-concurrency=complete" # "--sanitize=thread"
- image: swift:5.8-jammy
swift-build-flags: "-Xswiftc strict-concurrency=complete"
swift-build-flags: "-Xswiftc -strict-concurrency=complete"
# No TSAN because of: https://github.com/apple/swift/issues/59068
swift-test-flags: "-Xswiftc strict-concurrency=complete" # "--sanitize=thread"
swift-test-flags: "-Xswiftc -strict-concurrency=complete" # "--sanitize=thread"
- image: swift:5.7-jammy
# No TSAN because of: https://github.com/apple/swift/issues/59068
# swift-test-flags: "--sanitize=thread"
Expand Down

0 comments on commit 59a9c7d

Please sign in to comment.