Build Information
Successful build of Threading, reference 2.2.0 (32b7d1
), with Swift 6.2 (beta) for macOS (SPM) on 24 Jun 2025 14:36:12 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/NikSativa/Threading.git
Reference: 2.2.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/NikSativa/Threading
* tag 2.2.0 -> FETCH_HEAD
HEAD is now at 32b7d1e - Add `ThreadingStatic` and `ThreadingDynamic` library products alongside the existing `Threading` target - Expand project description, overview section, and usage examples - Remove deprecated top-level source files and adjust imports/tests to reflect new structure - Add Mutex and Locker primitives
Cloned https://github.com/NikSativa/Threading.git
Revision (git rev-parse @):
32b7d1ecc49299e900494495f9065cb74527a1d8
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/NikSativa/Threading.git at 2.2.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/NikSativa/Threading.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[0/7] Copying PrivacyInfo.xcprivacy
[2/7] Write swift-version-1EA4D86E10B52AF.txt
[4/30] Emitting module Threading
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/SyncMutex.swift:121:36: warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'Sendable'
119 |
120 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
121 | extension QueueBarrier: @unchecked Sendable {}
| `- warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'Sendable'
122 | #endif
123 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/QueueBarrier.swift:139:1: note: 'QueueBarrier<Value>' declares conformance to protocol 'Sendable' here
137 | }
138 |
139 | extension QueueBarrier: @unchecked Sendable {}
| `- note: 'QueueBarrier<Value>' declares conformance to protocol 'Sendable' here
140 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/SyncMutex.swift:121:36: warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'SendableMetatype'
119 |
120 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
121 | extension QueueBarrier: @unchecked Sendable {}
| `- warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'SendableMetatype'
122 | #endif
123 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/QueueBarrier.swift:139:1: note: conformance to 'SendableMetatype' generated by macro here
137 | }
138 |
139 | extension QueueBarrier: @unchecked Sendable {}
| `- note: conformance to 'SendableMetatype' generated by macro here
140 |
[5/32] Compiling Threading USendable.swift
[6/32] Compiling Threading resource_bundle_accessor.swift
[7/32] Compiling Threading Mutexing.swift
/Users/admin/builder/spi-builder-workspace/Source/Mutexing.swift:150:24: warning: capture of non-sendable type 'Self.Type' in an isolated closure
148 | subscript<T: Sendable>(dynamicMember keyPath: KeyPath<Value, T>) -> T {
149 | let usendable = USendable(keyPath)
150 | return sync { [usendable] in
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
151 | return $0[keyPath: usendable.value]
152 | }
[8/32] Compiling Threading DelayedQueue.swift
/Users/admin/builder/spi-builder-workspace/Source/Mutexing.swift:150:24: warning: capture of non-sendable type 'Self.Type' in an isolated closure
148 | subscript<T: Sendable>(dynamicMember keyPath: KeyPath<Value, T>) -> T {
149 | let usendable = USendable(keyPath)
150 | return sync { [usendable] in
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
151 | return $0[keyPath: usendable.value]
152 | }
[9/32] Compiling Threading QueueBarrier.swift
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/SyncMutex.swift:121:36: warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'Sendable'
119 |
120 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
121 | extension QueueBarrier: @unchecked Sendable {}
| `- warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'Sendable'
122 | #endif
123 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/QueueBarrier.swift:139:1: note: 'QueueBarrier<Value>' declares conformance to protocol 'Sendable' here
137 | }
138 |
139 | extension QueueBarrier: @unchecked Sendable {}
| `- note: 'QueueBarrier<Value>' declares conformance to protocol 'Sendable' here
140 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/SyncMutex.swift:121:36: warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'SendableMetatype'
119 |
120 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
121 | extension QueueBarrier: @unchecked Sendable {}
| `- warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'SendableMetatype'
122 | #endif
123 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/QueueBarrier.swift:139:1: note: conformance to 'SendableMetatype' generated by macro here
137 | }
138 |
139 | extension QueueBarrier: @unchecked Sendable {}
| `- note: conformance to 'SendableMetatype' generated by macro here
140 |
[10/32] Compiling Threading SyncMutex.swift
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/SyncMutex.swift:121:36: warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'Sendable'
119 |
120 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
121 | extension QueueBarrier: @unchecked Sendable {}
| `- warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'Sendable'
122 | #endif
123 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/QueueBarrier.swift:139:1: note: 'QueueBarrier<Value>' declares conformance to protocol 'Sendable' here
137 | }
138 |
139 | extension QueueBarrier: @unchecked Sendable {}
| `- note: 'QueueBarrier<Value>' declares conformance to protocol 'Sendable' here
140 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/SyncMutex.swift:121:36: warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'SendableMetatype'
119 |
120 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
121 | extension QueueBarrier: @unchecked Sendable {}
| `- warning: redundant conformance of 'QueueBarrier<Value>' to protocol 'SendableMetatype'
122 | #endif
123 |
/Users/admin/builder/spi-builder-workspace/Source/Mutexes/QueueBarrier.swift:139:1: note: conformance to 'SendableMetatype' generated by macro here
137 | }
138 |
139 | extension QueueBarrier: @unchecked Sendable {}
| `- note: conformance to 'SendableMetatype' generated by macro here
140 |
[11/32] Compiling Threading DispatchTime+Queue.swift
[12/32] Compiling Threading Queue+Queueable.swift
[13/32] Compiling Threading UnfairLock.swift
[14/32] Compiling Threading Locking.swift
[15/32] Compiling Threading MutexInitializable.swift
[16/32] Compiling Threading LockedValue.swift
[17/32] Compiling Threading OSAllocatedUnfairMutex.swift
[18/32] Compiling Threading IsolatedMain.swift
[19/32] Compiling Threading NSLock.swift
[20/32] Compiling Threading NSRecursiveLock.swift
[21/32] Compiling Threading Queue.swift
[22/32] Compiling Threading Queueable.swift
[23/32] Compiling Threading OSAllocatedUnfairLock.swift
[24/32] Compiling Threading PThread.swift
[25/32] Compiling Threading Semaphore.swift
[26/32] Compiling Threading AnyLock.swift
[27/32] Compiling Threading AnyMutex.swift
[28/32] Compiling Threading AtomicValue.swift
[28/32] Write Objects.LinkFileList
[30/32] Archiving libThreadingStatic.a
[31/32] Linking libThreadingDynamic.dylib
Build complete! (24.83s)
Fetching https://github.com/NikSativa/SpryKit.git
[1/967] Fetching sprykit
Fetched https://github.com/NikSativa/SpryKit.git from cache (0.85s)
Computing version for https://github.com/NikSativa/SpryKit.git
Computed https://github.com/NikSativa/SpryKit.git at 3.0.4 (1.30s)
Fetching https://github.com/apple/swift-syntax.git
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
[1/1257] Fetching cwlpreconditiontesting
[1258/72204] Fetching cwlpreconditiontesting, swift-syntax
Fetched https://github.com/apple/swift-syntax.git from cache (10.95s)
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (10.95s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 600.0.1 (13.67s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.2.2 (0.49s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
[10/455] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.73s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.1 (1.25s)
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 600.0.1
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/NikSativa/SpryKit.git
Working copy of https://github.com/NikSativa/SpryKit.git resolved at 3.0.4
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.2
Build complete.
{
"dependencies" : [
{
"identity" : "sprykit",
"requirement" : {
"range" : [
{
"lower_bound" : "3.0.2",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/NikSativa/SpryKit.git"
}
],
"manifest_display_name" : "Threading",
"name" : "Threading",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "Threading",
"targets" : [
"Threading"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ThreadingStatic",
"targets" : [
"Threading"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "ThreadingDynamic",
"targets" : [
"Threading"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "ThreadingTests",
"module_type" : "SwiftTarget",
"name" : "ThreadingTests",
"path" : "Tests",
"product_dependencies" : [
"SpryKit"
],
"sources" : [
"AtomicTests.swift",
"AtomicUncheckedTests.swift",
"DelayedQueueTests.swift",
"DispatchTime_QueueTests.swift",
"IsolatedMainTests.swift",
"QueueTests.swift",
"TestHelpers/DelayedQueue+TestHelper.swift",
"TestHelpers/FakeQueueable.swift",
"TestHelpers/Queue+TestHelper.swift"
],
"target_dependencies" : [
"Threading"
],
"type" : "test"
},
{
"c99name" : "Threading",
"module_type" : "SwiftTarget",
"name" : "Threading",
"path" : "Source",
"product_memberships" : [
"Threading",
"ThreadingStatic",
"ThreadingDynamic"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Source/PrivacyInfo.xcprivacy",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"AnyLock.swift",
"AnyMutex.swift",
"AtomicValue.swift",
"IsolatedMain.swift",
"Lockers/NSLock.swift",
"Lockers/NSRecursiveLock.swift",
"Lockers/OSAllocatedUnfairLock.swift",
"Lockers/PThread.swift",
"Lockers/Semaphore.swift",
"Lockers/UnfairLock.swift",
"Locking.swift",
"MutexInitializable.swift",
"Mutexes/LockedValue.swift",
"Mutexes/OSAllocatedUnfairMutex.swift",
"Mutexes/QueueBarrier.swift",
"Mutexes/SyncMutex.swift",
"Mutexing.swift",
"Queue/DelayedQueue.swift",
"Queue/DispatchTime+Queue.swift",
"Queue/Queue+Queueable.swift",
"Queue/Queue.swift",
"Queue/Queueable.swift",
"USendable.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.