Build Information
Successful build of swift-questionable-concurrency, reference main (2db063), with Swift 6.3 for macOS (SPM) on 24 Apr 2026 20:47:14 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mochidev/swift-questionable-concurrency.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/mochidev/swift-questionable-concurrency
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 2db0630 Added workflows when PRs are merged onto main
Cloned https://github.com/mochidev/swift-questionable-concurrency.git
Revision (git rev-parse @):
2db06309cfbd5ae8e42e4d40bab0365328fd072e
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/mochidev/swift-questionable-concurrency.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",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-questionable-concurrency",
"name": "swift-questionable-concurrency",
"url": "https://github.com/mochidev/swift-questionable-concurrency.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-questionable-concurrency",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/mochidev/swift-questionable-concurrency.git
[1/196] Fetching swift-questionable-concurrency
Fetched https://github.com/mochidev/swift-questionable-concurrency.git from cache (0.72s)
Creating working copy for https://github.com/mochidev/swift-questionable-concurrency.git
Working copy of https://github.com/mochidev/swift-questionable-concurrency.git resolved at main (2db0630)
warning: '.resolve-product-dependencies': dependency 'swift-questionable-concurrency' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/mochidev/swift-questionable-concurrency.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/8] Compiling QuestionableConcurrency UnfairLock.swift
[4/8] Emitting module QuestionableConcurrency
[5/8] Compiling QuestionableConcurrency Promise.swift
[6/8] Compiling QuestionableConcurrency DeferredContinuation.swift
[7/8] Compiling QuestionableConcurrency Future.swift
[8/8] Compiling QuestionableConcurrency AsyncResult.swift
Build complete! (2.12s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-questionable-concurrency",
"name" : "swift-questionable-concurrency",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "QuestionableConcurrency",
"targets" : [
"QuestionableConcurrency"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "QuestionableConcurrencyTests",
"module_type" : "SwiftTarget",
"name" : "QuestionableConcurrencyTests",
"path" : "Tests/QuestionableConcurrencyTests",
"sources" : [
"AsyncResultTests.swift",
"DeferredContinuationTests.swift",
"FutureTests.swift",
"PromiseTests.swift",
"TestError.swift",
"UnfairLockTests.swift"
],
"target_dependencies" : [
"QuestionableConcurrency"
],
"type" : "test"
},
{
"c99name" : "QuestionableConcurrency",
"module_type" : "SwiftTarget",
"name" : "QuestionableConcurrency",
"path" : "Sources/QuestionableConcurrency",
"product_memberships" : [
"QuestionableConcurrency"
],
"sources" : [
"AsyncResult.swift",
"DeferredContinuation.swift",
"Future.swift",
"Promise.swift",
"UnfairLock.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/mochidev/swift-questionable-concurrency/main
Repository: mochidev/swift-questionable-concurrency
Swift version used: 6.3
Target: QuestionableConcurrency
Extracting symbol information for 'QuestionableConcurrency'...
Finished extracting symbol information for 'QuestionableConcurrency'. (20.28s)
Building documentation for 'QuestionableConcurrency'...
warning: Can't resolve 'Swift'
--> Sources/QuestionableConcurrency/AsyncResult.swift:75:73-75:86
73 | #endif
74 |
75 + /// Initialize an asynchronous value or result with a synchronous ``/Swift/Result``.
76 | ///
77 | /// - SeeAlso: ``AsyncResult``
warning: Can't resolve 'Concurrency'
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:16:14-16:46
14 | /// ## Comparison with Standard Types
15 | ///
16 + /// Unlike ``/Concurrency/CheckedContinuation`` and ``/Concurrency/UnsafeContinuation``, ``DeferredContinuation`` can be initialized anywhere, and its ``future`` can be awaited at any time. Similarly to the standard library types, a continuation _must_ be resumed exactly once using ``resume(with:)``.
| ╰─suggestion: Replace 'Concurrency' with 'QuestionableConcurrency'
17 | ///
18 | /// In `DEBUG` builds, a ``/Concurrency/CheckedContinuation`` will be used internally to suspend the current task when a value is read. In `RELEASE` builds, a ``/Concurrency/UnsafeContinuation`` will be used instead.
warning: Can't resolve 'Concurrency'
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:16:55-16:86
14 | /// ## Comparison with Standard Types
15 | ///
16 + /// Unlike ``/Concurrency/CheckedContinuation`` and ``/Concurrency/UnsafeContinuation``, ``DeferredContinuation`` can be initialized anywhere, and its ``future`` can be awaited at any time. Similarly to the standard library types, a continuation _must_ be resumed exactly once using ``resume(with:)``.
| ╰─suggestion: Replace 'Concurrency' with 'QuestionableConcurrency'
17 | ///
18 | /// In `DEBUG` builds, a ``/Concurrency/CheckedContinuation`` will be used internally to suspend the current task when a value is read. In `RELEASE` builds, a ``/Concurrency/UnsafeContinuation`` will be used instead.
warning: Can't resolve 'Concurrency'
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:18:28-18:60
16 | /// Unlike ``/Concurrency/CheckedContinuation`` and ``/Concurrency/UnsafeContinuation``, ``DeferredContinuation`` can be initialized anywhere, and its ``future`` can be awaited at any time. Similarly to the standard library types, a continuation _must_ be resumed exactly once using ``resume(with:)``.
17 | ///
18 + /// In `DEBUG` builds, a ``/Concurrency/CheckedContinuation`` will be used internally to suspend the current task when a value is read. In `RELEASE` builds, a ``/Concurrency/UnsafeContinuation`` will be used instead.
| ╰─suggestion: Replace 'Concurrency' with 'QuestionableConcurrency'
19 | ///
20 | /// - SeeAlso: Use ``Promise`` instead for a safer interface for working with deferred values.
warning: Can't resolve 'Concurrency'
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:18:162-18:193
16 | /// Unlike ``/Concurrency/CheckedContinuation`` and ``/Concurrency/UnsafeContinuation``, ``DeferredContinuation`` can be initialized anywhere, and its ``future`` can be awaited at any time. Similarly to the standard library types, a continuation _must_ be resumed exactly once using ``resume(with:)``.
17 | ///
18 + /// In `DEBUG` builds, a ``/Concurrency/CheckedContinuation`` will be used internally to suspend the current task when a value is read. In `RELEASE` builds, a ``/Concurrency/UnsafeContinuation`` will be used instead.
| ╰─suggestion: Replace 'Concurrency' with 'QuestionableConcurrency'
19 | ///
20 | /// - SeeAlso: Use ``Promise`` instead for a safer interface for working with deferred values.
warning: Parameter 'successType' not found in initializer declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:133:11-133:64
131 | /// - Parameters:
132 | /// - continuationName: A name to assign to the continuation to track when it is misused.
133 + /// - successType: The success type for the continuation.
| ╰─suggestion: Remove 'successType' parameter documentation
134 | /// - failureType: The failure type for the continuation.
135 | public init(
warning: Parameter 'successType' not found in initializer declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:148:11-148:64
146 | /// - Parameters:
147 | /// - continuationName: A name to assign to the continuation to track when it is misused.
148 + /// - successType: The success type for the continuation.
| ╰─suggestion: Remove 'successType' parameter documentation
149 | /// - failureType: The failure type for the continuation.
150 | public init(
warning: Parameter 'failureType' not found in initializer declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:164:11-164:64
162 | /// - continuationName: A name to assign to the continuation to track when it is misused.
163 | /// - successType: The success type for the continuation.
164 + /// - failureType: The failure type for the continuation.
| ╰─suggestion: Remove 'failureType' parameter documentation
165 | public init(
166 | name continuationName: String? = nil,
warning: Parameter 'successType' not found in initializer declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:178:11-178:64
176 | /// - Parameters:
177 | /// - continuationName: A name to assign to the continuation to track when it is misused.
178 + /// - successType: The success type for the continuation.
| ╰─suggestion: Remove 'successType' parameter documentation
179 | /// - failureType: The failure type for the continuation.
180 | public init(
warning: Parameter 'failureType' not found in initializer declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:179:11-179:64
177 | /// - continuationName: A name to assign to the continuation to track when it is misused.
178 | /// - successType: The success type for the continuation.
179 + /// - failureType: The failure type for the continuation.
| ╰─suggestion: Remove 'failureType' parameter documentation
180 | public init(
181 | name continuationName: String? = nil
warning: Parameter 'failureType' not found in type method declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:193:11-193:64
191 | /// - continuationName: A name to assign to the continuation to track when it is misused.
192 | /// - successType: The success type for the continuation.
193 + /// - failureType: The failure type for the continuation.
| ╰─suggestion: Remove 'failureType' parameter documentation
194 | public static func throwing(
195 | name continuationName: String? = nil,
warning: Parameter 'successType' not found in type method declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:207:11-207:64
205 | /// - Parameters:
206 | /// - continuationName: A name to assign to the continuation to track when it is misused.
207 + /// - successType: The success type for the continuation.
| ╰─suggestion: Remove 'successType' parameter documentation
208 | /// - failureType: The failure type for the continuation.
209 | public static func throwing(
warning: Parameter 'failureType' not found in type method declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:208:11-208:64
206 | /// - continuationName: A name to assign to the continuation to track when it is misused.
207 | /// - successType: The success type for the continuation.
208 + /// - failureType: The failure type for the continuation.
| ╰─suggestion: Remove 'failureType' parameter documentation
209 | public static func throwing(
210 | name continuationName: String? = nil
warning: Parameter 'successType' not found in type method declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:221:11-221:64
219 | /// - Parameters:
220 | /// - continuationName: A name to assign to the continuation to track when it is misused.
221 + /// - successType: The success type for the continuation.
| ╰─suggestion: Remove 'successType' parameter documentation
222 | /// - failureType: The failure type for the continuation.
223 | public static func alwaysThrowing(
warning: Parameter 'failureType' not found in type method declaration
--> Sources/QuestionableConcurrency/DeferredContinuation.swift:222:11-222:64
220 | /// - continuationName: A name to assign to the continuation to track when it is misused.
221 | /// - successType: The success type for the continuation.
222 + /// - failureType: The failure type for the continuation.
| ╰─suggestion: Remove 'failureType' parameter documentation
223 | public static func alwaysThrowing(
224 | name continuationName: String? = nil
warning: Can't resolve 'Concurrency'
--> Sources/QuestionableConcurrency/Promise.swift:12:100-12:117
10 | /// A _Promise_ to provide a deferred value that can be fulfilled at a later time.
11 | ///
12 + /// A promise vends a ``future``, whose ``AsyncResult/value-5r346`` can be awaited in a separate ``/Concurrency/Task`` to suspend that task until the promise is ready to be fulfilled.
| ╰─suggestion: Replace 'Concurrency' with 'QuestionableConcurrency'
13 | ///
14 | /// A promise is fulfilled by being resumed _exactly once_ using ``resume(with:)-(Result<Success,Failure>)``. A promise's ``future`` should be saved separately before resuming the promise.
warning: Parameter 'successType' not found in initializer declaration
--> Sources/QuestionableConcurrency/Promise.swift:69:11-69:59
67 | /// - Parameters:
68 | /// - promiseName: A name to assign to the promise to track when it is misused.
69 + /// - successType: The success type for the promise.
| ╰─suggestion: Remove 'successType' parameter documentation
70 | /// - failureType: The failure type for the promise.
71 | public init(
warning: Parameter 'successType' not found in initializer declaration
--> Sources/QuestionableConcurrency/Promise.swift:84:11-84:59
82 | /// - Parameters:
83 | /// - promiseName: A name to assign to the promise to track when it is misused.
84 + /// - successType: The success type for the promise.
| ╰─suggestion: Remove 'successType' parameter documentation
85 | /// - failureType: The failure type for the promise.
86 | public init(
warning: Parameter 'failureType' not found in initializer declaration
--> Sources/QuestionableConcurrency/Promise.swift:100:11-100:59
98 | /// - promiseName: A name to assign to the promise to track when it is misused.
99 | /// - successType: The success type for the promise.
100 + /// - failureType: The failure type for the promise.
| ╰─suggestion: Remove 'failureType' parameter documentation
101 | public init(
102 | name promiseName: String? = nil,
warning: Parameter 'successType' not found in initializer declaration
--> Sources/QuestionableConcurrency/Promise.swift:114:11-114:59
112 | /// - Parameters:
113 | /// - promiseName: A name to assign to the promise to track when it is misused.
114 + /// - successType: The success type for the promise.
| ╰─suggestion: Remove 'successType' parameter documentation
115 | /// - failureType: The failure type for the promise.
116 | public init(
warning: Parameter 'failureType' not found in initializer declaration
--> Sources/QuestionableConcurrency/Promise.swift:115:11-115:59
113 | /// - promiseName: A name to assign to the promise to track when it is misused.
114 | /// - successType: The success type for the promise.
115 + /// - failureType: The failure type for the promise.
| ╰─suggestion: Remove 'failureType' parameter documentation
116 | public init(
117 | name promiseName: String? = nil
warning: Parameter 'failureType' not found in type method declaration
--> Sources/QuestionableConcurrency/Promise.swift:129:11-129:59
127 | /// - promiseName: A name to assign to the promise to track when it is misused.
128 | /// - successType: The success type for the promise.
129 + /// - failureType: The failure type for the promise.
| ╰─suggestion: Remove 'failureType' parameter documentation
130 | public static func throwing(
131 | name promiseName: String? = nil,
warning: Parameter 'successType' not found in type method declaration
--> Sources/QuestionableConcurrency/Promise.swift:143:11-143:59
141 | /// - Parameters:
142 | /// - promiseName: A name to assign to the promise to track when it is misused.
143 + /// - successType: The success type for the promise.
| ╰─suggestion: Remove 'successType' parameter documentation
144 | /// - failureType: The failure type for the promise.
145 | public static func throwing(
warning: Parameter 'failureType' not found in type method declaration
--> Sources/QuestionableConcurrency/Promise.swift:144:11-144:59
142 | /// - promiseName: A name to assign to the promise to track when it is misused.
143 | /// - successType: The success type for the promise.
144 + /// - failureType: The failure type for the promise.
| ╰─suggestion: Remove 'failureType' parameter documentation
145 | public static func throwing(
146 | name promiseName: String? = nil
warning: Parameter 'successType' not found in type method declaration
--> Sources/QuestionableConcurrency/Promise.swift:157:11-157:59
155 | /// - Parameters:
156 | /// - promiseName: A name to assign to the promise to track when it is misused.
157 + /// - successType: The success type for the promise.
| ╰─suggestion: Remove 'successType' parameter documentation
158 | /// - failureType: The failure type for the promise.
159 | public static func alwaysThrowing(
warning: Parameter 'failureType' not found in type method declaration
--> Sources/QuestionableConcurrency/Promise.swift:158:11-158:59
156 | /// - promiseName: A name to assign to the promise to track when it is misused.
157 | /// - successType: The success type for the promise.
158 + /// - failureType: The failure type for the promise.
| ╰─suggestion: Remove 'failureType' parameter documentation
159 | public static func alwaysThrowing(
160 | name promiseName: String? = nil
warning: Parameter 'result' not found in instance method declaration
--> Sources/QuestionableConcurrency/Promise.swift:168:9-168:120
166 | extension Promise {
167 | /// Fulfill a promise by resuming it with a successful value.
168 + /// - Parameter result: The value that should be returned when ``future``'s ``AsyncResult/value-5r346`` is awaited.
| ╰─suggestion: Remove 'result' parameter documentation
169 | public consuming func resume(returning value: sending Success) {
170 | resume(with: .success(value))
warning: Parameter 'value' is missing documentation
--> Sources/QuestionableConcurrency/Promise.swift:168:120-168:120
166 | extension Promise {
167 | /// Fulfill a promise by resuming it with a successful value.
168 + /// - Parameter result: The value that should be returned when ``future``'s ``AsyncResult/value-5r346`` is awaited.
| ╰─suggestion: Document 'value' parameter
169 | public consuming func resume(returning value: sending Success) {
170 | resume(with: .success(value))
warning: Parameter 'result' not found in instance method declaration
--> Sources/QuestionableConcurrency/Promise.swift:174:9-174:118
172 |
173 | /// Fulfill a promise by resuming it with a failing error.
174 + /// - Parameter result: The error that should be thrown when ``future``'s ``AsyncResult/value-5r346`` is awaited.
| ╰─suggestion: Remove 'result' parameter documentation
175 | public consuming func resume(throwing error: Failure) {
176 | resume(with: .failure(error))
warning: Parameter 'result' not found in instance method declaration
--> Sources/QuestionableConcurrency/Promise.swift:186:9-186:94
184 |
185 | /// Fulfill a promise by resuming it.
186 + /// - Parameter result: Un-suspend any tasks awaiting ``future``'s ``AsyncResult/value``.
| ╰─suggestion: Remove 'result' parameter documentation
187 | public consuming func resume() where Success == () {
188 | resume(with: .success(()))
Finished building documentation for 'QuestionableConcurrency' (0.33s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/mochidev/swift-questionable-concurrency/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.22s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (3.84s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3675] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.10s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.81s)
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.6
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--6988338F2F200930.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Identifier.swift
[8/57] Compiling SymbolKit KindIdentifier.swift
[9/57] Compiling SymbolKit Location.swift
[10/57] Compiling SymbolKit Mutability.swift
[11/57] Compiling SymbolKit GenericConstraint.swift
[12/57] Compiling SymbolKit GenericParameter.swift
[13/57] Compiling SymbolKit Generics.swift
[14/57] Compiling SymbolKit Namespace.swift
[15/57] Compiling SymbolKit SemanticVersion.swift
[16/57] Compiling SymbolKit AccessControl.swift
[17/57] Compiling SymbolKit Availability.swift
[18/57] Compiling SymbolKit AvailabilityItem.swift
[19/57] Compiling SymbolKit Domain.swift
[20/57] Compiling SymbolKit SourceRange.swift
[21/57] Compiling SymbolKit Metadata.swift
[22/57] Compiling SymbolKit Module.swift
[23/57] Compiling SymbolKit OperatingSystem.swift
[24/57] Compiling SymbolKit Platform.swift
[25/57] Compiling SymbolKit Mixin+Equals.swift
[26/57] Compiling SymbolKit Mixin+Hash.swift
[27/57] Compiling SymbolKit Mixin.swift
[28/57] Compiling SymbolKit LineList.swift
[29/57] Compiling SymbolKit Position.swift
[30/57] Compiling SymbolKit DeclarationFragments.swift
[31/57] Compiling SymbolKit Fragment.swift
[32/57] Compiling SymbolKit FragmentKind.swift
[33/57] Compiling SymbolKit FunctionParameter.swift
[34/57] Compiling SymbolKit FunctionSignature.swift
[35/57] Compiling SymbolKit Relationship.swift
[36/57] Compiling SymbolKit RelationshipKind.swift
[37/57] Compiling SymbolKit SourceOrigin.swift
[38/57] Compiling SymbolKit GenericConstraints.swift
[39/57] Compiling SymbolKit Swift.swift
[40/57] Compiling SymbolKit Names.swift
[41/57] Compiling SymbolKit SPI.swift
[42/57] Compiling SymbolKit Snippet.swift
[43/57] Compiling SymbolKit Extension.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling Snippets Snippet.swift
[49/57] Emitting module Snippets
[50/57] Compiling Snippets SnippetParser.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] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.14s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'QuestionableConcurrency' complete! (0.23s)
178
2 /Users/admin/builder/spi-builder-workspace/.docs/mochidev/swift-questionable-concurrency/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/mochidev/swift-questionable-concurrency/main
File count: 178
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-mochidev-swift-questionable-concurrency-main-0be7736b.zip to s3://spi-docs-inbox/prod-mochidev-swift-questionable-concurrency-main-0be7736b.zip
Copying... [13%]
Copying... [26%]
Copying... [39%]
Copying... [52%]
Copying... [65%]
Copying... [78%]
Copying... [91%]
Copying... [100%]
Done.