Build Information
Successful build of async-http-client, reference main (8e82f6
), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 18:27:56 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
========================================
RunAll
========================================
Builder version: 4.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/igor11191708/async-http-client.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/igor11191708/async-http-client
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 8e82f6b Update .spi.yml
Cloned https://github.com/igor11191708/async-http-client.git
Revision (git rev-parse @):
8e82f6b5b59bdae2de019a36ca38a2da3aa6a9e8
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/igor11191708/async-http-client.git at main
Fetching https://github.com/The-Igor/retry-policy-service.git
[1/95] Fetching retry-policy-service
Fetched https://github.com/The-Igor/retry-policy-service.git from cache (0.67s)
Computing version for https://github.com/The-Igor/retry-policy-service.git
Computed https://github.com/The-Igor/retry-policy-service.git at 1.0.1 (0.65s)
Creating working copy for https://github.com/The-Igor/retry-policy-service.git
Working copy of https://github.com/The-Igor/retry-policy-service.git resolved at 1.0.1
========================================
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": "async-http-client",
"name": "async-http-client",
"url": "https://github.com/igor11191708/async-http-client.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/async-http-client",
"dependencies": [
{
"identity": "retry-policy-service",
"name": "retry-policy-service",
"url": "https://github.com/The-Igor/retry-policy-service.git",
"version": "1.0.1",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/retry-policy-service",
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/igor11191708/async-http-client.git
[1/884] Fetching async-http-client
Fetched https://github.com/igor11191708/async-http-client.git from cache (0.91s)
Fetching https://github.com/The-Igor/retry-policy-service.git from cache
Fetched https://github.com/The-Igor/retry-policy-service.git from cache (0.47s)
Computing version for https://github.com/The-Igor/retry-policy-service.git
Computed https://github.com/The-Igor/retry-policy-service.git at 1.0.1 (0.02s)
Creating working copy for https://github.com/igor11191708/async-http-client.git
Working copy of https://github.com/igor11191708/async-http-client.git resolved at main (8e82f6b)
Creating working copy for https://github.com/The-Igor/retry-policy-service.git
Working copy of https://github.com/The-Igor/retry-policy-service.git resolved at 1.0.1
warning: '.resolve-product-dependencies': dependency 'async-http-client' is not used by any target
Found 1 product dependencies
- retry-policy-service
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/igor11191708/async-http-client.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--7754E27361AE5C74.txt
[4/7] Compiling retry_policy_service RetryService.swift
[5/7] Compiling retry_policy_service DispatchTimeInterval.swift
[6/7] Emitting module retry_policy_service
[7/7] Compiling retry_policy_service Strategy.swift
[8/28] Emitting module async_http_client
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/async-http-client/proxy/http/Proxy.swift:214:17: warning: let 'strategy' is not concurrency-safe because non-'Sendable' type '(UInt) -> RetryService.Strategy' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 | /// Get default strategy for retries
214 | fileprivate let strategy : (UInt) -> RetryService.Strategy = { retry in
| |- warning: let 'strategy' is not concurrency-safe because non-'Sendable' type '(UInt) -> RetryService.Strategy' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'strategy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 | .exponential(retry: retry)
216 | }
[9/30] Compiling async_http_client Status.swift
[10/30] Compiling async_http_client JsonWriter.swift
[11/30] Compiling async_http_client IReader.swift
[12/30] Compiling async_http_client IWriter.swift
[13/30] Compiling async_http_client IValidate.swift
[14/30] Compiling async_http_client JsonReader.swift
[15/30] Compiling async_http_client Validate.swift
[16/30] Compiling async_http_client IConfiguration.swift
[17/30] Compiling async_http_client IProxy.swift
[18/30] Compiling async_http_client IResponse.swift
[19/30] Compiling async_http_client Response.swift
[20/30] Compiling async_http_client HttpMethod.swift
[21/30] Compiling async_http_client RequestHelper.swift
[22/30] Compiling async_http_client SendHelper.swift
[23/30] Compiling async_http_client Errors.swift
[24/30] Compiling async_http_client ITaskDelegate.swift
[25/30] Compiling async_http_client Direct.swift
[26/30] Compiling async_http_client Http.swift
[27/30] Compiling async_http_client Proxy+.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/async-http-client/proxy/http/Proxy.swift:214:17: warning: let 'strategy' is not concurrency-safe because non-'Sendable' type '(UInt) -> RetryService.Strategy' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 | /// Get default strategy for retries
214 | fileprivate let strategy : (UInt) -> RetryService.Strategy = { retry in
| |- warning: let 'strategy' is not concurrency-safe because non-'Sendable' type '(UInt) -> RetryService.Strategy' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'strategy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 | .exponential(retry: retry)
216 | }
[28/30] Compiling async_http_client Proxy.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/async-http-client/proxy/http/Proxy.swift:214:17: warning: let 'strategy' is not concurrency-safe because non-'Sendable' type '(UInt) -> RetryService.Strategy' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 | /// Get default strategy for retries
214 | fileprivate let strategy : (UInt) -> RetryService.Strategy = { retry in
| |- warning: let 'strategy' is not concurrency-safe because non-'Sendable' type '(UInt) -> RetryService.Strategy' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'strategy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 | .exponential(retry: retry)
216 | }
[29/30] Compiling async_http_client UrlHelper.swift
[30/30] Compiling async_http_client Configuration.swift
Build complete! (9.99s)
Build complete.
{
"dependencies" : [
{
"identity" : "retry-policy-service",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/The-Igor/retry-policy-service.git"
}
],
"manifest_display_name" : "async-http-client",
"name" : "async-http-client",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "tvos",
"version" : "15.0"
}
],
"products" : [
{
"name" : "async-http-client",
"targets" : [
"async-http-client"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "async_http_clientTests",
"module_type" : "SwiftTarget",
"name" : "async-http-clientTests",
"path" : "Tests/async-http-clientTests",
"sources" : [
"async_http_clientTests.swift",
"helper/UrlHelper.swift"
],
"target_dependencies" : [
"async-http-client"
],
"type" : "test"
},
{
"c99name" : "async_http_client",
"module_type" : "SwiftTarget",
"name" : "async-http-client",
"path" : "Sources/async-http-client",
"product_dependencies" : [
"retry-policy-service"
],
"product_memberships" : [
"async-http-client"
],
"sources" : [
"protocol/IConfiguration.swift",
"protocol/IProxy.swift",
"protocol/IResponse.swift",
"protocol/code/IReader.swift",
"protocol/code/IWriter.swift",
"protocol/validate/IValidate.swift",
"proxy/helper/RequestHelper.swift",
"proxy/helper/SendHelper.swift",
"proxy/helper/UrlHelper.swift",
"proxy/http/Configuration.swift",
"proxy/http/Direct.swift",
"proxy/http/Http.swift",
"proxy/http/Proxy+.swift",
"proxy/http/Proxy.swift",
"proxy/http/Response.swift",
"proxy/http/enum/HttpMethod.swift",
"proxy/http/error/Errors.swift",
"proxy/http/protocol/ITaskDelegate.swift",
"reader/JsonReader.swift",
"validate/Validate.swift",
"validate/type/Status.swift",
"writer/JsonWriter.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/igor11191708/async-http-client/main
Repository: igor11191708/async-http-client
Swift version used: 6.0
Target: async-http-client
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 88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'async-http-client'...
Finished extracting symbol information for 'async-http-client'. (3.47s)
Building documentation for 'async-http-client'...
warning: 'Sendable' doesn't exist at '/async_http_client/IConfiguration'
--> Sources/async-http-client/protocol/IConfiguration.swift:11:7-11:15
9 | import Foundation
10 |
11 + /// ``Sendable`` - A type whose values can safely be passed across concurrency domains by copying
12 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
13 | public protocol IConfiguration{
warning: Parameter 'data' not found in instance method declaration
--> Sources/async-http-client/protocol/code/IWriter.swift:13:9-13:38
11 |
12 | /// Parses data loaded from remote source
13 + /// - Parameter data: set of data
| ╰─suggestion: Remove 'data' parameter documentation
14 | func write<T : Encodable>(_ items: T) throws -> Data
15 | }
warning: Parameter 'items' is missing documentation
--> Sources/async-http-client/protocol/code/IWriter.swift:13:38-13:38
11 |
12 | /// Parses data loaded from remote source
13 + /// - Parameter data: set of data
| ╰─suggestion: Document 'items' parameter
14 | func write<T : Encodable>(_ items: T) throws -> Data
15 | }
warning: Parameter 'body' is missing documentation
--> Sources/async-http-client/proxy/http/Direct.swift:43:53-43:53
41 | /// - headers: Additional headers
| ╰─suggestion: Document 'body' parameter
42 | /// - retry: Amount of attempts is request is fail
43 + /// - taskDelegate: URLSessionTaskDelegate
44 | /// - Returns: Data and URLResponse
45 | public static func from(
warning: Parameter 'body' is missing documentation
--> Sources/async-http-client/proxy/http/Direct.swift:67:53-67:53
65 | /// - headers: Additional headers
| ╰─suggestion: Document 'body' parameter
66 | /// - retry: Amount of attempts is request is fail
67 + /// - taskDelegate: URLSessionTaskDelegate
68 | /// - Returns: Data and URLResponse
69 | public static func from(
warning: 'Http.Validate' doesn't exist at '/async_http_client/Http/Proxy/get(path:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:38:56-38:69
36 | /// - headers: A dictionary containing all of the HTTP header fields for a request
37 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
38 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set diff combinations check out ``Http.Validate.Status``
39 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
40 | public func get<T>(
warning: 'Http.Validate.Status' doesn't exist at '/async_http_client/Http/Proxy/get(path:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:38:191-38:211
36 | /// - headers: A dictionary containing all of the HTTP header fields for a request
37 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
38 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set diff combinations check out ``Http.Validate.Status``
39 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
40 | public func get<T>(
warning: 'Http.Validate' doesn't exist at '/async_http_client/Http/Proxy/post(path:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:64:56-64:69
62 | /// - headers: A dictionary containing all of the HTTP header fields for a request
63 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
64 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 Check out ``Http.Validate.Status``
65 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
66 | public func post<T>(
warning: 'Http.Validate.Status' doesn't exist at '/async_http_client/Http/Proxy/post(path:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:64:160-64:180
62 | /// - headers: A dictionary containing all of the HTTP header fields for a request
63 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
64 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 Check out ``Http.Validate.Status``
65 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
66 | public func post<T>(
warning: 'Http.Validate' doesn't exist at '/async_http_client/Http/Proxy/post(path:body:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:90:56-90:69
88 | /// - headers: A dictionary containing all of the HTTP header fields for a request
89 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
90 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 Check out ``Http.Validate.Status``
91 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
92 | public func post<T, V : Encodable>(
warning: 'Http.Validate.Status' doesn't exist at '/async_http_client/Http/Proxy/post(path:body:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:90:160-90:180
88 | /// - headers: A dictionary containing all of the HTTP header fields for a request
89 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
90 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 Check out ``Http.Validate.Status``
91 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
92 | public func post<T, V : Encodable>(
warning: 'Http.Validate' doesn't exist at '/async_http_client/Http/Proxy/put(path:body:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:118:56-118:69
116 | /// - headers: A dictionary containing all of the HTTP header fields for a request
117 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
118 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set diff combinations check out ``Http.Validate.Status``
119 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
120 | public func put<T, V : Encodable>(
warning: 'Http.Validate.Status' doesn't exist at '/async_http_client/Http/Proxy/put(path:body:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:118:191-118:211
116 | /// - headers: A dictionary containing all of the HTTP header fields for a request
117 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
118 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set diff combinations check out ``Http.Validate.Status``
119 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
120 | public func put<T, V : Encodable>(
warning: 'Http.Validate' doesn't exist at '/async_http_client/Http/Proxy/delete(path:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:150:56-150:69
148 | /// - headers: A dictionary containing all of the HTTP header fields for a request
149 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
150 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set diff combinations check out ``Http.Validate.Status``
151 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
152 | public func delete<T>(
warning: 'Http.Validate.Status' doesn't exist at '/async_http_client/Http/Proxy/delete(path:query:headers:retry:validate:taskDelegate:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:150:191-150:211
148 | /// - headers: A dictionary containing all of the HTTP header fields for a request
149 | /// - retry: Amount of attempts Default value .exponential with 5 retry and duration 2.0
150 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set diff combinations check out ``Http.Validate.Status``
151 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
152 | public func delete<T>(
warning: External name 'retry' used to document parameter
--> Sources/async-http-client/proxy/http/Proxy.swift:172:17-172:22
170 | /// - Parameters:
171 | /// - request: A URL load request that is independent of protocol or URL scheme
172 + /// - retry: ``RetryService.Strategy`` strategy Default value .exponential with 5 retry and duration 2.0
| ╰─suggestion: Replace 'retry' with 'strategy'
173 | /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set up diff combinations check out ``Http.Validate.Status``
174 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
warning: 'Http.Validate' doesn't exist at '/async_http_client/Http/Proxy/send(with:retry:_:_:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:173:56-173:69
171 | /// - request: A URL load request that is independent of protocol or URL scheme
172 | /// - retry: ``RetryService.Strategy`` strategy Default value .exponential with 5 retry and duration 2.0
173 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set up diff combinations check out ``Http.Validate.Status``
174 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
175 | public func send<T>(
warning: 'Http.Validate.Status' doesn't exist at '/async_http_client/Http/Proxy/send(with:retry:_:_:)'
--> Sources/async-http-client/proxy/http/Proxy.swift:173:194-173:214
171 | /// - request: A URL load request that is independent of protocol or URL scheme
172 | /// - retry: ``RetryService.Strategy`` strategy Default value .exponential with 5 retry and duration 2.0
173 + /// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set up diff combinations check out ``Http.Validate.Status``
174 | /// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
175 | public func send<T>(
warning: Parameter 'rules' not found in function declaration
--> Sources/async-http-client/validate/type/Status.swift:78:9-78:14
76 | /// - Parameters:
77 | /// - response: URLResponse
78 + /// - rules: A rule for validating ``Http.Validate.Status``
| ╰─suggestion: Replace 'rules' with 'rule'
79 | /// - data: Received data
80 | /// - Throws: ``Http.Errors.status``
warning: Parameter 'rule' is missing documentation
--> Sources/async-http-client/validate/type/Status.swift:79:28-79:28
77 | /// - response: URLResponse
78 | /// - rules: A rule for validating ``Http.Validate.Status``
79 + /// - data: Received data
| ╰─suggestion: Document 'rule' parameter
80 | /// - Throws: ``Http.Errors.status``
81 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
warning: 'Http.Errors.status' doesn't exist at '/async_http_client/validateStatus(_:by:with:)'
--> Sources/async-http-client/validate/type/Status.swift:80:17-80:35
78 | /// - rules: A rule for validating ``Http.Validate.Status``
79 | /// - data: Received data
80 + /// - Throws: ``Http.Errors.status``
81 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
82 | public func validateStatus(
warning: 'Http.Validate.Status' doesn't exist at '/async_http_client/validateStatus(_:by:with:)'
--> Sources/async-http-client/validate/type/Status.swift:95:39-95:59
93 | /// - Parameters:
94 | /// - response: URLResponse
95 + /// - rules: rules for validating ``Http.Validate.Status``
96 | /// - data: Received data
97 | /// - Throws: ``Http.Errors.status``
warning: 'Http.Errors.status' doesn't exist at '/async_http_client/validateStatus(_:by:with:)'
--> Sources/async-http-client/validate/type/Status.swift:97:17-97:35
95 | /// - rules: rules for validating ``Http.Validate.Status``
96 | /// - data: Received data
97 + /// - Throws: ``Http.Errors.status``
98 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
99 | public func validateStatus(Finished building documentation for 'async-http-client' (0.16s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/igor11191708/async-http-client/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Updating https://github.com/The-Igor/retry-policy-service.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.25s)
Updated https://github.com/The-Igor/retry-policy-service.git (0.47s)
Computing version for https://github.com/The-Igor/retry-policy-service.git
Computed https://github.com/The-Igor/retry-policy-service.git at 1.0.1 (0.64s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.64s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.31s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.83s)
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.3
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Compiling SymbolKit Mixin+Equals.swift
[8/53] Compiling SymbolKit Mixin+Hash.swift
[9/53] Compiling SymbolKit Mixin.swift
[10/53] Compiling SymbolKit LineList.swift
[11/53] Compiling SymbolKit Position.swift
[12/57] Emitting module SymbolKit
[13/57] Compiling SymbolKit SourceRange.swift
[14/57] Compiling SymbolKit Metadata.swift
[15/57] Compiling SymbolKit Module.swift
[16/57] Compiling SymbolKit OperatingSystem.swift
[17/57] Compiling SymbolKit Platform.swift
[18/57] Emitting module Snippets
[19/57] Compiling Snippets Snippet.swift
[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 Symbol.swift
[30/57] Compiling SymbolKit SymbolKind.swift
[31/57] Compiling SymbolKit SymbolGraph.swift
[32/57] Compiling SymbolKit GraphCollector.swift
[33/57] Compiling SymbolKit DeclarationFragments.swift
[34/57] Compiling SymbolKit Fragment.swift
[35/57] Compiling SymbolKit FragmentKind.swift
[36/57] Compiling SymbolKit FunctionParameter.swift
[37/57] Compiling SymbolKit FunctionSignature.swift
[38/57] Compiling SymbolKit Names.swift
[39/57] Compiling SymbolKit SPI.swift
[40/57] Compiling SymbolKit Snippet.swift
[41/57] Compiling SymbolKit Extension.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 SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.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.84s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/5] Compiling retry_policy_service DispatchTimeInterval.swift
[3/5] Compiling retry_policy_service Strategy.swift
[4/5] Emitting module retry_policy_service
[5/5] Compiling retry_policy_service RetryService.swift
[6/26] Emitting module async_http_client
[7/28] Compiling async_http_client Response.swift
[8/28] Compiling async_http_client HttpMethod.swift
[9/28] Compiling async_http_client RequestHelper.swift
[10/28] Compiling async_http_client SendHelper.swift
[11/28] Compiling async_http_client Direct.swift
[12/28] Compiling async_http_client Http.swift
[13/28] Compiling async_http_client IReader.swift
[14/28] Compiling async_http_client IWriter.swift
[15/28] Compiling async_http_client IValidate.swift
[16/28] Compiling async_http_client JsonReader.swift
[17/28] Compiling async_http_client Validate.swift
[18/28] Compiling async_http_client UrlHelper.swift
[19/28] Compiling async_http_client Configuration.swift
[20/28] Compiling async_http_client Errors.swift
[21/28] Compiling async_http_client ITaskDelegate.swift
[22/28] Compiling async_http_client Proxy+.swift
[23/28] Compiling async_http_client Proxy.swift
[24/28] Compiling async_http_client IConfiguration.swift
[25/28] Compiling async_http_client IProxy.swift
[26/28] Compiling async_http_client IResponse.swift
[27/28] Compiling async_http_client Status.swift
[28/28] Compiling async_http_client JsonWriter.swift
Build of target: 'async-http-client' complete! (1.37s)
242
3 /Users/admin/builder/spi-builder-workspace/.docs/igor11191708/async-http-client/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/igor11191708/async-http-client/main
File count: 242
Doc size: 3.0MB
Preparing doc bundle ...
Uploading prod-igor11191708-async-http-client-main-774a414e.zip to s3://spi-docs-inbox/prod-igor11191708-async-http-client-main-774a414e.zip
Copying... [12%]
Copying... [23%]
Copying... [35%]
Copying... [46%]
Copying... [58%]
Copying... [69%]
Copying... [81%]
Copying... [92%]
Copying... [100%]
Done.