Build Information
Successful build of CollectionConcurrencyKit, reference main (b4f23e
), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 06:52:17 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/JohnSundell/CollectionConcurrencyKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/JohnSundell/CollectionConcurrencyKit
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at b4f23e2 README: Update system requirements for concurrency back-compat
Cloned https://github.com/JohnSundell/CollectionConcurrencyKit.git
Revision (git rev-parse @):
b4f23e24b5a1bff301efc5e70871083ca029ff95
SUCCESS checkout https://github.com/JohnSundell/CollectionConcurrencyKit.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/JohnSundell/CollectionConcurrencyKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/4] Compiling CollectionConcurrencyKit CollectionConcurrencyKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:39:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
37 | func concurrentForEach(
38 | withPriority priority: TaskPriority? = nil,
39 | _ operation: @escaping (Element) async -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
40 | ) async {
41 | await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:65:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | func concurrentForEach(
64 | withPriority priority: TaskPriority? = nil,
65 | _ operation: @escaping (Element) async throws -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
66 | ) async throws {
67 | try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:122:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 | func concurrentMap<T>(
121 | withPriority priority: TaskPriority? = nil,
122 | _ transform: @escaping (Element) async -> T
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
123 | ) async -> [T] {
124 | let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:153:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
151 | func concurrentMap<T>(
152 | withPriority priority: TaskPriority? = nil,
153 | _ transform: @escaping (Element) async throws -> T
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
154 | ) async throws -> [T] {
155 | let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:217:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
215 | func concurrentCompactMap<T>(
216 | withPriority priority: TaskPriority? = nil,
217 | _ transform: @escaping (Element) async -> T?
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
218 | ) async -> [T] {
219 | let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:250:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
248 | func concurrentCompactMap<T>(
249 | withPriority priority: TaskPriority? = nil,
250 | _ transform: @escaping (Element) async throws -> T?
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
251 | ) async throws -> [T] {
252 | let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:316:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
314 | let tasks = map { element in
315 | Task(priority: priority) {
316 | await transform(element)
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
317 | }
318 | }
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:312:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
310 | func concurrentFlatMap<T: Sequence>(
311 | withPriority priority: TaskPriority? = nil,
312 | _ transform: @escaping (Element) async -> T
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 | ) async -> [T.Element] {
314 | let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:312:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
310 | func concurrentFlatMap<T: Sequence>(
311 | withPriority priority: TaskPriority? = nil,
312 | _ transform: @escaping (Element) async -> T
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 | ) async -> [T.Element] {
314 | let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:350:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
348 | let tasks = map { element in
349 | Task(priority: priority) {
350 | try await transform(element)
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
351 | }
352 | }
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:346:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
344 | func concurrentFlatMap<T: Sequence>(
345 | withPriority priority: TaskPriority? = nil,
346 | _ transform: @escaping (Element) async throws -> T
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 | ) async throws -> [T.Element] {
348 | let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/CollectionConcurrencyKit.swift:346:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
344 | func concurrentFlatMap<T: Sequence>(
345 | withPriority priority: TaskPriority? = nil,
346 | _ transform: @escaping (Element) async throws -> T
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 | ) async throws -> [T.Element] {
348 | let tasks = map { element in
[4/4] Emitting module CollectionConcurrencyKit
Build complete! (0.80s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CollectionConcurrencyKit",
"name" : "CollectionConcurrencyKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "CollectionConcurrencyKit",
"targets" : [
"CollectionConcurrencyKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CollectionConcurrencyKitTests",
"module_type" : "SwiftTarget",
"name" : "CollectionConcurrencyKitTests",
"path" : "Tests",
"sources" : [
"CompactMapTests.swift",
"FlatMapTests.swift",
"ForEachTests.swift",
"MapTests.swift",
"TestCase.swift",
"TimingTests.swift"
],
"target_dependencies" : [
"CollectionConcurrencyKit"
],
"type" : "test"
},
{
"c99name" : "CollectionConcurrencyKit",
"module_type" : "SwiftTarget",
"name" : "CollectionConcurrencyKit",
"path" : "Sources",
"product_memberships" : [
"CollectionConcurrencyKit"
],
"sources" : [
"CollectionConcurrencyKit.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.