Build Information
Successful build of swift-concurrent-sequence, reference main (2e6a72
), with Swift 6.2 (beta) for macOS (SPM) on 7 Sep 2025 01:21:36 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.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dfed/swift-concurrent-sequence.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/dfed/swift-concurrent-sequence
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 2e6a72b Better documentation + improved module naming (#8)
Cloned https://github.com/dfed/swift-concurrent-sequence.git
Revision (git rev-parse @):
2e6a72b75b0a8a37e8967000cce546d6dd30ceb0
SUCCESS checkout https://github.com/dfed/swift-concurrent-sequence.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/dfed/swift-concurrent-sequence.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/5] Compiling ConcurrentSequence ConcurrentReduce.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConcurrentSequence/ConcurrentReduce.swift:56:4: warning: capture of non-sendable type 'Self.Type' in an isolated closure
54 | public func concurrentReduce(
55 | defaultValue: @autoclosure () -> Element,
56 | reducingIntoFirst: @Sendable (inout Element, Element) -> Void
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
57 | ) -> Element {
58 | var reduced = [Element](self)
/Users/admin/builder/spi-builder-workspace/Sources/ConcurrentSequence/ConcurrentReduce.swift:141:5: warning: capture of non-sendable type 'Self.Type' in an isolated closure
139 | public func concurrentReduce(
140 | defaultValue: @escaping @autoclosure () -> Element,
141 | _ reducer: @escaping @Sendable (Element, Element) async throws -> Element
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
142 | ) async rethrows -> Element {
143 | try await withThrowingTaskGroup(of: Element.self) { group in
[4/5] Compiling ConcurrentSequence ConcurrentMap.swift
[5/5] Emitting module ConcurrentSequence
Build complete! (1.95s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-concurrent-sequence",
"name" : "swift-concurrent-sequence",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "ConcurrentSequence",
"targets" : [
"ConcurrentSequence"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ConcurrentSequenceTests",
"module_type" : "SwiftTarget",
"name" : "ConcurrentSequenceTests",
"path" : "Tests/ConcurrentSequenceTests",
"sources" : [
"ConcurrentMapTests.swift",
"ConcurrentReduceTests.swift"
],
"target_dependencies" : [
"ConcurrentSequence"
],
"type" : "test"
},
{
"c99name" : "ConcurrentSequence",
"module_type" : "SwiftTarget",
"name" : "ConcurrentSequence",
"path" : "Sources/ConcurrentSequence",
"product_memberships" : [
"ConcurrentSequence"
],
"sources" : [
"ConcurrentMap.swift",
"ConcurrentReduce.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.