The Swift Package Index logo.Swift Package Index

Build Information

Successful build of AsyncHTTP, reference 1.1.0 (56228f), with Swift 6.3 for Linux on 13 Apr 2026 07:11:00 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tevelee/AsyncHTTP.git
Reference: 1.1.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/tevelee/AsyncHTTP
 * tag               1.1.0      -> FETCH_HEAD
HEAD is now at 56228ff Adopting primary associated types
Cloned https://github.com/tevelee/AsyncHTTP.git
Revision (git rev-parse @):
56228ff141d61083071bd941db2918a4dc040143
SUCCESS checkout https://github.com/tevelee/AsyncHTTP.git at 1.1.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.3
Building package at path:  $PWD
https://github.com/tevelee/AsyncHTTP.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Fetching https://github.com/apple/swift-docc-plugin
[1/2271] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.44s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.6 (0.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 (0.45s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.13s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/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
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/37] Emitting module AsyncHTTP
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
[6/41] Compiling AsyncHTTP Combine.swift
[7/41] Compiling AsyncHTTP Converted.swift
[8/41] Compiling AsyncHTTP HTTPFormattible.swift
[9/41] Compiling AsyncHTTP Sorted.swift
[10/41] Compiling AsyncHTTP Any.swift
[11/41] Compiling AsyncHTTP Capture.swift
[12/41] Compiling AsyncHTTP Decode.swift
[13/41] Compiling AsyncHTTP FlatMap.swift
[14/41] Compiling AsyncHTTP HTTP.swift
[15/41] Compiling AsyncHTTP HTTPHeader.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
[16/41] Compiling AsyncHTTP HTTPMethod.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
[17/41] Compiling AsyncHTTP HTTPRequest.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
[18/41] Compiling AsyncHTTP HTTPRequestBody.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
[19/41] Compiling AsyncHTTP HTTPResponse.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:186:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
184 | }
185 |
186 | extension URLComponents: @unchecked Sendable {}
    |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
187 | extension AnyHashable: @unchecked Sendable {}
188 |
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:1: warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'AnyHashable' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
188 |
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequest.swift:187:35: warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
185 |
186 | extension URLComponents: @unchecked Sendable {}
187 | extension AnyHashable: @unchecked Sendable {}
    |                                   `- warning: conformance of 'AnyHashable' to protocol 'Sendable' was already stated in the type's module 'Swift'
188 |
Swift.AnyHashable:2:11: note: 'AnyHashable' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: 'AnyHashable' declares conformance to protocol 'Sendable' here
3 | }
/host/spi-builder-workspace/Sources/AsyncHTTP/Model/HTTPRequestBody.swift:113:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
111 | }
112 |
113 | extension Data: @unchecked Sendable {}
    |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
114 |
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
[20/41] Compiling AsyncHTTP HTTPStatus.swift
[21/41] Compiling AsyncHTTP HTTPVersion.swift
[22/41] Compiling AsyncHTTP MIMEType.swift
[23/41] Compiling AsyncHTTP URIScheme.swift
[24/41] Compiling AsyncHTTP Deduplication.swift
[25/41] Compiling AsyncHTTP Delay.swift
[26/41] Compiling AsyncHTTP IdentifyRequests.swift
[27/41] Compiling AsyncHTTP Retry.swift
[28/41] Compiling AsyncHTTP ServerEnvironment.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:115:13: warning: default will never be executed
113 |             case .never:
114 |                 return nil
115 |             default:
    |             `- warning: default will never be executed
116 |                 return nil
117 |         }
[29/41] Compiling AsyncHTTP Throttle.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:115:13: warning: default will never be executed
113 |             case .never:
114 |                 return nil
115 |             default:
    |             `- warning: default will never be executed
116 |                 return nil
117 |         }
[30/41] Compiling AsyncHTTP Timeout.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:115:13: warning: default will never be executed
113 |             case .never:
114 |                 return nil
115 |             default:
    |             `- warning: default will never be executed
116 |                 return nil
117 |         }
[31/41] Compiling AsyncHTTP ValidateRequests.swift
/host/spi-builder-workspace/Sources/AsyncHTTP/Plugins/Timeout.swift:115:13: warning: default will never be executed
113 |             case .never:
114 |                 return nil
115 |             default:
    |             `- warning: default will never be executed
116 |                 return nil
117 |         }
[32/41] Compiling AsyncHTTP AsyncHTTP.swift
[33/41] Compiling AsyncHTTP Formatter.swift
[34/41] Compiling AsyncHTTP HTTPRequestFormatter.swift
[35/41] Compiling AsyncHTTP HTTPResponseFormatter.swift
[36/41] Compiling AsyncHTTP Loader.swift
[37/41] Compiling AsyncHTTP Intercept.swift
[38/41] Compiling AsyncHTTP Map.swift
[39/41] Compiling AsyncHTTP Pipe.swift
[40/41] Compiling AsyncHTTP Pullback.swift
[41/41] Compiling AsyncHTTP URLSession.swift
Build complete! (30.02s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "AsyncHTTP",
  "name" : "AsyncHTTP",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "AsyncHTTP",
      "targets" : [
        "AsyncHTTP"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AsyncHTTPTests",
      "module_type" : "SwiftTarget",
      "name" : "AsyncHTTPTests",
      "path" : "Tests/AsyncHTTPTests",
      "sources" : [
        "Combine.swift",
        "ConvertedTests.swift",
        "HTTPFormatterTests.swift",
        "HTTPNetworkExecutorTests.swift",
        "HTTPRequestTests.swift",
        "StaticLoader.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "AsyncHTTP"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AsyncHTTP",
      "module_type" : "SwiftTarget",
      "name" : "AsyncHTTP",
      "path" : "Sources/AsyncHTTP",
      "product_memberships" : [
        "AsyncHTTP"
      ],
      "sources" : [
        "AsyncHTTP.swift",
        "Formatters/Formatter.swift",
        "Formatters/HTTPRequestFormatter.swift",
        "Formatters/HTTPResponseFormatter.swift",
        "Loader.swift",
        "Loaders/Any.swift",
        "Loaders/Capture.swift",
        "Loaders/Decode.swift",
        "Loaders/FlatMap.swift",
        "Loaders/HTTP.swift",
        "Loaders/Intercept.swift",
        "Loaders/Map.swift",
        "Loaders/Pipe.swift",
        "Loaders/Pullback.swift",
        "Loaders/URLSession.swift",
        "Model/HTTPHeader.swift",
        "Model/HTTPMethod.swift",
        "Model/HTTPRequest.swift",
        "Model/HTTPRequestBody.swift",
        "Model/HTTPResponse.swift",
        "Model/HTTPStatus.swift",
        "Model/HTTPVersion.swift",
        "Model/MIMEType.swift",
        "Model/URIScheme.swift",
        "Plugins/Deduplication.swift",
        "Plugins/Delay.swift",
        "Plugins/IdentifyRequests.swift",
        "Plugins/Retry.swift",
        "Plugins/ServerEnvironment.swift",
        "Plugins/Throttle.swift",
        "Plugins/Timeout.swift",
        "Plugins/ValidateRequests.swift",
        "Utils/Combine.swift",
        "Utils/Converted.swift",
        "Utils/HTTPFormattible.swift",
        "Utils/Sorted.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Done.