Build Information
Successful build of Catbird, reference 0.11.0 (ad1187
), with Swift 6.1 for macOS (SPM) on 26 Apr 2025 20:12:10 UTC.
Swift 6 data race errors: 6
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/RedMadRobot/catbird.git
Reference: 0.11.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/RedMadRobot/catbird
* tag 0.11.0 -> FETCH_HEAD
HEAD is now at ad11879 Version 0.11.0
Cloned https://github.com/RedMadRobot/catbird.git
Revision (git rev-parse @):
ad118798331243b6debd0e783054fb0682f1734d
SUCCESS checkout https://github.com/RedMadRobot/catbird.git at 0.11.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "catbird",
"name": "Catbird",
"url": "https://github.com/RedMadRobot/catbird.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/catbird",
"dependencies": [
]
}
]
}
Fetching https://github.com/RedMadRobot/catbird.git
[1/1444] Fetching catbird
Fetched https://github.com/RedMadRobot/catbird.git from cache (1.01s)
Creating working copy for https://github.com/RedMadRobot/catbird.git
Working copy of https://github.com/RedMadRobot/catbird.git resolved at 0.11.0 (ad11879)
warning: '.resolve-product-dependencies': dependency 'catbird' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/RedMadRobot/catbird.git
https://github.com/RedMadRobot/catbird.git
{
"dependencies" : [
],
"manifest_display_name" : "Catbird",
"name" : "Catbird",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "CatbirdAPI",
"targets" : [
"CatbirdAPI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CatbirdAPITests",
"module_type" : "SwiftTarget",
"name" : "CatbirdAPITests",
"path" : "Packages/CatbirdAPI/Tests",
"sources" : [
"CatbirdAPITests/CatbirdActionTests.swift",
"CatbirdAPITests/CatbirdTests.swift",
"CatbirdAPITests/Network.swift",
"CatbirdAPITests/PatternMatchTests.swift"
],
"target_dependencies" : [
"CatbirdAPI"
],
"type" : "test"
},
{
"c99name" : "CatbirdAPI",
"module_type" : "SwiftTarget",
"name" : "CatbirdAPI",
"path" : "Packages/CatbirdAPI/Sources",
"product_memberships" : [
"CatbirdAPI"
],
"sources" : [
"CatbirdAPI/Catbird.swift",
"CatbirdAPI/CatbirdAction.swift",
"CatbirdAPI/CatbirdError.swift",
"CatbirdAPI/PatternMatch.swift",
"CatbirdAPI/RequestPattern.swift",
"CatbirdAPI/ResponseMock.swift"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/9] Compiling CatbirdAPI RequestPattern.swift
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:45:27: warning: static property 'GET' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
43 | }
44 |
45 | public static let GET = HTTPMethod("GET")
| |- warning: static property 'GET' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'GET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | public static let POST = HTTPMethod("POST")
47 | public static let PUT = HTTPMethod("PUT")
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:46:27: warning: static property 'POST' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
44 |
45 | public static let GET = HTTPMethod("GET")
46 | public static let POST = HTTPMethod("POST")
| |- warning: static property 'POST' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'POST' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | public static let PUT = HTTPMethod("PUT")
48 | public static let PATCH = HTTPMethod("PATCH")
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:47:27: warning: static property 'PUT' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
45 | public static let GET = HTTPMethod("GET")
46 | public static let POST = HTTPMethod("POST")
47 | public static let PUT = HTTPMethod("PUT")
| |- warning: static property 'PUT' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PUT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | public static let PATCH = HTTPMethod("PATCH")
49 | public static let DELETE = HTTPMethod("DELETE")
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:48:27: warning: static property 'PATCH' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
46 | public static let POST = HTTPMethod("POST")
47 | public static let PUT = HTTPMethod("PUT")
48 | public static let PATCH = HTTPMethod("PATCH")
| |- warning: static property 'PATCH' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PATCH' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | public static let DELETE = HTTPMethod("DELETE")
50 | }
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:49:27: warning: static property 'DELETE' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
47 | public static let PUT = HTTPMethod("PUT")
48 | public static let PATCH = HTTPMethod("PATCH")
49 | public static let DELETE = HTTPMethod("DELETE")
| |- warning: static property 'DELETE' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DELETE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 | }
[4/9] Compiling CatbirdAPI CatbirdAction.swift
[5/9] Compiling CatbirdAPI PatternMatch.swift
[6/9] Compiling CatbirdAPI ResponseMock.swift
[7/9] Compiling CatbirdAPI CatbirdError.swift
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/CatbirdError.swift:16:23: warning: static property 'errorDomain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// The domain of the error.
16 | public static var errorDomain = "com.redmadrobot.catbird.APIErrorDomain"
| |- warning: static property 'errorDomain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorDomain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'errorDomain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | /// HTTP status code.
[8/9] Compiling CatbirdAPI Catbird.swift
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/Catbird.swift:79:17: warning: capture of 'completion' with non-sendable type '((any Error)?) -> Void' in a '@Sendable' closure
77 | switch (response, error) {
78 | case (_, let error?):
79 | completion(error)
| |- warning: capture of 'completion' with non-sendable type '((any Error)?) -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
80 | case (let http as HTTPURLResponse, _):
81 | completion(CatbirdError(statusCode: http.statusCode, data: data))
[9/9] Emitting module CatbirdAPI
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/CatbirdError.swift:16:23: warning: static property 'errorDomain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// The domain of the error.
16 | public static var errorDomain = "com.redmadrobot.catbird.APIErrorDomain"
| |- warning: static property 'errorDomain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'errorDomain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'errorDomain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | /// HTTP status code.
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:45:27: warning: static property 'GET' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
43 | }
44 |
45 | public static let GET = HTTPMethod("GET")
| |- warning: static property 'GET' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'GET' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | public static let POST = HTTPMethod("POST")
47 | public static let PUT = HTTPMethod("PUT")
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:46:27: warning: static property 'POST' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
44 |
45 | public static let GET = HTTPMethod("GET")
46 | public static let POST = HTTPMethod("POST")
| |- warning: static property 'POST' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'POST' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | public static let PUT = HTTPMethod("PUT")
48 | public static let PATCH = HTTPMethod("PATCH")
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:47:27: warning: static property 'PUT' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
45 | public static let GET = HTTPMethod("GET")
46 | public static let POST = HTTPMethod("POST")
47 | public static let PUT = HTTPMethod("PUT")
| |- warning: static property 'PUT' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PUT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | public static let PATCH = HTTPMethod("PATCH")
49 | public static let DELETE = HTTPMethod("DELETE")
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:48:27: warning: static property 'PATCH' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
46 | public static let POST = HTTPMethod("POST")
47 | public static let PUT = HTTPMethod("PUT")
48 | public static let PATCH = HTTPMethod("PATCH")
| |- warning: static property 'PATCH' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PATCH' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | public static let DELETE = HTTPMethod("DELETE")
50 | }
/Users/admin/builder/spi-builder-workspace/Packages/CatbirdAPI/Sources/CatbirdAPI/RequestPattern.swift:49:27: warning: static property 'DELETE' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension RequestPattern {
38 | public struct HTTPMethod: RawRepresentable, Hashable, Codable {
| `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
39 | public let rawValue: String
40 |
:
47 | public static let PUT = HTTPMethod("PUT")
48 | public static let PATCH = HTTPMethod("PATCH")
49 | public static let DELETE = HTTPMethod("DELETE")
| |- warning: static property 'DELETE' is not concurrency-safe because non-'Sendable' type 'RequestPattern.HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'DELETE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | }
51 | }
Build complete! (4.92s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Catbird",
"name" : "Catbird",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "CatbirdAPI",
"targets" : [
"CatbirdAPI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CatbirdAPITests",
"module_type" : "SwiftTarget",
"name" : "CatbirdAPITests",
"path" : "Packages/CatbirdAPI/Tests",
"sources" : [
"CatbirdAPITests/CatbirdActionTests.swift",
"CatbirdAPITests/CatbirdTests.swift",
"CatbirdAPITests/Network.swift",
"CatbirdAPITests/PatternMatchTests.swift"
],
"target_dependencies" : [
"CatbirdAPI"
],
"type" : "test"
},
{
"c99name" : "CatbirdAPI",
"module_type" : "SwiftTarget",
"name" : "CatbirdAPI",
"path" : "Packages/CatbirdAPI/Sources",
"product_memberships" : [
"CatbirdAPI"
],
"sources" : [
"CatbirdAPI/Catbird.swift",
"CatbirdAPI/CatbirdAction.swift",
"CatbirdAPI/CatbirdError.swift",
"CatbirdAPI/PatternMatch.swift",
"CatbirdAPI/RequestPattern.swift",
"CatbirdAPI/ResponseMock.swift"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
Done.