Build Information
Successful build of Replicate, reference main (efd033), with Swift 6.3 for macOS (SPM) on 15 Apr 2026 01:07:00 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/replicate/replicate-swift.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/replicate/replicate-swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at efd033f Bump version to 0.24.0
Cloned https://github.com/replicate/replicate-swift.git
Revision (git rev-parse @):
efd033f4e421112b70e82221c813417e164aab7a
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/replicate/replicate-swift.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": "replicate-swift",
"name": "Replicate",
"url": "https://github.com/replicate/replicate-swift.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/replicate-swift",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/replicate/replicate-swift.git
[1/967] Fetching replicate-swift
Fetched https://github.com/replicate/replicate-swift.git from cache (0.83s)
Creating working copy for https://github.com/replicate/replicate-swift.git
Working copy of https://github.com/replicate/replicate-swift.git resolved at main (efd033f)
warning: '.resolve-product-dependencies': dependency 'replicate-swift' 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/replicate/replicate-swift.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/16] Compiling Replicate Training.swift
[4/17] Compiling Replicate Identifier.swift
[5/17] Compiling Replicate Model.swift
[6/17] Compiling Replicate Predictable.swift
[7/17] Compiling Replicate Status.swift
[8/17] Compiling Replicate Data+uriEncoded.swift
[9/17] Compiling Replicate Hardware.swift
[10/17] Compiling Replicate Deployment.swift
[11/17] Compiling Replicate Error.swift
[12/17] Compiling Replicate Value.swift
[13/17] Compiling Replicate Account.swift
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:99:31: warning: cannot use default expression for inference of 'Output.Type' because it is inferrable from parameters #3, #4; this will be an error in a future Swift language mode
97 | input: Input,
98 | webhook: Webhook? = nil,
99 | _ type: Output.Type = Value.self,
| `- warning: cannot use default expression for inference of 'Output.Type' because it is inferrable from parameters #3, #4; this will be an error in a future Swift language mode
100 | updateHandler: @escaping (Prediction<Input, Output>) throws -> Void = { _ in () }
101 | ) async throws -> Output? {
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:165:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
163 | @available(*, deprecated, message: "wait parameter is deprecated; use ``Prediction/wait(with:)`` or ``Client/run(_:input:webhook:_:)``")
164 | public func createPrediction<Input: Codable, Output: Codable>(
165 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
166 | version id: Model.Version.ID,
167 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:221:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
219 | /// - Returns: The created prediction.
220 | public func createPrediction<Input: Codable, Output: Codable>(
221 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
222 | version id: Model.Version.ID,
223 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:270:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
268 | /// - Returns: The created prediction.
269 | public func createPrediction<Input: Codable, Output: Codable>(
270 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
271 | model id: Model.ID,
272 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:319:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
317 | /// - Returns: The created prediction.
318 | public func createPrediction<Input: Codable, Output: Codable>(
319 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
320 | deployment id: Deployment.ID,
321 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:624:40: warning: cannot use default expression for inference of 'Training<Input>.Type' because it is inferrable from parameters #0, #4; this will be an error in a future Swift language mode
622 | /// so make sure it can be safely called more than once.
623 | public func createTraining<Input: Codable>(
624 | _ type: Training<Input>.Type = AnyTraining.self,
| `- warning: cannot use default expression for inference of 'Training<Input>.Type' because it is inferrable from parameters #0, #4; this will be an error in a future Swift language mode
625 | model: Model.ID,
626 | version: Model.Version.ID,
[14/17] Compiling Replicate Client.swift
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:99:31: warning: cannot use default expression for inference of 'Output.Type' because it is inferrable from parameters #3, #4; this will be an error in a future Swift language mode
97 | input: Input,
98 | webhook: Webhook? = nil,
99 | _ type: Output.Type = Value.self,
| `- warning: cannot use default expression for inference of 'Output.Type' because it is inferrable from parameters #3, #4; this will be an error in a future Swift language mode
100 | updateHandler: @escaping (Prediction<Input, Output>) throws -> Void = { _ in () }
101 | ) async throws -> Output? {
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:165:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
163 | @available(*, deprecated, message: "wait parameter is deprecated; use ``Prediction/wait(with:)`` or ``Client/run(_:input:webhook:_:)``")
164 | public func createPrediction<Input: Codable, Output: Codable>(
165 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
166 | version id: Model.Version.ID,
167 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:221:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
219 | /// - Returns: The created prediction.
220 | public func createPrediction<Input: Codable, Output: Codable>(
221 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
222 | version id: Model.Version.ID,
223 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:270:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
268 | /// - Returns: The created prediction.
269 | public func createPrediction<Input: Codable, Output: Codable>(
270 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
271 | model id: Model.ID,
272 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:319:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
317 | /// - Returns: The created prediction.
318 | public func createPrediction<Input: Codable, Output: Codable>(
319 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
320 | deployment id: Deployment.ID,
321 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:624:40: warning: cannot use default expression for inference of 'Training<Input>.Type' because it is inferrable from parameters #0, #4; this will be an error in a future Swift language mode
622 | /// so make sure it can be safely called more than once.
623 | public func createTraining<Input: Codable>(
624 | _ type: Training<Input>.Type = AnyTraining.self,
| `- warning: cannot use default expression for inference of 'Training<Input>.Type' because it is inferrable from parameters #0, #4; this will be an error in a future Swift language mode
625 | model: Model.ID,
626 | version: Model.Version.ID,
[15/17] Compiling Replicate Prediction.swift
[16/17] Emitting module Replicate
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:99:31: warning: cannot use default expression for inference of 'Output.Type' because it is inferrable from parameters #3, #4; this will be an error in a future Swift language mode
97 | input: Input,
98 | webhook: Webhook? = nil,
99 | _ type: Output.Type = Value.self,
| `- warning: cannot use default expression for inference of 'Output.Type' because it is inferrable from parameters #3, #4; this will be an error in a future Swift language mode
100 | updateHandler: @escaping (Prediction<Input, Output>) throws -> Void = { _ in () }
101 | ) async throws -> Output? {
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:165:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
163 | @available(*, deprecated, message: "wait parameter is deprecated; use ``Prediction/wait(with:)`` or ``Client/run(_:input:webhook:_:)``")
164 | public func createPrediction<Input: Codable, Output: Codable>(
165 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
166 | version id: Model.Version.ID,
167 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:221:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
219 | /// - Returns: The created prediction.
220 | public func createPrediction<Input: Codable, Output: Codable>(
221 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
222 | version id: Model.Version.ID,
223 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:270:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
268 | /// - Returns: The created prediction.
269 | public func createPrediction<Input: Codable, Output: Codable>(
270 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
271 | model id: Model.ID,
272 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:319:50: warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
317 | /// - Returns: The created prediction.
318 | public func createPrediction<Input: Codable, Output: Codable>(
319 | _ type: Prediction<Input, Output>.Type = AnyPrediction.self,
| `- warning: cannot use default expression for inference of 'Prediction<Input, Output>.Type' because it is inferrable from parameters #0, #2; this will be an error in a future Swift language mode
320 | deployment id: Deployment.ID,
321 | input: Input,
/Users/admin/builder/spi-builder-workspace/Sources/Replicate/Client.swift:624:40: warning: cannot use default expression for inference of 'Training<Input>.Type' because it is inferrable from parameters #0, #4; this will be an error in a future Swift language mode
622 | /// so make sure it can be safely called more than once.
623 | public func createTraining<Input: Codable>(
624 | _ type: Training<Input>.Type = AnyTraining.self,
| `- warning: cannot use default expression for inference of 'Training<Input>.Type' because it is inferrable from parameters #0, #4; this will be an error in a future Swift language mode
625 | model: Model.ID,
626 | version: Model.Version.ID,
[17/17] Compiling Replicate Webhook.swift
Build complete! (4.64s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Replicate",
"name" : "Replicate",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
}
],
"products" : [
{
"name" : "Replicate",
"targets" : [
"Replicate"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ReplicateTests",
"module_type" : "SwiftTarget",
"name" : "ReplicateTests",
"path" : "Tests/ReplicateTests",
"sources" : [
"ClientTests.swift",
"DateDecodingTests.swift",
"Helpers/MockURLProtocol.swift",
"PredictionTests.swift",
"RetryPolicyTests.swift",
"URIEncodingTests.swift"
],
"target_dependencies" : [
"Replicate"
],
"type" : "test"
},
{
"c99name" : "Replicate",
"module_type" : "SwiftTarget",
"name" : "Replicate",
"path" : "Sources/Replicate",
"product_memberships" : [
"Replicate"
],
"sources" : [
"Account.swift",
"Client.swift",
"Deployment.swift",
"Error.swift",
"Extensions/Data+uriEncoded.swift",
"Hardware.swift",
"Identifier.swift",
"Model.swift",
"Predictable.swift",
"Prediction.swift",
"Status.swift",
"Training.swift",
"Value.swift",
"Webhook.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/replicate/replicate-swift/main
Repository: replicate/replicate-swift
Swift version used: 6.3
Target: Replicate
Extracting symbol information for 'Replicate'...
Finished extracting symbol information for 'Replicate'. (28.63s)
Building documentation for 'Replicate'...
warning: 'CancellationError' doesn't exist at '/Replicate/Client/run(_:input:webhook:_:updateHandler:)'
--> Sources/Replicate/Client.swift:94:24-94:41
92 | /// - Throws:
93 | /// Any error thrown from the `updateHandler` closure
94 + /// other than ``CancellationError``.
95 | public func run<Input: Codable, Output: Codable>(
96 | _ identifier: Identifier,
warning: External name 'version' used to document parameter
--> Sources/Replicate/Client.swift:195:14-195:21
193 | /// - type:
194 | /// The type of the prediction. Defaults to `AnyPrediction.self`.
195 + /// - version:
| ╰─suggestion: Replace 'version' with 'id'
196 | /// The ID of the model version that you want to run.
197 | /// You can get your model's versions using the API,
warning: External name 'model' used to document parameter
--> Sources/Replicate/Client.swift:249:14-249:19
247 | /// - type:
248 | /// The type of the prediction. Defaults to `AnyPrediction.self`.
249 + /// - model:
| ╰─suggestion: Replace 'model' with 'id'
250 | /// The ID of the model that you want to run.
251 | /// - input:
warning: External name 'deployment' used to document parameter
--> Sources/Replicate/Client.swift:297:14-297:24
295 | /// - type:
296 | /// The type of the prediction. Defaults to `AnyPrediction.self`.
297 + /// - deployment:
| ╰─suggestion: Replace 'deployment' with 'id'
298 | /// The ID of the deployment.
299 | /// - input:
warning: Parameter 'Parameter cursor' not found in instance method declaration
--> Sources/Replicate/Client.swift:564:13-564:73
562 | /// List collections of models
563 | /// - Parameters:
564 + /// - Parameter cursor: A pointer to a page of results to fetch.
| ╰─suggestion: Remove 'Parameter cursor' parameter documentation
565 | public func listModelCollections(cursor: Pagination.Cursor? = nil)
566 | async throws -> Pagination.Page<Model.Collection>
warning: Parameter 'cursor' is missing documentation
--> Sources/Replicate/Client.swift:564:73-564:73
562 | /// List collections of models
563 | /// - Parameters:
564 + /// - Parameter cursor: A pointer to a page of results to fetch.
| ╰─suggestion: Document 'cursor' parameter
565 | public func listModelCollections(cursor: Pagination.Cursor? = nil)
566 | async throws -> Pagination.Page<Model.Collection>
warning: Parameter 'id' not found in instance method declaration
--> Sources/Replicate/Client.swift:595:12-606:58
593 | /// - model:
594 | /// The base model used to train a new version.
595 + /// - id:
| ╰─suggestion: Remove 'id' parameter documentation
596 + /// The ID of the base model version
597 + /// that you're using to train a new model version.
598 + ///
599 + /// You can get your model's versions using the API,
600 + /// or find them on the website by clicking
601 + /// the "Versions" tab on the Replicate model page,
602 + /// e.g. replicate.com/replicate/hello-world/versions,
603 + /// then copying the full SHA256 hash from the URL.
604 + ///
605 + /// The version ID is the same as the Docker image ID
606 + /// that's created when you build your model.
607 | /// - destination:
608 | /// The desired model to push to in the format `{owner}/{model_name}`.
warning: Parameter 'version' is missing documentation
--> Sources/Replicate/Client.swift:622:69-622:69
620 | /// If there are network problems,
621 | /// we will retry the webhook a few times,
622 + /// so make sure it can be safely called more than once.
623 | public func createTraining<Input: Codable>(
624 | _ type: Training<Input>.Type = AnyTraining.self,
warning: Parameter 'type' is missing documentation
--> Sources/Replicate/Client.swift:622:69-622:69
620 | /// If there are network problems,
621 | /// we will retry the webhook a few times,
622 + /// so make sure it can be safely called more than once.
623 | public func createTraining<Input: Codable>(
624 | _ type: Training<Input>.Type = AnyTraining.self,
warning: Parameter 'webhook' is missing documentation
--> Sources/Replicate/Predictable.swift:34:56-34:56
32 | /// and this method returns the prediction object encoded
33 | /// in the original creation response
34 + /// (``Prediction/status`` is `.starting`).
35 | public static func predict(
36 | with client: Client,
warning: 'getPrediction(id:)' doesn't exist at '/Replicate/Client'
--> Sources/Replicate/Prediction.swift:34:29-34:47
32 | /// Can be used to get a single prediction.
33 | ///
34 + /// - SeeAlso: ``Client/getPrediction(id:)``
| ├─suggestion: Replace 'getPrediction(id:)' with 'getPrediction(_:id:)'
| ├─suggestion: Replace 'getPrediction(id:)' with 'getPredictions(_:cursor:)'
| ╰─suggestion: Replace 'getPrediction(id:)' with 'cancelPrediction(_:id:)'
35 | public let id: ID
36 |
warning: Return value documented for instance method returning void
--> Sources/Replicate/Prediction.swift:130:9-130:45
128 | /// or throw `CancellationError` to stop waiting
129 | /// for the prediction to finish.
130 + /// - Returns: The completed prediction.
| ╰─suggestion: Remove return value documentation
131 | /// - Important:
132 | /// Returning early from the `updateHandler` closure
warning: 'CancellationError' doesn't exist at '/Replicate/Prediction/wait(with:priority:updateHandler:)'
--> Sources/Replicate/Prediction.swift:137:13-137:30
135 | /// call ``cancel(with:)``.
136 | /// - Throws:
137 + /// ``CancellationError`` if the prediction was canceled,
138 | /// or any error thrown from the `updateHandler` closure
139 | /// other than ``CancellationError``.
warning: 'CancellationError' doesn't exist at '/Replicate/Prediction/wait(with:priority:updateHandler:)'
--> Sources/Replicate/Prediction.swift:139:24-139:41
137 | /// ``CancellationError`` if the prediction was canceled,
138 | /// or any error thrown from the `updateHandler` closure
139 + /// other than ``CancellationError``.
140 | public mutating func wait(
141 | with client: Client,
warning: 'CancellationError' doesn't exist at '/Replicate/Prediction/wait(for:with:priority:retrier:updateHandler:)'
--> Sources/Replicate/Prediction.swift:181:13-181:30
179 | /// call ``cancel(with:)``.
180 | /// - Throws:
181 + /// ``CancellationError`` if the prediction was canceled,
182 | /// or any error thrown from the `updateHandler` closure
183 | /// other than ``CancellationError``.
warning: 'CancellationError' doesn't exist at '/Replicate/Prediction/wait(for:with:priority:retrier:updateHandler:)'
--> Sources/Replicate/Prediction.swift:183:24-183:41
181 | /// ``CancellationError`` if the prediction was canceled,
182 | /// or any error thrown from the `updateHandler` closure
183 + /// other than ``CancellationError``.
184 | public static func wait(
185 | for current: Self,
warning: 'getTraining(id:)' doesn't exist at '/Replicate/Client'
--> Sources/Replicate/Training.swift:36:29-36:45
34 | /// Can be used to get a single training.
35 | ///
36 + /// - SeeAlso: ``Client/getTraining(id:)``
| ├─suggestion: Replace 'getTraining(id:)' with 'getTraining(_:id:)'
| ├─suggestion: Replace 'getTraining(id:)' with 'getTrainings(_:cursor:)'
| ╰─suggestion: Replace 'getTraining(id:)' with 'cancelTraining(_:id:)'
37 | public let id: ID
38 |
Finished building documentation for 'Replicate' (0.57s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/replicate/replicate-swift/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2271] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.24s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (1.96s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.21s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.97s)
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
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
Building for debugging...
[0/8] Write sources
[0/8] Write snippet-extract-tool-entitlement.plist
[0/8] Write sources
[4/8] Write swift-version--6988338F2F200930.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Compiling Snippets Snippet.swift
[8/53] Compiling SymbolKit GenericConstraint.swift
[9/53] Compiling SymbolKit GenericParameter.swift
[10/53] Compiling SymbolKit Generics.swift
[11/53] Compiling SymbolKit Namespace.swift
[12/57] Emitting module SymbolKit
[13/57] Compiling SymbolKit SemanticVersion.swift
[14/57] Compiling SymbolKit AccessControl.swift
[15/57] Compiling SymbolKit Availability.swift
[16/57] Compiling SymbolKit AvailabilityItem.swift
[17/57] Compiling SymbolKit Domain.swift
[18/57] Compiling SymbolKit DeclarationFragments.swift
[19/57] Compiling SymbolKit Fragment.swift
[20/57] Compiling SymbolKit FragmentKind.swift
[21/57] Compiling SymbolKit FunctionParameter.swift
[22/57] Compiling SymbolKit FunctionSignature.swift
[23/57] Compiling SymbolKit Names.swift
[24/57] Compiling SymbolKit SPI.swift
[25/57] Compiling SymbolKit Snippet.swift
[26/57] Compiling SymbolKit Extension.swift
[27/57] Compiling SymbolKit Mixin+Equals.swift
[28/57] Compiling SymbolKit Mixin+Hash.swift
[29/57] Compiling SymbolKit Mixin.swift
[30/57] Compiling SymbolKit LineList.swift
[31/57] Compiling SymbolKit Position.swift
[32/57] Emitting module Snippets
[33/57] Compiling SymbolKit Symbol.swift
[34/57] Compiling SymbolKit SymbolKind.swift
[35/57] Compiling SymbolKit SymbolGraph.swift
[36/57] Compiling SymbolKit GraphCollector.swift
[37/57] Compiling SymbolKit SourceRange.swift
[38/57] Compiling SymbolKit Metadata.swift
[39/57] Compiling SymbolKit Module.swift
[40/57] Compiling SymbolKit OperatingSystem.swift
[41/57] Compiling SymbolKit Platform.swift
[42/57] Compiling SymbolKit Identifier.swift
[43/57] Compiling SymbolKit KindIdentifier.swift
[44/57] Compiling SymbolKit Location.swift
[45/57] Compiling SymbolKit Mutability.swift
[46/57] Compiling SymbolKit Relationship.swift
[47/57] Compiling SymbolKit RelationshipKind.swift
[48/57] Compiling SymbolKit SourceOrigin.swift
[49/57] Compiling SymbolKit GenericConstraints.swift
[50/57] Compiling SymbolKit Swift.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! (4.49s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'Replicate' complete! (0.20s)
1128
7 /Users/admin/builder/spi-builder-workspace/.docs/replicate/replicate-swift/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/replicate/replicate-swift/main
File count: 1128
Doc size: 7.0MB
Preparing doc bundle ...
Uploading prod-replicate-replicate-swift-main-9ab8687d.zip to s3://spi-docs-inbox/prod-replicate-replicate-swift-main-9ab8687d.zip
Copying... [12%]
Copying... [21%]
Copying... [33%]
Copying... [42%]
Copying... [54%]
Copying... [62%]
Copying... [71%]
Copying... [83%]
Copying... [92%]
Copying... [100%]
Done.