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 Quick, reference v4.0.0 (bd86ca), with Swift 6.0 for Linux on 4 Nov 2024 03:04:05 UTC.

Swift 6 data race errors: 3

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

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/danielsaidi/Quick.git
Reference: v4.0.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/danielsaidi/Quick
 * tag               v4.0.0     -> FETCH_HEAD
HEAD is now at bd86ca0 Bumping version to 4.0.0
Submodule path 'Externals/Nimble': checked out 'd258c638d9ef214723a857a23f4113773aad28fb'
Submodule 'Externals/Nimble' (https://github.com/Quick/Nimble.git) registered for path 'Externals/Nimble'
Cloning into '/host/spi-builder-workspace/Externals/Nimble'...
Cloned https://github.com/danielsaidi/Quick.git
Revision (git rev-parse @):
bd86ca0141e3cfb333546de5a11ede63f0c4a0e6
SUCCESS checkout https://github.com/danielsaidi/Quick.git at v4.0.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/danielsaidi/Quick.git
Running build ...
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
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
Fetching https://github.com/Quick/Nimble.git
[1/19218] Fetching nimble
Fetched https://github.com/Quick/Nimble.git from cache (2.02s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 9.2.1 (0.52s)
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
[1/1257] Fetching cwlpreconditiontesting
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (0.21s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.2.2 (0.68s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
[1/455] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.15s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.1 (0.66s)
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.2.1
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.2
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 9.2.1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/24] Emitting module Quick
/host/spi-builder-workspace/Sources/Quick/Configuration/QuickConfiguration.swift:14:24: warning: static property 'configurationSubclasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension QuickConfiguration {
13 |     #if !canImport(Darwin)
14 |     private static var configurationSubclasses: [QuickConfiguration.Type] = []
   |                        |- warning: static property 'configurationSubclasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'configurationSubclasses' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'configurationSubclasses' 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
15 |     #endif
16 |
/host/spi-builder-workspace/Sources/Quick/QuickSpec.swift:19:36: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 17 |     /// Returns the currently executing spec. Use in specs that require XCTestCase
 18 |     /// methods, e.g. expectation(description:).
 19 |     public private(set) static var current: QuickSpec!
    |                                    |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'current' 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
 20 |
 21 |     private var example: Example? {
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[4/27] Compiling Quick Behavior.swift
[5/27] Compiling Quick Callsite.swift
[6/27] Compiling Quick Configuration.swift
[7/27] Compiling Quick QuickSpec.swift
/host/spi-builder-workspace/Sources/Quick/QuickSpec.swift:19:36: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 17 |     /// Returns the currently executing spec. Use in specs that require XCTestCase
 18 |     /// methods, e.g. expectation(description:).
 19 |     public private(set) static var current: QuickSpec!
    |                                    |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'current' 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
 20 |
 21 |     private var example: Example? {
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[8/27] Compiling Quick QuickTestObservation.swift
/host/spi-builder-workspace/Sources/Quick/QuickSpec.swift:19:36: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 17 |     /// Returns the currently executing spec. Use in specs that require XCTestCase
 18 |     /// methods, e.g. expectation(description:).
 19 |     public private(set) static var current: QuickSpec!
    |                                    |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'current' 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
 20 |
 21 |     private var example: Example? {
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[9/27] Compiling Quick QuickTestSuite.swift
/host/spi-builder-workspace/Sources/Quick/QuickSpec.swift:19:36: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 17 |     /// Returns the currently executing spec. Use in specs that require XCTestCase
 18 |     /// methods, e.g. expectation(description:).
 19 |     public private(set) static var current: QuickSpec!
    |                                    |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'current' 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
 20 |
 21 |     private var example: Example? {
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[10/27] Compiling Quick ErrorUtility.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
/host/spi-builder-workspace/Sources/Quick/QuickSpec.swift:19:36: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 17 |     /// Returns the currently executing spec. Use in specs that require XCTestCase
 18 |     /// methods, e.g. expectation(description:).
 19 |     public private(set) static var current: QuickSpec!
    |                                    |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'current' 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
 20 |
 21 |     private var example: Example? {
[11/27] Compiling Quick Example.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
/host/spi-builder-workspace/Sources/Quick/QuickSpec.swift:19:36: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 17 |     /// Returns the currently executing spec. Use in specs that require XCTestCase
 18 |     /// methods, e.g. expectation(description:).
 19 |     public private(set) static var current: QuickSpec!
    |                                    |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'current' 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
 20 |
 21 |     private var example: Example? {
[12/27] Compiling Quick ExampleGroup.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
/host/spi-builder-workspace/Sources/Quick/QuickSpec.swift:19:36: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 17 |     /// Returns the currently executing spec. Use in specs that require XCTestCase
 18 |     /// methods, e.g. expectation(description:).
 19 |     public private(set) static var current: QuickSpec!
    |                                    |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'current' 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
 20 |
 21 |     private var example: Example? {
[13/27] Compiling Quick ExampleHooks.swift
[14/27] Compiling Quick HooksPhase.swift
[15/27] Compiling Quick SuiteHooks.swift
[16/27] Compiling Quick QuickConfiguration.swift
/host/spi-builder-workspace/Sources/Quick/Configuration/QuickConfiguration.swift:14:24: warning: static property 'configurationSubclasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension QuickConfiguration {
13 |     #if !canImport(Darwin)
14 |     private static var configurationSubclasses: [QuickConfiguration.Type] = []
   |                        |- warning: static property 'configurationSubclasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'configurationSubclasses' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'configurationSubclasses' 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
15 |     #endif
16 |
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[17/27] Compiling Quick DSL.swift
/host/spi-builder-workspace/Sources/Quick/Configuration/QuickConfiguration.swift:14:24: warning: static property 'configurationSubclasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension QuickConfiguration {
13 |     #if !canImport(Darwin)
14 |     private static var configurationSubclasses: [QuickConfiguration.Type] = []
   |                        |- warning: static property 'configurationSubclasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'configurationSubclasses' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'configurationSubclasses' 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
15 |     #endif
16 |
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[18/27] Compiling Quick World+DSL.swift
/host/spi-builder-workspace/Sources/Quick/Configuration/QuickConfiguration.swift:14:24: warning: static property 'configurationSubclasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension QuickConfiguration {
13 |     #if !canImport(Darwin)
14 |     private static var configurationSubclasses: [QuickConfiguration.Type] = []
   |                        |- warning: static property 'configurationSubclasses' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'configurationSubclasses' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'configurationSubclasses' 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
15 |     #endif
16 |
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[19/27] Compiling Quick ExampleMetadata.swift
[20/27] Compiling Quick Filter.swift
[21/27] Compiling Quick Closures.swift
[22/27] Compiling Quick NSBundle+CurrentTestBundle.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[23/27] Compiling Quick QuickMain.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[24/27] Compiling Quick QuickSelectedTestSuiteBuilder.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[25/27] Compiling Quick String+C99ExtendedIdentifier.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[26/27] Compiling Quick URL+FileName.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
[27/27] Compiling Quick World.swift
/host/spi-builder-workspace/Sources/Quick/World.swift:79:29: warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 |     private override init() {}
 78 |
 79 |     static private(set) var sharedWorld = World()
    |                             |- warning: static property 'sharedWorld' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'sharedWorld' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'sharedWorld' 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
 80 |
 81 |     static func anotherWorld<T>(block: (World) -> T) -> T {
Build complete! (17.62s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.1.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    }
  ],
  "manifest_display_name" : "Quick",
  "name" : "Quick",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "Quick",
      "targets" : [
        "Quick"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "QuickTests",
      "module_type" : "SwiftTarget",
      "name" : "QuickTests",
      "path" : "Tests/QuickTests",
      "product_dependencies" : [
        "Nimble"
      ],
      "sources" : [
        "QuickAfterSuiteTests/AfterSuiteTests.swift",
        "QuickFocusedTests/FocusedTests.swift",
        "QuickTestHelpers/XCTestCaseProvider.swift",
        "QuickTests/Fixtures/FunctionalTests_BehaviorTests_Behaviors.swift",
        "QuickTests/Fixtures/FunctionalTests_SharedExamplesTests_SharedExamples.swift",
        "QuickTests/FunctionalTests/AfterEachTests.swift",
        "QuickTests/FunctionalTests/BeforeEachTests.swift",
        "QuickTests/FunctionalTests/BeforeSuiteTests.swift",
        "QuickTests/FunctionalTests/BehaviorTests.swift",
        "QuickTests/FunctionalTests/BundleModuleNameTests.swift",
        "QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEach.swift",
        "QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEachTests.swift",
        "QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEach.swift",
        "QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEachTests.swift",
        "QuickTests/FunctionalTests/ContextTests.swift",
        "QuickTests/FunctionalTests/CrossReferencingSpecs.swift",
        "QuickTests/FunctionalTests/CurrentSpecTests.swift",
        "QuickTests/FunctionalTests/DescribeTests.swift",
        "QuickTests/FunctionalTests/ItTests.swift",
        "QuickTests/FunctionalTests/PendingTests.swift",
        "QuickTests/FunctionalTests/QuickSpec_SelectedTests.swift",
        "QuickTests/FunctionalTests/SharedExamples+BeforeEachTests.swift",
        "QuickTests/FunctionalTests/SharedExamplesTests.swift",
        "QuickTests/Helpers/QuickSpec+MethodList.swift",
        "QuickTests/Helpers/QuickSpecRunner.swift",
        "QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.swift"
      ],
      "target_dependencies" : [
        "Quick"
      ],
      "type" : "test"
    },
    {
      "c99name" : "QuickIssue853RegressionTests",
      "module_type" : "SwiftTarget",
      "name" : "QuickIssue853RegressionTests",
      "path" : "Tests/QuickIssue853RegressionTests",
      "sources" : [
        "SubclassOfSubclassWithStructPropertyTests.swift"
      ],
      "target_dependencies" : [
        "Quick"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Quick",
      "module_type" : "SwiftTarget",
      "name" : "Quick",
      "path" : "Sources/Quick",
      "product_memberships" : [
        "Quick"
      ],
      "sources" : [
        "Behavior.swift",
        "Callsite.swift",
        "Configuration/Configuration.swift",
        "Configuration/QuickConfiguration.swift",
        "DSL/DSL.swift",
        "DSL/World+DSL.swift",
        "ErrorUtility.swift",
        "Example.swift",
        "ExampleGroup.swift",
        "ExampleMetadata.swift",
        "Filter.swift",
        "Hooks/Closures.swift",
        "Hooks/ExampleHooks.swift",
        "Hooks/HooksPhase.swift",
        "Hooks/SuiteHooks.swift",
        "NSBundle+CurrentTestBundle.swift",
        "QuickMain.swift",
        "QuickSelectedTestSuiteBuilder.swift",
        "QuickSpec.swift",
        "QuickTestObservation.swift",
        "QuickTestSuite.swift",
        "String+C99ExtendedIdentifier.swift",
        "URL+FileName.swift",
        "World.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
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.