The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Nimble, reference v9.2.1 (c93f16), with Swift 6.0 for Linux on 4 Nov 2024 02:53:00 UTC.

Swift 6 data race errors: 6

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  7 | }
  8 |
  9 | extension UInt8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 10 |     public init(booleanLiteral value: Bool) {
 11 |         self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 13 | }
 14 |
 15 | extension Int16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |     public init(booleanLiteral value: Bool) {
 17 |         self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 19 | }
 20 |
 21 | extension UInt16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 |     public init(booleanLiteral value: Bool) {
 23 |         self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 25 | }
 26 |
 27 | extension Int32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 28 |     public init(booleanLiteral value: Bool) {
 29 |         self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 31 | }
 32 |
 33 | extension UInt32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 34 |     public init(booleanLiteral value: Bool) {
 35 |         self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 37 | }
 38 |
 39 | extension Int64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |     public init(booleanLiteral value: Bool) {
 41 |         self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 43 | }
 44 |
 45 | extension UInt64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(booleanLiteral value: Bool) {
 47 |         self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 49 | }
 50 |
 51 | extension Float: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(booleanLiteral value: Bool) {
 53 |         self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 55 | }
 56 |
 57 | extension Double: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 58 |     public init(booleanLiteral value: Bool) {
 59 |         self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 61 | }
 62 |
 63 | extension Int: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 64 |     public init(booleanLiteral value: Bool) {
 65 |         self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 67 | }
 68 |
 69 | extension UInt: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 70 |     public init(booleanLiteral value: Bool) {
 71 |         self = NSNumber(value: value).uintValue
[4/57] Compiling Nimble ToSucceed.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:299:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
297 |                     completionCount += 1
298 |                     if completionCount < 2 {
299 |                         func completeBlock() {
    |                              `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
300 |                             if promise.resolveResult(.completed(result)) {
301 |                                 CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
    |                                                        `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                      `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
309 |                         }
310 |                     } else {
[5/57] Compiling Nimble Await.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:299:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
297 |                     completionCount += 1
298 |                     if completionCount < 2 {
299 |                         func completeBlock() {
    |                              `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
300 |                             if promise.resolveResult(.completed(result)) {
301 |                                 CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
    |                                                        `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                      `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
309 |                         }
310 |                     } else {
[6/57] Compiling Nimble DispatchTimeInterval.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:299:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
297 |                     completionCount += 1
298 |                     if completionCount < 2 {
299 |                         func completeBlock() {
    |                              `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
300 |                             if promise.resolveResult(.completed(result)) {
301 |                                 CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
    |                                                        `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                      `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
309 |                         }
310 |                     } else {
[7/57] Compiling Nimble Errors.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:299:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
297 |                     completionCount += 1
298 |                     if completionCount < 2 {
299 |                         func completeBlock() {
    |                              `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
300 |                             if promise.resolveResult(.completed(result)) {
301 |                                 CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
    |                                                        `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                      `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
309 |                         }
310 |                     } else {
[8/57] Compiling Nimble SourceLocation.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:299:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
297 |                     completionCount += 1
298 |                     if completionCount < 2 {
299 |                         func completeBlock() {
    |                              `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
300 |                             if promise.resolveResult(.completed(result)) {
301 |                                 CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
    |                                                        `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                      `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
309 |                         }
310 |                     } else {
[9/57] Compiling Nimble Stringers.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:299:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
297 |                     completionCount += 1
298 |                     if completionCount < 2 {
299 |                         func completeBlock() {
    |                              `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
300 |                             if promise.resolveResult(.completed(result)) {
301 |                                 CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                        |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
    |                                                        `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
309 |                         }
310 |                     } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:308:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
306 |                             completeBlock()
307 |                         } else {
308 |                             DispatchQueue.main.async { completeBlock() }
    |                                                      `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
309 |                         }
310 |                     } else {
[10/57] Compiling Nimble AdapterProtocols.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
   |            |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |            |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     // swiftlint:disable:previous identifier_name
15 |     return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[11/57] Compiling Nimble AssertionDispatcher.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
   |            |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |            |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     // swiftlint:disable:previous identifier_name
15 |     return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[12/57] Compiling Nimble AssertionRecorder.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
   |            |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |            |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     // swiftlint:disable:previous identifier_name
15 |     return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[13/57] Compiling Nimble NMBExpectation.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
   |            |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |            |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     // swiftlint:disable:previous identifier_name
15 |     return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[14/57] Compiling Nimble NMBObjCMatcher.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
   |            |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |            |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     // swiftlint:disable:previous identifier_name
15 |     return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[15/57] Compiling Nimble NimbleEnvironment.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
   |            |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |            |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     // swiftlint:disable:previous identifier_name
15 |     return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[16/57] Compiling Nimble NimbleXCTestHandler.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
   |            |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
   |            |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     // swiftlint:disable:previous identifier_name
15 |     return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[17/57] Compiling Nimble ExceptionCapture.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
    |                                 `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 58 |                                 done(.none)
 59 |                             }
[18/57] Compiling Nimble DSL+Wait.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
    |                                 `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 58 |                                 done(.none)
 59 |                             }
[19/57] Compiling Nimble DSL.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
    |                                 `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 58 |                                 done(.none)
 59 |                             }
[20/57] Compiling Nimble Expectation.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
    |                                 `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 58 |                                 done(.none)
 59 |                             }
[21/57] Compiling Nimble ExpectationMessage.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
    |                                 `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 58 |                                 done(.none)
 59 |                             }
[22/57] Compiling Nimble Expression.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
    |                                 `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 58 |                                 done(.none)
 59 |                             }
[23/57] Compiling Nimble FailureMessage.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 58 |                                 done(.none)
 59 |                             }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:58:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 56 |                         do {
 57 |                             try action {
 58 |                                 done(.none)
    |                                 |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |                                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 59 |                             }
 60 |                         } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:51:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
 49 |                     let capture = NMBExceptionCapture(
 50 |                         handler: ({ exception in
 51 |                             done(.exception(exception))
    |                             |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 52 |                         }),
 53 |                         finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:57:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
 55 |                     capture.tryBlock {
 56 |                         do {
 57 |                             try action {
    |                                 |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
    |                                 `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
 58 |                                 done(.none)
 59 |                             }
[24/57] Compiling Nimble Predicate.swift
[25/57] Compiling Nimble RaisesException.swift
[26/57] Compiling Nimble SatisfyAllOf.swift
[27/57] Compiling Nimble SatisfyAnyOf.swift
[28/57] Compiling Nimble ThrowAssertion.swift
[29/57] Compiling Nimble ThrowError.swift
[30/57] Compiling Nimble AllPass.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:8:23: warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
    |                       |- warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | }
 10 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:13:23: warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 | extension AsyncDefaults {
 12 |     @available(*, unavailable, renamed: "timeout")
 13 |     public static var Timeout: TimeInterval = 1
    |                       |- warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'Timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'Timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:15:23: warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |     public static var Timeout: TimeInterval = 1
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
    |                       |- warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'PollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'PollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | }
 17 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:51:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | private let toEventuallyRequiresClosureError = FailureMessage(
    |             |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     stringValue: """
 53 |         expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 4 | ///
 5 | /// This is shared state between Nimble and matchers that mutate this value.
 6 | public class FailureMessage: NSObject {
   |              `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 7 |     public var expected: String = "expected"
 8 |     public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[31/57] Compiling Nimble Async.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:8:23: warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
    |                       |- warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | }
 10 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:13:23: warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 | extension AsyncDefaults {
 12 |     @available(*, unavailable, renamed: "timeout")
 13 |     public static var Timeout: TimeInterval = 1
    |                       |- warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'Timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'Timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:15:23: warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |     public static var Timeout: TimeInterval = 1
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
    |                       |- warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'PollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'PollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | }
 17 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:51:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | private let toEventuallyRequiresClosureError = FailureMessage(
    |             |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     stringValue: """
 53 |         expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 4 | ///
 5 | /// This is shared state between Nimble and matchers that mutate this value.
 6 | public class FailureMessage: NSObject {
   |              `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 7 |     public var expected: String = "expected"
 8 |     public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[32/57] Compiling Nimble BeAKindOf.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:8:23: warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
    |                       |- warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | }
 10 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:13:23: warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 | extension AsyncDefaults {
 12 |     @available(*, unavailable, renamed: "timeout")
 13 |     public static var Timeout: TimeInterval = 1
    |                       |- warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'Timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'Timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:15:23: warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |     public static var Timeout: TimeInterval = 1
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
    |                       |- warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'PollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'PollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | }
 17 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:51:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | private let toEventuallyRequiresClosureError = FailureMessage(
    |             |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     stringValue: """
 53 |         expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 4 | ///
 5 | /// This is shared state between Nimble and matchers that mutate this value.
 6 | public class FailureMessage: NSObject {
   |              `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 7 |     public var expected: String = "expected"
 8 |     public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[33/57] Compiling Nimble BeAnInstanceOf.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:8:23: warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
    |                       |- warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | }
 10 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:13:23: warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 | extension AsyncDefaults {
 12 |     @available(*, unavailable, renamed: "timeout")
 13 |     public static var Timeout: TimeInterval = 1
    |                       |- warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'Timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'Timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:15:23: warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |     public static var Timeout: TimeInterval = 1
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
    |                       |- warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'PollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'PollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | }
 17 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:51:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | private let toEventuallyRequiresClosureError = FailureMessage(
    |             |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     stringValue: """
 53 |         expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 4 | ///
 5 | /// This is shared state between Nimble and matchers that mutate this value.
 6 | public class FailureMessage: NSObject {
   |              `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 7 |     public var expected: String = "expected"
 8 |     public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[34/57] Compiling Nimble BeCloseTo.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:8:23: warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
    |                       |- warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | }
 10 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:13:23: warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 | extension AsyncDefaults {
 12 |     @available(*, unavailable, renamed: "timeout")
 13 |     public static var Timeout: TimeInterval = 1
    |                       |- warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'Timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'Timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:15:23: warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |     public static var Timeout: TimeInterval = 1
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
    |                       |- warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'PollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'PollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | }
 17 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:51:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | private let toEventuallyRequiresClosureError = FailureMessage(
    |             |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     stringValue: """
 53 |         expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 4 | ///
 5 | /// This is shared state between Nimble and matchers that mutate this value.
 6 | public class FailureMessage: NSObject {
   |              `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 7 |     public var expected: String = "expected"
 8 |     public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[35/57] Compiling Nimble BeEmpty.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:8:23: warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
    |                       |- warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | }
 10 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:13:23: warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 | extension AsyncDefaults {
 12 |     @available(*, unavailable, renamed: "timeout")
 13 |     public static var Timeout: TimeInterval = 1
    |                       |- warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'Timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'Timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:15:23: warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |     public static var Timeout: TimeInterval = 1
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
    |                       |- warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'PollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'PollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | }
 17 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:51:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | private let toEventuallyRequiresClosureError = FailureMessage(
    |             |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     stringValue: """
 53 |         expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 4 | ///
 5 | /// This is shared state between Nimble and matchers that mutate this value.
 6 | public class FailureMessage: NSObject {
   |              `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 7 |     public var expected: String = "expected"
 8 |     public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[36/57] Compiling Nimble BeGreaterThan.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:7:23: warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
    |                       |- warning: static property 'timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
  9 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:8:23: warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 | public struct AsyncDefaults {
  7 |     public static var timeout: DispatchTimeInterval = .seconds(1)
  8 |     public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
    |                       |- warning: static property 'pollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | }
 10 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:13:23: warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 | extension AsyncDefaults {
 12 |     @available(*, unavailable, renamed: "timeout")
 13 |     public static var Timeout: TimeInterval = 1
    |                       |- warning: static property 'Timeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'Timeout' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'Timeout' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:15:23: warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |     public static var Timeout: TimeInterval = 1
 14 |     @available(*, unavailable, renamed: "pollInterval")
 15 |     public static var PollInterval: TimeInterval = 0.01
    |                       |- warning: static property 'PollInterval' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'PollInterval' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'PollInterval' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | }
 17 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:51:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | private let toEventuallyRequiresClosureError = FailureMessage(
    |             |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     stringValue: """
 53 |         expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 4 | ///
 5 | /// This is shared state between Nimble and matchers that mutate this value.
 6 | public class FailureMessage: NSObject {
   |              `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
 7 |     public var expected: String = "expected"
 8 |     public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[37/57] Compiling Nimble BeginWith.swift
[38/57] Compiling Nimble BeginWithPrefix.swift
[39/57] Compiling Nimble Contain.swift
[40/57] Compiling Nimble ContainElementSatisfying.swift
[41/57] Compiling Nimble ElementsEqual.swift
[42/57] Compiling Nimble EndWith.swift
[43/57] Compiling Nimble Equal+Tuple.swift
[44/57] Compiling Nimble BeGreaterThanOrEqualTo.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  1 | import Foundation
  2 |
  3 | extension Int8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  4 |     public init(booleanLiteral value: Bool) {
  5 |         self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  7 | }
  8 |
  9 | extension UInt8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 10 |     public init(booleanLiteral value: Bool) {
 11 |         self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 13 | }
 14 |
 15 | extension Int16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |     public init(booleanLiteral value: Bool) {
 17 |         self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 19 | }
 20 |
 21 | extension UInt16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 |     public init(booleanLiteral value: Bool) {
 23 |         self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 25 | }
 26 |
 27 | extension Int32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 28 |     public init(booleanLiteral value: Bool) {
 29 |         self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 31 | }
 32 |
 33 | extension UInt32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 34 |     public init(booleanLiteral value: Bool) {
 35 |         self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 37 | }
 38 |
 39 | extension Int64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |     public init(booleanLiteral value: Bool) {
 41 |         self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 43 | }
 44 |
 45 | extension UInt64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(booleanLiteral value: Bool) {
 47 |         self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 49 | }
 50 |
 51 | extension Float: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(booleanLiteral value: Bool) {
 53 |         self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 55 | }
 56 |
 57 | extension Double: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 58 |     public init(booleanLiteral value: Bool) {
 59 |         self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 61 | }
 62 |
 63 | extension Int: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 64 |     public init(booleanLiteral value: Bool) {
 65 |         self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 67 | }
 68 |
 69 | extension UInt: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 70 |     public init(booleanLiteral value: Bool) {
 71 |         self = NSNumber(value: value).uintValue
[45/57] Compiling Nimble BeIdenticalTo.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  1 | import Foundation
  2 |
  3 | extension Int8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  4 |     public init(booleanLiteral value: Bool) {
  5 |         self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  7 | }
  8 |
  9 | extension UInt8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 10 |     public init(booleanLiteral value: Bool) {
 11 |         self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 13 | }
 14 |
 15 | extension Int16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |     public init(booleanLiteral value: Bool) {
 17 |         self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 19 | }
 20 |
 21 | extension UInt16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 |     public init(booleanLiteral value: Bool) {
 23 |         self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 25 | }
 26 |
 27 | extension Int32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 28 |     public init(booleanLiteral value: Bool) {
 29 |         self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 31 | }
 32 |
 33 | extension UInt32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 34 |     public init(booleanLiteral value: Bool) {
 35 |         self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 37 | }
 38 |
 39 | extension Int64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |     public init(booleanLiteral value: Bool) {
 41 |         self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 43 | }
 44 |
 45 | extension UInt64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(booleanLiteral value: Bool) {
 47 |         self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 49 | }
 50 |
 51 | extension Float: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(booleanLiteral value: Bool) {
 53 |         self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 55 | }
 56 |
 57 | extension Double: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 58 |     public init(booleanLiteral value: Bool) {
 59 |         self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 61 | }
 62 |
 63 | extension Int: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 64 |     public init(booleanLiteral value: Bool) {
 65 |         self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 67 | }
 68 |
 69 | extension UInt: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 70 |     public init(booleanLiteral value: Bool) {
 71 |         self = NSNumber(value: value).uintValue
[46/57] Compiling Nimble BeLessThan.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  1 | import Foundation
  2 |
  3 | extension Int8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  4 |     public init(booleanLiteral value: Bool) {
  5 |         self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  7 | }
  8 |
  9 | extension UInt8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 10 |     public init(booleanLiteral value: Bool) {
 11 |         self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 13 | }
 14 |
 15 | extension Int16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |     public init(booleanLiteral value: Bool) {
 17 |         self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 19 | }
 20 |
 21 | extension UInt16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 |     public init(booleanLiteral value: Bool) {
 23 |         self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 25 | }
 26 |
 27 | extension Int32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 28 |     public init(booleanLiteral value: Bool) {
 29 |         self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 31 | }
 32 |
 33 | extension UInt32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 34 |     public init(booleanLiteral value: Bool) {
 35 |         self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 37 | }
 38 |
 39 | extension Int64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |     public init(booleanLiteral value: Bool) {
 41 |         self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 43 | }
 44 |
 45 | extension UInt64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(booleanLiteral value: Bool) {
 47 |         self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 49 | }
 50 |
 51 | extension Float: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(booleanLiteral value: Bool) {
 53 |         self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 55 | }
 56 |
 57 | extension Double: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 58 |     public init(booleanLiteral value: Bool) {
 59 |         self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 61 | }
 62 |
 63 | extension Int: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 64 |     public init(booleanLiteral value: Bool) {
 65 |         self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 67 | }
 68 |
 69 | extension UInt: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 70 |     public init(booleanLiteral value: Bool) {
 71 |         self = NSNumber(value: value).uintValue
[47/57] Compiling Nimble BeLessThanOrEqual.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  1 | import Foundation
  2 |
  3 | extension Int8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  4 |     public init(booleanLiteral value: Bool) {
  5 |         self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  7 | }
  8 |
  9 | extension UInt8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 10 |     public init(booleanLiteral value: Bool) {
 11 |         self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 13 | }
 14 |
 15 | extension Int16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |     public init(booleanLiteral value: Bool) {
 17 |         self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 19 | }
 20 |
 21 | extension UInt16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 |     public init(booleanLiteral value: Bool) {
 23 |         self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 25 | }
 26 |
 27 | extension Int32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 28 |     public init(booleanLiteral value: Bool) {
 29 |         self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 31 | }
 32 |
 33 | extension UInt32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 34 |     public init(booleanLiteral value: Bool) {
 35 |         self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 37 | }
 38 |
 39 | extension Int64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |     public init(booleanLiteral value: Bool) {
 41 |         self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 43 | }
 44 |
 45 | extension UInt64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(booleanLiteral value: Bool) {
 47 |         self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 49 | }
 50 |
 51 | extension Float: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(booleanLiteral value: Bool) {
 53 |         self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 55 | }
 56 |
 57 | extension Double: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 58 |     public init(booleanLiteral value: Bool) {
 59 |         self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 61 | }
 62 |
 63 | extension Int: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 64 |     public init(booleanLiteral value: Bool) {
 65 |         self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 67 | }
 68 |
 69 | extension UInt: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 70 |     public init(booleanLiteral value: Bool) {
 71 |         self = NSNumber(value: value).uintValue
[48/57] Compiling Nimble BeLogical.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  1 | import Foundation
  2 |
  3 | extension Int8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  4 |     public init(booleanLiteral value: Bool) {
  5 |         self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  7 | }
  8 |
  9 | extension UInt8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 10 |     public init(booleanLiteral value: Bool) {
 11 |         self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 13 | }
 14 |
 15 | extension Int16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |     public init(booleanLiteral value: Bool) {
 17 |         self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 19 | }
 20 |
 21 | extension UInt16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 |     public init(booleanLiteral value: Bool) {
 23 |         self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 25 | }
 26 |
 27 | extension Int32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 28 |     public init(booleanLiteral value: Bool) {
 29 |         self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 31 | }
 32 |
 33 | extension UInt32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 34 |     public init(booleanLiteral value: Bool) {
 35 |         self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 37 | }
 38 |
 39 | extension Int64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |     public init(booleanLiteral value: Bool) {
 41 |         self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 43 | }
 44 |
 45 | extension UInt64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(booleanLiteral value: Bool) {
 47 |         self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 49 | }
 50 |
 51 | extension Float: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(booleanLiteral value: Bool) {
 53 |         self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 55 | }
 56 |
 57 | extension Double: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 58 |     public init(booleanLiteral value: Bool) {
 59 |         self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 61 | }
 62 |
 63 | extension Int: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 64 |     public init(booleanLiteral value: Bool) {
 65 |         self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 67 | }
 68 |
 69 | extension UInt: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 70 |     public init(booleanLiteral value: Bool) {
 71 |         self = NSNumber(value: value).uintValue
[49/57] Compiling Nimble BeNil.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  1 | import Foundation
  2 |
  3 | extension Int8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  4 |     public init(booleanLiteral value: Bool) {
  5 |         self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  7 | }
  8 |
  9 | extension UInt8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 10 |     public init(booleanLiteral value: Bool) {
 11 |         self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 13 | }
 14 |
 15 | extension Int16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |     public init(booleanLiteral value: Bool) {
 17 |         self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 19 | }
 20 |
 21 | extension UInt16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 |     public init(booleanLiteral value: Bool) {
 23 |         self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 25 | }
 26 |
 27 | extension Int32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 28 |     public init(booleanLiteral value: Bool) {
 29 |         self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 31 | }
 32 |
 33 | extension UInt32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 34 |     public init(booleanLiteral value: Bool) {
 35 |         self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 37 | }
 38 |
 39 | extension Int64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |     public init(booleanLiteral value: Bool) {
 41 |         self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 43 | }
 44 |
 45 | extension UInt64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(booleanLiteral value: Bool) {
 47 |         self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 49 | }
 50 |
 51 | extension Float: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(booleanLiteral value: Bool) {
 53 |         self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 55 | }
 56 |
 57 | extension Double: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 58 |     public init(booleanLiteral value: Bool) {
 59 |         self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 61 | }
 62 |
 63 | extension Int: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 64 |     public init(booleanLiteral value: Bool) {
 65 |         self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 67 | }
 68 |
 69 | extension UInt: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 70 |     public init(booleanLiteral value: Bool) {
 71 |         self = NSNumber(value: value).uintValue
[50/57] Compiling Nimble BeVoid.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  1 | import Foundation
  2 |
  3 | extension Int8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  4 |     public init(booleanLiteral value: Bool) {
  5 |         self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
  7 | }
  8 |
  9 | extension UInt8: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 10 |     public init(booleanLiteral value: Bool) {
 11 |         self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 13 | }
 14 |
 15 | extension Int16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |     public init(booleanLiteral value: Bool) {
 17 |         self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 19 | }
 20 |
 21 | extension UInt16: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 22 |     public init(booleanLiteral value: Bool) {
 23 |         self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 25 | }
 26 |
 27 | extension Int32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 28 |     public init(booleanLiteral value: Bool) {
 29 |         self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 31 | }
 32 |
 33 | extension UInt32: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 34 |     public init(booleanLiteral value: Bool) {
 35 |         self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 37 | }
 38 |
 39 | extension Int64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |     public init(booleanLiteral value: Bool) {
 41 |         self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 43 | }
 44 |
 45 | extension UInt64: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 46 |     public init(booleanLiteral value: Bool) {
 47 |         self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 49 | }
 50 |
 51 | extension Float: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 52 |     public init(booleanLiteral value: Bool) {
 53 |         self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 55 | }
 56 |
 57 | extension Double: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 58 |     public init(booleanLiteral value: Bool) {
 59 |         self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 61 | }
 62 |
 63 | extension Int: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 64 |     public init(booleanLiteral value: Bool) {
 65 |         self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 67 | }
 68 |
 69 | extension UInt: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 70 |     public init(booleanLiteral value: Bool) {
 71 |         self = NSNumber(value: value).uintValue
[51/57] Compiling Nimble Equal.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/PostNotification.swift:21:17: warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | internal class NotificationCollector {
    |                `- note: class 'NotificationCollector' does not conform to the 'Sendable' protocol
  5 |     private(set) var observedNotifications: [Notification]
  6 |     private let notificationCenter: NotificationCenter
    :
 19 |             return notificationCenter.addObserver(forName: name, object: nil, queue: nil) { [weak self] notification in
 20 |                 // linux-swift gets confused by .append(n)
 21 |                 self?.observedNotifications.append(notification)
    |                 `- warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 22 |             }
 23 |         }
[52/57] Compiling Nimble HaveCount.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/PostNotification.swift:21:17: warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | internal class NotificationCollector {
    |                `- note: class 'NotificationCollector' does not conform to the 'Sendable' protocol
  5 |     private(set) var observedNotifications: [Notification]
  6 |     private let notificationCenter: NotificationCenter
    :
 19 |             return notificationCenter.addObserver(forName: name, object: nil, queue: nil) { [weak self] notification in
 20 |                 // linux-swift gets confused by .append(n)
 21 |                 self?.observedNotifications.append(notification)
    |                 `- warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 22 |             }
 23 |         }
[53/57] Compiling Nimble Match.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/PostNotification.swift:21:17: warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | internal class NotificationCollector {
    |                `- note: class 'NotificationCollector' does not conform to the 'Sendable' protocol
  5 |     private(set) var observedNotifications: [Notification]
  6 |     private let notificationCenter: NotificationCenter
    :
 19 |             return notificationCenter.addObserver(forName: name, object: nil, queue: nil) { [weak self] notification in
 20 |                 // linux-swift gets confused by .append(n)
 21 |                 self?.observedNotifications.append(notification)
    |                 `- warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 22 |             }
 23 |         }
[54/57] Compiling Nimble MatchError.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/PostNotification.swift:21:17: warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | internal class NotificationCollector {
    |                `- note: class 'NotificationCollector' does not conform to the 'Sendable' protocol
  5 |     private(set) var observedNotifications: [Notification]
  6 |     private let notificationCenter: NotificationCenter
    :
 19 |             return notificationCenter.addObserver(forName: name, object: nil, queue: nil) { [weak self] notification in
 20 |                 // linux-swift gets confused by .append(n)
 21 |                 self?.observedNotifications.append(notification)
    |                 `- warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 22 |             }
 23 |         }
[55/57] Compiling Nimble MatcherFunc.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/PostNotification.swift:21:17: warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | internal class NotificationCollector {
    |                `- note: class 'NotificationCollector' does not conform to the 'Sendable' protocol
  5 |     private(set) var observedNotifications: [Notification]
  6 |     private let notificationCenter: NotificationCenter
    :
 19 |             return notificationCenter.addObserver(forName: name, object: nil, queue: nil) { [weak self] notification in
 20 |                 // linux-swift gets confused by .append(n)
 21 |                 self?.observedNotifications.append(notification)
    |                 `- warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 22 |             }
 23 |         }
[56/57] Compiling Nimble MatcherProtocols.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/PostNotification.swift:21:17: warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | internal class NotificationCollector {
    |                `- note: class 'NotificationCollector' does not conform to the 'Sendable' protocol
  5 |     private(set) var observedNotifications: [Notification]
  6 |     private let notificationCenter: NotificationCenter
    :
 19 |             return notificationCenter.addObserver(forName: name, object: nil, queue: nil) { [weak self] notification in
 20 |                 // linux-swift gets confused by .append(n)
 21 |                 self?.observedNotifications.append(notification)
    |                 `- warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 22 |             }
 23 |         }
[57/57] Compiling Nimble PostNotification.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/PostNotification.swift:21:17: warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | internal class NotificationCollector {
    |                `- note: class 'NotificationCollector' does not conform to the 'Sendable' protocol
  5 |     private(set) var observedNotifications: [Notification]
  6 |     private let notificationCenter: NotificationCenter
    :
 19 |             return notificationCenter.addObserver(forName: name, object: nil, queue: nil) { [weak self] notification in
 20 |                 // linux-swift gets confused by .append(n)
 21 |                 self?.observedNotifications.append(notification)
    |                 `- warning: capture of 'self' with non-sendable type 'NotificationCollector?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 22 |             }
 23 |         }
Build complete! (14.96s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "cwlpreconditiontesting",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.1",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/mattgallagher/CwlPreconditionTesting.git"
    }
  ],
  "manifest_display_name" : "Nimble",
  "name" : "Nimble",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "Nimble",
      "targets" : [
        "Nimble"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "NimbleTests",
      "module_type" : "SwiftTarget",
      "name" : "NimbleTests",
      "path" : "Tests/NimbleTests",
      "sources" : [
        "AsynchronousTest.swift",
        "DSLTest.swift",
        "Helpers/AlwaysFailMatcher.swift",
        "Helpers/ObjectWithLazyProperty.swift",
        "Helpers/utils.swift",
        "LinuxSupport.swift",
        "Matchers/AllPassTest.swift",
        "Matchers/BeAKindOfTest.swift",
        "Matchers/BeAnInstanceOfTest.swift",
        "Matchers/BeCloseToTest.swift",
        "Matchers/BeEmptyTest.swift",
        "Matchers/BeGreaterThanOrEqualToTest.swift",
        "Matchers/BeGreaterThanTest.swift",
        "Matchers/BeIdenticalToObjectTest.swift",
        "Matchers/BeIdenticalToTest.swift",
        "Matchers/BeLessThanOrEqualToTest.swift",
        "Matchers/BeLessThanTest.swift",
        "Matchers/BeLogicalTest.swift",
        "Matchers/BeNilTest.swift",
        "Matchers/BeVoidTest.swift",
        "Matchers/BeginWithPrefixTest.swift",
        "Matchers/BeginWithTest.swift",
        "Matchers/ContainElementSatisfyingTest.swift",
        "Matchers/ContainTest.swift",
        "Matchers/ElementsEqualTest.swift",
        "Matchers/EndWithTest.swift",
        "Matchers/EqualTest.swift",
        "Matchers/HaveCountTest.swift",
        "Matchers/MatchErrorTest.swift",
        "Matchers/MatchTest.swift",
        "Matchers/PostNotificationTest.swift",
        "Matchers/RaisesExceptionTest.swift",
        "Matchers/SatisfyAllOfTest.swift",
        "Matchers/SatisfyAnyOfTest.swift",
        "Matchers/ThrowAssertionTest.swift",
        "Matchers/ThrowErrorTest.swift",
        "Matchers/ToSucceedTest.swift",
        "PredicateTest.swift",
        "SynchronousDeprecatedTest.swift",
        "SynchronousTest.swift",
        "UserDescriptionTest.swift"
      ],
      "target_dependencies" : [
        "Nimble"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Nimble",
      "module_type" : "SwiftTarget",
      "name" : "Nimble",
      "path" : "Sources/Nimble",
      "product_dependencies" : [
        "CwlPreconditionTesting",
        "CwlPosixPreconditionTesting"
      ],
      "product_memberships" : [
        "Nimble"
      ],
      "sources" : [
        "Adapters/AdapterProtocols.swift",
        "Adapters/AssertionDispatcher.swift",
        "Adapters/AssertionRecorder.swift",
        "Adapters/NMBExpectation.swift",
        "Adapters/NMBObjCMatcher.swift",
        "Adapters/NimbleEnvironment.swift",
        "Adapters/NimbleXCTestHandler.swift",
        "Adapters/NonObjectiveC/ExceptionCapture.swift",
        "DSL+Wait.swift",
        "DSL.swift",
        "Expectation.swift",
        "ExpectationMessage.swift",
        "Expression.swift",
        "FailureMessage.swift",
        "Matchers/AllPass.swift",
        "Matchers/Async.swift",
        "Matchers/BeAKindOf.swift",
        "Matchers/BeAnInstanceOf.swift",
        "Matchers/BeCloseTo.swift",
        "Matchers/BeEmpty.swift",
        "Matchers/BeGreaterThan.swift",
        "Matchers/BeGreaterThanOrEqualTo.swift",
        "Matchers/BeIdenticalTo.swift",
        "Matchers/BeLessThan.swift",
        "Matchers/BeLessThanOrEqual.swift",
        "Matchers/BeLogical.swift",
        "Matchers/BeNil.swift",
        "Matchers/BeVoid.swift",
        "Matchers/BeginWith.swift",
        "Matchers/BeginWithPrefix.swift",
        "Matchers/Contain.swift",
        "Matchers/ContainElementSatisfying.swift",
        "Matchers/ElementsEqual.swift",
        "Matchers/EndWith.swift",
        "Matchers/Equal+Tuple.swift",
        "Matchers/Equal.swift",
        "Matchers/HaveCount.swift",
        "Matchers/Match.swift",
        "Matchers/MatchError.swift",
        "Matchers/MatcherFunc.swift",
        "Matchers/MatcherProtocols.swift",
        "Matchers/PostNotification.swift",
        "Matchers/Predicate.swift",
        "Matchers/RaisesException.swift",
        "Matchers/SatisfyAllOf.swift",
        "Matchers/SatisfyAnyOf.swift",
        "Matchers/ThrowAssertion.swift",
        "Matchers/ThrowError.swift",
        "Matchers/ToSucceed.swift",
        "Utils/Await.swift",
        "Utils/DispatchTimeInterval.swift",
        "Utils/Errors.swift",
        "Utils/SourceLocation.swift",
        "Utils/Stringers.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.