Build Information
Successful build of AsyncPlus, reference main (dfb854
), with Swift 6.1 for macOS (SPM) on 28 Jun 2025 18:31:10 UTC.
Swift 6 data race errors: 0
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.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/richardpiazza/AsyncPlus.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/richardpiazza/AsyncPlus
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at dfb8548 Sendable Output (#7)
Cloned https://github.com/richardpiazza/AsyncPlus.git
Revision (git rev-parse @):
dfb85489131cb3cad7547012a3ed10e995ee0b84
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/richardpiazza/AsyncPlus.git at main
========================================
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": "asyncplus",
"name": "AsyncPlus",
"url": "https://github.com/richardpiazza/AsyncPlus.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/AsyncPlus",
"dependencies": [
]
}
]
}
Fetching https://github.com/richardpiazza/AsyncPlus.git
[1/141] Fetching asyncplus
Fetched https://github.com/richardpiazza/AsyncPlus.git from cache (0.66s)
Creating working copy for https://github.com/richardpiazza/AsyncPlus.git
Working copy of https://github.com/richardpiazza/AsyncPlus.git resolved at main (dfb8548)
warning: '.resolve-product-dependencies': dependency 'asyncplus' 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/richardpiazza/AsyncPlus.git
https://github.com/richardpiazza/AsyncPlus.git
{
"dependencies" : [
],
"manifest_display_name" : "AsyncPlus",
"name" : "AsyncPlus",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "16.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "AsyncPlus",
"targets" : [
"AsyncPlus"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AsyncPlusTests",
"module_type" : "SwiftTarget",
"name" : "AsyncPlusTests",
"path" : "Tests/AsyncPlusTests",
"sources" : [
"CurrentValueSubjectTests.swift",
"PassthroughSequenceTests.swift",
"PassthroughSubjectTests.swift"
],
"target_dependencies" : [
"AsyncPlus"
],
"type" : "test"
},
{
"c99name" : "AsyncPlus",
"module_type" : "SwiftTarget",
"name" : "AsyncPlus",
"path" : "Sources/AsyncPlus",
"product_memberships" : [
"AsyncPlus"
],
"sources" : [
"CurrentValueAsyncSubject.swift",
"CurrentValueAsyncThrowingSubject.swift",
"PassthroughAsyncSequence.swift",
"PassthroughAsyncSubject.swift",
"PassthroughAsyncThrowingSequence.swift",
"PassthroughAsyncThrowingSubject.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
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 AsyncPlus PassthroughAsyncThrowingSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncPlus/PassthroughAsyncThrowingSequence.swift:23:22: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
21 |
22 | public func yield(_ element: Element) {
23 | continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
24 | }
25 |
[4/9] Compiling AsyncPlus PassthroughAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncPlus/PassthroughAsyncSequence.swift:23:22: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
21 |
22 | public func yield(_ element: Element) {
23 | continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
24 | }
25 |
[5/9] Emitting module AsyncPlus
[6/9] Compiling AsyncPlus CurrentValueAsyncSubject.swift
[7/9] Compiling AsyncPlus PassthroughAsyncSubject.swift
[8/9] Compiling AsyncPlus PassthroughAsyncThrowingSubject.swift
[9/9] Compiling AsyncPlus CurrentValueAsyncThrowingSubject.swift
Build complete! (5.03s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "AsyncPlus",
"name" : "AsyncPlus",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "16.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "AsyncPlus",
"targets" : [
"AsyncPlus"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AsyncPlusTests",
"module_type" : "SwiftTarget",
"name" : "AsyncPlusTests",
"path" : "Tests/AsyncPlusTests",
"sources" : [
"CurrentValueSubjectTests.swift",
"PassthroughSequenceTests.swift",
"PassthroughSubjectTests.swift"
],
"target_dependencies" : [
"AsyncPlus"
],
"type" : "test"
},
{
"c99name" : "AsyncPlus",
"module_type" : "SwiftTarget",
"name" : "AsyncPlus",
"path" : "Sources/AsyncPlus",
"product_memberships" : [
"AsyncPlus"
],
"sources" : [
"CurrentValueAsyncSubject.swift",
"CurrentValueAsyncThrowingSubject.swift",
"PassthroughAsyncSequence.swift",
"PassthroughAsyncSubject.swift",
"PassthroughAsyncThrowingSequence.swift",
"PassthroughAsyncThrowingSubject.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/richardpiazza/asyncplus/main
Repository: richardpiazza/AsyncPlus
Swift version used: 6.1
Target: AsyncPlus
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'AsyncPlus'...
Finished extracting symbol information for 'AsyncPlus'. (2.83s)
Building documentation for 'AsyncPlus'...
warning: Parameter 'onNoSubscription' not found in initializer declaration
--> Sources/AsyncPlus/CurrentValueAsyncSubject.swift:21:13-21:29
19 | /// - parameters:
20 | /// - value: The initial `Output` that will stored.
21 + /// - onNoSubscription: Function executed any time the number of subscribers reaches zero (0).
| ╰─suggestion: Replace 'onNoSubscription' with 'onNoSubscriptions'
22 | public init(_ value: Output, onNoSubscriptions: (() -> Void)? = nil) {
23 | self.value = value
warning: Parameter 'onNoSubscriptions' is missing documentation
--> Sources/AsyncPlus/CurrentValueAsyncSubject.swift:21:101-21:101
19 | /// - parameters:
20 | /// - value: The initial `Output` that will stored.
21 + /// - onNoSubscription: Function executed any time the number of subscribers reaches zero (0).
| ╰─suggestion: Document 'onNoSubscriptions' parameter
22 | public init(_ value: Output, onNoSubscriptions: (() -> Void)? = nil) {
23 | self.value = value
warning: Parameter 'onNoSubscription' not found in initializer declaration
--> Sources/AsyncPlus/CurrentValueAsyncThrowingSubject.swift:18:13-18:29
16 | /// - parameters:
17 | /// - value: The initial `Output` that will stored.
18 + /// - onNoSubscription: Function executed any time the number of subscribers reaches zero (0).
| ╰─suggestion: Replace 'onNoSubscription' with 'onNoSubscriptions'
19 | public init(_ value: Output, onNoSubscriptions: (() -> Void)? = nil) {
20 | self.value = value
warning: Parameter 'onNoSubscriptions' is missing documentation
--> Sources/AsyncPlus/CurrentValueAsyncThrowingSubject.swift:18:101-18:101
16 | /// - parameters:
17 | /// - value: The initial `Output` that will stored.
18 + /// - onNoSubscription: Function executed any time the number of subscribers reaches zero (0).
| ╰─suggestion: Document 'onNoSubscriptions' parameter
19 | public init(_ value: Output, onNoSubscriptions: (() -> Void)? = nil) {
20 | self.value = value
warning: Parameter 'onNoSubscription' not found in initializer declaration
--> Sources/AsyncPlus/PassthroughAsyncSubject.swift:17:13-17:29
15 | ///
16 | /// - parameters:
17 + /// - onNoSubscription: Function executed any time the number of subscribers reaches zero (0).
| ╰─suggestion: Replace 'onNoSubscription' with 'onNoSubscriptions'
18 | public init(onNoSubscriptions: (() -> Void)? = nil) {
19 | self.onNoSubscriptions = onNoSubscriptions
warning: Parameter 'onNoSubscriptions' is missing documentation
--> Sources/AsyncPlus/PassthroughAsyncSubject.swift:17:101-17:101
15 | ///
16 | /// - parameters:
17 + /// - onNoSubscription: Function executed any time the number of subscribers reaches zero (0).
| ╰─suggestion: Document 'onNoSubscriptions' parameter
18 | public init(onNoSubscriptions: (() -> Void)? = nil) {
19 | self.onNoSubscriptions = onNoSubscriptions
warning: Parameter 'onNoSubscription' not found in initializer declaration
--> Sources/AsyncPlus/PassthroughAsyncThrowingSubject.swift:14:13-14:29
12 | ///
13 | /// - parameters:
14 + /// - onNoSubscription: Function executed any time the number of subscribers reaches zero (0).
| ╰─suggestion: Replace 'onNoSubscription' with 'onNoSubscriptions'
15 | public init(onNoSubscriptions: (() -> Void)? = nil) {
16 | self.onNoSubscriptions = onNoSubscriptions
warning: Parameter 'onNoSubscriptions' is missing documentation
--> Sources/AsyncPlus/PassthroughAsyncThrowingSubject.swift:14:101-14:101
12 | ///
13 | /// - parameters:
14 + /// - onNoSubscription: Function executed any time the number of subscribers reaches zero (0).
| ╰─suggestion: Document 'onNoSubscriptions' parameter
15 | public init(onNoSubscriptions: (() -> Void)? = nil) {
16 | self.onNoSubscriptions = onNoSubscriptions
Finished building documentation for 'AsyncPlus' (0.17s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/asyncplus/main
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.62s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.4 (3.20s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.91s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.54s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit DeclarationFragments.swift
[8/57] Compiling SymbolKit Fragment.swift
[9/57] Compiling SymbolKit FragmentKind.swift
[10/57] Compiling SymbolKit FunctionParameter.swift
[11/57] Compiling SymbolKit FunctionSignature.swift
[12/57] Compiling SymbolKit Relationship.swift
[13/57] Compiling SymbolKit RelationshipKind.swift
[14/57] Compiling SymbolKit SourceOrigin.swift
[15/57] Compiling SymbolKit GenericConstraints.swift
[16/57] Compiling SymbolKit Swift.swift
[17/57] Compiling Snippets SnippetParser.swift
[18/57] Compiling Snippets Snippet.swift
[19/57] Emitting module Snippets
[20/57] Compiling SymbolKit SemanticVersion.swift
[21/57] Compiling SymbolKit AccessControl.swift
[22/57] Compiling SymbolKit Availability.swift
[23/57] Compiling SymbolKit AvailabilityItem.swift
[24/57] Compiling SymbolKit Domain.swift
[25/57] Compiling SymbolKit GenericConstraint.swift
[26/57] Compiling SymbolKit GenericParameter.swift
[27/57] Compiling SymbolKit Generics.swift
[28/57] Compiling SymbolKit Namespace.swift
[29/57] Compiling SymbolKit Mixin+Equals.swift
[30/57] Compiling SymbolKit Mixin+Hash.swift
[31/57] Compiling SymbolKit Mixin.swift
[32/57] Compiling SymbolKit LineList.swift
[33/57] Compiling SymbolKit Position.swift
[34/57] Compiling SymbolKit SourceRange.swift
[35/57] Compiling SymbolKit Metadata.swift
[36/57] Compiling SymbolKit Module.swift
[37/57] Compiling SymbolKit OperatingSystem.swift
[38/57] Compiling SymbolKit Platform.swift
[39/57] Compiling SymbolKit Names.swift
[40/57] Compiling SymbolKit SPI.swift
[41/57] Compiling SymbolKit Snippet.swift
[42/57] Compiling SymbolKit Extension.swift
[43/57] Compiling SymbolKit Symbol.swift
[44/57] Compiling SymbolKit SymbolKind.swift
[45/57] Compiling SymbolKit SymbolGraph.swift
[46/57] Compiling SymbolKit GraphCollector.swift
[47/57] Compiling SymbolKit Identifier.swift
[48/57] Compiling SymbolKit KindIdentifier.swift
[49/57] Compiling SymbolKit Location.swift
[50/57] Compiling SymbolKit Mutability.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.89s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/8] Compiling AsyncPlus PassthroughAsyncSubject.swift
[3/8] Compiling AsyncPlus PassthroughAsyncThrowingSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncPlus/PassthroughAsyncThrowingSequence.swift:23:22: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
21 |
22 | public func yield(_ element: Element) {
23 | continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
24 | }
25 |
[4/8] Compiling AsyncPlus PassthroughAsyncThrowingSubject.swift
[5/8] Compiling AsyncPlus CurrentValueAsyncSubject.swift
[6/8] Compiling AsyncPlus PassthroughAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncPlus/PassthroughAsyncSequence.swift:23:22: warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
21 |
22 | public func yield(_ element: Element) {
23 | continuation.yield(element)
| |- warning: sending 'element' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'element' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
24 | }
25 |
[7/8] Emitting module AsyncPlus
[8/8] Compiling AsyncPlus CurrentValueAsyncThrowingSubject.swift
Build of target: 'AsyncPlus' complete! (0.79s)
282
3 /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/asyncplus/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/richardpiazza/asyncplus/main
File count: 282
Doc size: 3.0MB
Preparing doc bundle ...
Uploading prod-richardpiazza-asyncplus-main-860fd11e.zip to s3://spi-docs-inbox/prod-richardpiazza-asyncplus-main-860fd11e.zip
Copying... [11%]
Copying... [22%]
Copying... [33%]
Copying... [43%]
Copying... [54%]
Copying... [65%]
Copying... [76%]
Copying... [87%]
Copying... [98%]
Copying... [100%]
Done.