Build Information
Successful build of teco-core, reference main (3b8b2a
), with Swift 6.0 for Linux on 30 Nov 2024 03:38:18 UTC.
Swift 6 data race errors: 1
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
Build Log
520 | // schedule task for retrying the request
521 | eventLoop.scheduleTask(in: retryTime) {
522 | execute(attempt: attempt + 1)
| |- warning: capture of 'execute(attempt:)' with non-sendable type '(Int) -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
523 | }
524 | } else {
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:522:29: warning: capture of 'execute(attempt:)' with non-sendable type '(Int) -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
520 | // schedule task for retrying the request
521 | eventLoop.scheduleTask(in: retryTime) {
522 | execute(attempt: attempt + 1)
| |- warning: capture of 'execute(attempt:)' with non-sendable type '(Int) -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
523 | }
524 | } else {
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:501:14: warning: concurrently-executed local function 'execute(attempt:)' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
499 | let promise = eventLoop.makePromise(of: Output.self)
500 |
501 | func execute(attempt: Int) {
| `- warning: concurrently-executed local function 'execute(attempt:)' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
502 | // execute HTTP request
503 | request(eventLoop)
[1821/1825] Compiling TecoCore FileLoader.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:22: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: parameter 'callback' is implicitly non-sendable
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:14: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:70:14: warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 |
69 | return fileIO.openFile(path: path, eventLoop: eventLoop)
70 | .flatMap { handle, region in
| `- warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
24 | //===----------------------------------------------------------------------===//
25 |
26 | import NIOCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
27 | import NIOPosix
28 | #if os(Linux)
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:73:30: warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
73 | ($0, handle)
| `- warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
74 | }
75 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
[1822/1825] Compiling TecoCore Sendable.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:22: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: parameter 'callback' is implicitly non-sendable
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:14: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:70:14: warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 |
69 | return fileIO.openFile(path: path, eventLoop: eventLoop)
70 | .flatMap { handle, region in
| `- warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
24 | //===----------------------------------------------------------------------===//
25 |
26 | import NIOCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
27 | import NIOPosix
28 | #if os(Linux)
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:73:30: warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
73 | ($0, handle)
| `- warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
74 | }
75 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
[1823/1825] Compiling TecoCore Singleton.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:22: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: parameter 'callback' is implicitly non-sendable
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:14: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:70:14: warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 |
69 | return fileIO.openFile(path: path, eventLoop: eventLoop)
70 | .flatMap { handle, region in
| `- warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
24 | //===----------------------------------------------------------------------===//
25 |
26 | import NIOCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
27 | import NIOPosix
28 | #if os(Linux)
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:73:30: warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
73 | ($0, handle)
| `- warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
74 | }
75 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
[1824/1825] Compiling TecoCore deprecated.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:22: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: parameter 'callback' is implicitly non-sendable
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:14: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:70:14: warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 |
69 | return fileIO.openFile(path: path, eventLoop: eventLoop)
70 | .flatMap { handle, region in
| `- warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
24 | //===----------------------------------------------------------------------===//
25 |
26 | import NIOCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
27 | import NIOPosix
28 | #if os(Linux)
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:73:30: warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
73 | ($0, handle)
| `- warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
74 | }
75 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
[1825/1825] Compiling TecoCore exports.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:22: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: parameter 'callback' is implicitly non-sendable
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:52:14: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
44 | /// - eventLoop: `EventLoop` to run everything on.
45 | /// - callback: Process `ByteBuffer` containing file contents.
46 | static func loadFile<T>(path: String, on eventLoop: EventLoop, _ callback: @escaping (ByteBuffer) -> EventLoopFuture<T>) -> EventLoopFuture<T> {
| `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
47 | let threadPool = NIOThreadPool(numberOfThreads: 1)
48 | threadPool.start()
:
50 |
51 | return self.loadFile(path: path, on: eventLoop, using: fileIO)
52 | .flatMap(callback)
| `- warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
53 | .always { _ in
54 | // shut down the threadpool async
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:70:14: warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 |
69 | return fileIO.openFile(path: path, eventLoop: eventLoop)
70 | .flatMap { handle, region in
| `- warning: type 'NIOFileHandle' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
24 | //===----------------------------------------------------------------------===//
25 |
26 | import NIOCore
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'NIOCore'
27 | import NIOPosix
28 | #if os(Linux)
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:73:30: warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
71 | fileIO.read(fileRegion: region, allocator: ByteBufferAllocator(), eventLoop: eventLoop)
72 | .map {
73 | ($0, handle)
| `- warning: capture of 'handle' with non-sendable type 'NIOFileHandle' in a `@Sendable` closure; this is an error in the Swift 6 language mode
74 | }
75 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift:47:20: note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
45 | ///
46 | /// - warning: `NIOFileHandle` objects are not thread-safe and are mutable. They also cannot be fully thread-safe as they refer to a global underlying file descriptor.
47 | public final class NIOFileHandle: FileDescriptor {
| `- note: class 'NIOFileHandle' does not conform to the 'Sendable' protocol
48 | public private(set) var isOpen: Bool
49 | private let descriptor: CInt
[1827/1828] Compiling TecoPaginationHelpers deprecated.swift
[1828/1828] Emitting module TecoPaginationHelpers
Build complete! (197.65s)
Build complete.
{
"dependencies" : [
{
"identity" : "async-http-client",
"requirement" : {
"range" : [
{
"lower_bound" : "1.19.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/async-http-client.git"
},
{
"identity" : "swift-atomics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-atomics.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-metrics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-metrics.git"
},
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.42.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "multipart-kit",
"requirement" : {
"range" : [
{
"lower_bound" : "4.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/vapor/multipart-kit.git"
}
],
"manifest_display_name" : "teco-core",
"name" : "teco-core",
"path" : "/host/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" : "TecoCore",
"targets" : [
"TecoCore",
"TecoDateHelpers",
"TecoPaginationHelpers"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "TecoSigner",
"targets" : [
"TecoSigner"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TecoSignerTests",
"module_type" : "SwiftTarget",
"name" : "TecoSignerTests",
"path" : "Tests/TecoSignerTests",
"sources" : [
"COSSignerV5Tests.swift",
"TCSignerV1Tests.swift",
"TCSignerV3Tests.swift"
],
"target_dependencies" : [
"TecoSigner"
],
"type" : "test"
},
{
"c99name" : "TecoSigner",
"module_type" : "SwiftTarget",
"name" : "TecoSigner",
"path" : "Sources/TecoSigner",
"product_dependencies" : [
"Crypto",
"NIOHTTP1"
],
"product_memberships" : [
"TecoCore",
"TecoSigner"
],
"sources" : [
"cosSignerV5.swift",
"credential.swift",
"deprecated.swift",
"error.swift",
"exports.swift",
"signerV1.swift",
"signerV3.swift",
"utils.swift"
],
"type" : "library"
},
{
"c99name" : "TecoPaginationHelpers",
"module_type" : "SwiftTarget",
"name" : "TecoPaginationHelpers",
"path" : "Sources/TecoPaginationHelpers",
"product_memberships" : [
"TecoCore"
],
"sources" : [
"deprecated.swift"
],
"target_dependencies" : [
"TecoCore"
],
"type" : "library"
},
{
"c99name" : "TecoDateHelpers",
"module_type" : "SwiftTarget",
"name" : "TecoDateHelpers",
"path" : "Sources/TecoDateHelpers",
"product_dependencies" : [
"NIOConcurrencyHelpers"
],
"product_memberships" : [
"TecoCore"
],
"sources" : [
"Property Wrappers/TCDateEncoding.swift",
"Property Wrappers/TCTimestampEncoding.swift",
"Property Wrappers/TCTimestampISO8601Encoding.swift",
"Protocols/TCDateFormatter.swift",
"Protocols/TCDateValue.swift",
"Protocols/TCDateWrapper.swift",
"Sendable.swift"
],
"type" : "library"
},
{
"c99name" : "TecoCore",
"module_type" : "SwiftTarget",
"name" : "TecoCore",
"path" : "Sources/TecoCore",
"product_dependencies" : [
"AsyncHTTPClient",
"Atomics",
"Logging",
"Metrics",
"NIOFoundationCompat",
"NIOHTTP1",
"MultipartKit"
],
"product_memberships" : [
"TecoCore"
],
"sources" : [
"Common/EndpointProvider.swift",
"Common/RetryPolicy.swift",
"Common/TCClient.swift",
"Common/TCModel.swift",
"Common/TCRegion.swift",
"Common/TCService.swift",
"Common/TCServiceConfig.swift",
"Credential/CVMRoleCredentialProvider.swift",
"Credential/CredentialProvider.swift",
"Credential/CredentialProviderError.swift",
"Credential/CredentialProviderFactory.swift",
"Credential/CredentialProviderSelector.swift",
"Credential/CredentialProviderWithClient.swift",
"Credential/DeferredCredentialProvider.swift",
"Credential/ExpiringCredential.swift",
"Credential/NullCredentialProvider.swift",
"Credential/OIDCRoleArnCredentialProvider.swift",
"Credential/ProfileCredentialProvider.swift",
"Credential/RuntimeSelectorCredentialProvider.swift",
"Credential/STSCredentialProvider.swift",
"Credential/StaticCredential+CredentialProvider.swift",
"Credential/StaticCredential+Environment.swift",
"Credential/TCCLICredentialProvider.swift",
"Credential/TemporaryCredentialProvider.swift",
"Errors/TCCommonError.swift",
"Errors/TCErrorContext.swift",
"Errors/TCErrorType.swift",
"Errors/TCRawError.swift",
"Errors/TCRawServiceError.swift",
"Errors/TCServiceErrorType.swift",
"Pagination/TCClient+Pagination.swift",
"Pagination/TCClient+PaginationError.swift",
"Pagination/TCClient+Paginator.swift",
"Pagination/TCPaginatedModel.swift",
"Transport/HTTPClient.swift",
"Transport/TCHTTPRequest.swift",
"Transport/TCHTTPResponse.swift",
"Utils/Environment.swift",
"Utils/FileLoader.swift",
"Utils/Sendable.swift",
"Utils/Singleton.swift",
"deprecated.swift",
"exports.swift"
],
"target_dependencies" : [
"INIParser",
"TecoSigner"
],
"type" : "library"
},
{
"c99name" : "INIParser",
"module_type" : "SwiftTarget",
"name" : "INIParser",
"path" : "Sources/INIParser",
"product_memberships" : [
"TecoCore"
],
"sources" : [
"INIParser.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/teco-project/teco-core/main
Repository: teco-project/teco-core
Swift version used: 6.0
Target: TecoCore
Initialized empty Git repository in /host/spi-builder-workspace/swift-docc-render-artifact/.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/swiftlang/swift-docc-render-artifact
* branch 88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'TecoCore'...
Finished extracting symbol information for 'TecoCore'. (48.49s)
Building documentation for 'TecoCore'...
warning: External name 'credentialProvider' used to document parameter
--> ../Common/TCClient.swift:76:14-76:32
74 | ///
75 | /// - Parameters:
76 + /// - credentialProvider: An object that returns valid signing credentials for request signing.
| ╰─suggestion: Replace 'credentialProvider' with 'credentialProviderFactory'
77 | /// - retryPolicy: An object that tells what to do when a request fails.
78 | /// - options: Client configurations.
warning: External name 'retryPolicy' used to document parameter
--> ../Common/TCClient.swift:77:14-77:25
75 | /// - Parameters:
76 | /// - credentialProvider: An object that returns valid signing credentials for request signing.
77 + /// - retryPolicy: An object that tells what to do when a request fails.
| ╰─suggestion: Replace 'retryPolicy' with 'retryPolicyFactory'
78 | /// - options: Client configurations.
79 | /// - httpClientProvider: `HTTPClient` to use. Defaults to `.createNew`.
warning: External name 'logger' used to document parameter
--> ../Common/TCClient.swift:80:14-80:20
78 | /// - options: Client configurations.
79 | /// - httpClientProvider: `HTTPClient` to use. Defaults to `.createNew`.
80 + /// - logger: Logger used to log background `TCClient` events.
| ╰─suggestion: Replace 'logger' with 'clientLogger'
81 | public convenience init(
82 | credentialProvider credentialProviderFactory: CredentialProviderFactory = .default,
warning: Parameter 'outputType' is missing documentation
--> ../Common/TCClient.swift:273:55-273:55
271 | /// - input: API request payload.
272 | /// - logger: Logger to log request details to.
| ╰─suggestion: Document 'outputType' parameter
273 + /// - eventLoop: `EventLoop` to run request on.
274 | /// - Returns: `EventLoopFuture` containing output object that completes when response is received.
275 | public func execute<Input: TCRequest, Output: TCResponse>(
warning: Parameter 'outputType' is missing documentation
--> ../Common/TCClient.swift:319:55-319:55
317 | /// - input: API request payload.
318 | /// - logger: Logger to log request details to.
| ╰─suggestion: Document 'outputType' parameter
319 + /// - eventLoop: `EventLoop` to run request on.
320 | /// - Returns: `EventLoopFuture` containing output object that completes when response is received.
321 | public func execute<Input: TCMultipartRequest, Output: TCResponse>(
warning: Parameter 'outputType' is missing documentation
--> ../Common/TCClient.swift:364:55-364:55
362 | /// - skipAuthorization: If "Authorization" header should be set to `SKIP`.
363 | /// - logger: Logger to log request details to.
| ╰─suggestion: Document 'outputType' parameter
364 + /// - eventLoop: `EventLoop` to run request on.
365 | /// - Returns: `EventLoopFuture` containing output object that completes when response is received.
366 | public func execute<Output: TCResponse>(
warning: Parameter 'url' is missing documentation
--> ../Common/TCClient.swift:420:42-420:42
418 | /// - serviceConfig: Tencent Cloud service configuration used to sign the URL.
419 | /// - skipAuthorization: If "Authorization" header should be set to `SKIP`.
420 + /// - logger: Logger to output to.
421 | /// - Returns: A set of signed headers that include the original headers supplied.
422 | public func signHeaders(
warning: Parameter 'url' is missing documentation
--> ../Common/TCService.swift:72:42-72:42
70 | /// - headers: Headers that are to be sent with this URL.
71 | /// - body: Payload to sign.
72 + /// - logger: Logger to output to.
73 | /// - Returns: A set of signed headers that include the original headers supplied.
74 | public func signHeaders(
warning: Parameter 'logger' is missing documentation
--> ../Credential/DeferredCredentialProvider.swift:73:55-73:55
71 | /// If still in process of the getting credentials then return future result of `startupPromise`, otherwise return the stored credential.
72 | ///
73 + /// - Parameter eventLoop: `EventLoop` to run off.
| ╰─suggestion: Document 'logger' parameter
74 | /// - Returns: `EventLoopFuture` that will hold the credential.
75 | public func getCredential(on eventLoop: EventLoop, logger: Logger) -> EventLoopFuture<Credential> {
warning: Parameter 'url' is missing documentation
--> ../deprecated.swift:128:42-128:42
126 | /// - serviceConfig: Tencent Cloud service configuration used to sign the URL.
127 | /// - skipAuthorization: If "Authorization" header should be set to `SKIP`.
128 + /// - logger: Logger to output to.
129 | /// - Returns: A set of signed headers that include the original headers supplied.
130 | @available(*, deprecated, renamed: "signHeaders(url:method:headers:body:serviceConfig:skipAuthorization:logger:)")
warning: Parameter 'url' is missing documentation
--> ../deprecated.swift:167:42-167:42
165 | /// - headers: Headers that are to be sent with this URL.
166 | /// - body: Payload to sign.
167 + /// - logger: Logger to output to.
168 | /// - Returns: A set of signed headers that include the original headers supplied.
169 | @available(*, deprecated, renamed: "signHeaders(url:method:headers:body:logger:)")Finished building documentation for 'TecoCore' (4.22s)
Generated documentation archive at:
/host/spi-builder-workspace/.docs/teco-project/teco-core/main
Updating https://github.com/apple/swift-nio-extras.git
Updating https://github.com/apple/swift-system.git
Updating https://github.com/apple/swift-algorithms.git
Updating https://github.com/apple/swift-nio-transport-services.git
Updating https://github.com/apple/swift-collections.git
Updating https://github.com/apple/swift-atomics.git
Updated https://github.com/apple/swift-system.git (0.28s)
Updated https://github.com/apple/swift-nio-extras.git (0.29s)
Updated https://github.com/apple/swift-nio-transport-services.git (0.30s)
Updated https://github.com/apple/swift-algorithms.git (0.30s)
Updating https://github.com/swift-server/async-http-client.git
Updated https://github.com/apple/swift-collections.git (0.31s)
Updated https://github.com/apple/swift-atomics.git (0.31s)
Updating https://github.com/vapor/multipart-kit.git
Updating https://github.com/apple/swift-nio-http2.git
Updated https://github.com/swift-server/async-http-client.git (0.26s)
Updating https://github.com/apple/swift-nio-ssl.git
Updating https://github.com/apple/swift-nio.git
Updated https://github.com/vapor/multipart-kit.git (0.29s)
Updating https://github.com/apple/swift-crypto.git
Updated https://github.com/apple/swift-nio-http2.git (0.29s)
Updating https://github.com/apple/swift-log.git
Updating https://github.com/apple/swift-http-types
Updated https://github.com/apple/swift-nio-ssl.git (0.36s)
Updating https://github.com/apple/swift-asn1.git
Updated https://github.com/apple/swift-log.git (0.31s)
Updated https://github.com/apple/swift-http-types (0.28s)
Fetching https://github.com/swiftlang/swift-docc-plugin
Updated https://github.com/apple/swift-crypto.git (0.34s)
Updating https://github.com/apple/swift-numerics.git
Updating https://github.com/apple/swift-metrics.git
Updated https://github.com/apple/swift-nio.git (0.63s)
[1/2038] Fetching swift-docc-plugin
Updated https://github.com/apple/swift-asn1.git (0.32s)
Updated https://github.com/apple/swift-metrics.git (0.29s)
Updated https://github.com/apple/swift-numerics.git (0.37s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.95s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.0 (0.87s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.77.0 (1.35s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.10.0 (3.08s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.5.0 (0.56s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.2 (0.77s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (0.79s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.24.0 (0.77s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (0.75s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.0 (0.42s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.0 (0.46s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.0 (0.45s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.23.0 (0.45s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.24.1 (0.45s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.34.1 (0.47s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.29.0 (0.75s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.2 (2.91s)
Computing version for https://github.com/apple/swift-http-types
Computed https://github.com/apple/swift-http-types at 1.3.1 (0.49s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.83s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3187] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.58s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.84s)
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
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/9] Write sources
[3/9] Write swift-version-24593BA9C3E375BF.txt
[5/53] Compiling Snippets Snippet.swift
[6/53] Emitting module Snippets
[7/53] Compiling Snippets SnippetParser.swift
[9/54] Compiling SymbolKit SourceOrigin.swift
[10/54] Compiling SymbolKit GenericConstraints.swift
[11/54] Compiling SymbolKit Swift.swift
[12/54] Compiling SymbolKit SemanticVersion.swift
[13/54] Compiling SymbolKit AccessControl.swift
[14/54] Compiling SymbolKit Availability.swift
[15/54] Compiling SymbolKit AvailabilityItem.swift
[16/54] Compiling SymbolKit Domain.swift
[17/54] Compiling SymbolKit DeclarationFragments.swift
[18/54] Compiling SymbolKit Fragment.swift
[19/54] Compiling SymbolKit FragmentKind.swift
[20/54] Compiling SymbolKit FunctionParameter.swift
[20/59] Wrapping AST for Snippets for debugging
[22/59] Compiling SymbolKit SPI.swift
[23/59] Compiling SymbolKit Snippet.swift
[24/59] Compiling SymbolKit Extension.swift
[25/59] Compiling SymbolKit GenericConstraint.swift
[26/59] Compiling SymbolKit GenericParameter.swift
[27/59] Compiling SymbolKit FunctionSignature.swift
[28/59] Compiling SymbolKit Identifier.swift
[29/59] Compiling SymbolKit KindIdentifier.swift
[30/59] Compiling SymbolKit Location.swift
[31/59] Compiling SymbolKit Mutability.swift
[32/59] Compiling SymbolKit Names.swift
[33/59] Compiling SymbolKit Generics.swift
[34/59] Compiling SymbolKit Namespace.swift
[35/59] Compiling SymbolKit Symbol.swift
[36/59] Compiling SymbolKit SymbolKind.swift
[37/59] Compiling SymbolKit SymbolGraph.swift
[38/59] Compiling SymbolKit Mixin+Equals.swift
[39/59] Compiling SymbolKit Mixin+Hash.swift
[40/59] Compiling SymbolKit Mixin.swift
[41/59] Compiling SymbolKit LineList.swift
[42/59] Compiling SymbolKit Position.swift
[43/59] Compiling SymbolKit SourceRange.swift
[44/59] Compiling SymbolKit Metadata.swift
[45/59] Compiling SymbolKit Module.swift
[46/59] Compiling SymbolKit OperatingSystem.swift
[47/59] Compiling SymbolKit Platform.swift
[48/59] Compiling SymbolKit Relationship.swift
[49/59] Compiling SymbolKit RelationshipKind.swift
[50/59] Emitting module SymbolKit
[51/59] Compiling SymbolKit GraphCollector.swift
[52/59] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[53/59] Compiling SymbolKit UnifiedSymbol.swift
[54/59] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[55/59] Compiling SymbolKit UnifiedSymbolGraph.swift
[56/60] Wrapping AST for SymbolKit for debugging
[58/64] Compiling snippet_extract URL+Status.swift
[59/64] Compiling snippet_extract SymbolGraph+Snippet.swift
[60/64] Emitting module snippet_extract
[61/64] Compiling snippet_extract SnippetBuildCommand.swift
[62/65] Wrapping AST for snippet-extract for debugging
[63/65] Write Objects.LinkFileList
[64/65] Linking snippet-extract-tool
Build of product 'snippet-extract' complete! (10.45s)
warning: 'swift-algorithms': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/host/spi-builder-workspace/.build/checkouts/swift-algorithms/Sources/Algorithms/Documentation.docc
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/45] Compiling InternalCollectionsUtilities _SortedCollection.swift
[3/45] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[4/57] Compiling NIOConcurrencyHelpers atomics.swift
[5/57] Emitting module CryptoBoringWrapper
[6/57] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[7/57] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[8/57] Compiling Logging MetadataProvider.swift
[9/57] Compiling Logging Locks.swift
[10/57] Compiling NIOConcurrencyHelpers NIOLock.swift
[11/57] Compiling InternalCollectionsUtilities Debugging.swift
[12/57] Compiling InternalCollectionsUtilities Descriptions.swift
[13/57] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[14/57] Compiling NIOConcurrencyHelpers lock.swift
[15/57] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[16/57] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[17/57] Compiling CryptoBoringWrapper RandomBytes.swift
[18/57] Compiling RealModule Real.swift
[19/58] Compiling RealModule Float16+Real.swift
[20/58] Compiling RealModule Float80+Real.swift
[21/58] Compiling RealModule AlgebraicField.swift
[22/58] Compiling RealModule ApproximateEquality.swift
[23/58] Compiling RealModule ElementaryFunctions.swift
[24/58] Compiling RealModule Float+Real.swift
[27/58] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[28/58] Compiling RealModule AugmentedArithmetic.swift
[29/58] Compiling RealModule Double+Real.swift
[30/58] Emitting module Logging
[31/58] Compiling _NIOBase64 Base64.swift
[32/58] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[33/58] Emitting module _NIOBase64
[34/58] Compiling INIParser INIParser.swift
[35/58] Emitting module INIParser
[36/59] Compiling RealModule RealFunctions.swift
[37/60] Compiling _NIODataStructures PriorityQueue.swift
[38/60] Emitting module _NIODataStructures
[39/60] Compiling _NIODataStructures _TinyArray.swift
[40/60] Compiling _NIODataStructures Heap.swift
[42/61] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[43/61] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[44/61] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[47/61] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[50/61] Emitting module InternalCollectionsUtilities
[51/61] Emitting module RealModule
[52/62] Compiling CryptoBoringWrapper EllipticCurve.swift
[53/62] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[54/62] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[55/63] Emitting module NIOConcurrencyHelpers
[59/86] Compiling Atomics Primitives.shims.swift
[60/86] Compiling Atomics AtomicInteger.swift
[61/86] Compiling Atomics AtomicOptionalWrappable.swift
[62/117] Compiling Crypto ASN1BitString.swift
[63/117] Compiling Algorithms Cycle.swift
[64/127] Compiling Crypto ASN1Strings.swift
[65/127] Compiling Crypto ArraySliceBigint.swift
[66/185] Compiling Logging LogHandler.swift
[67/185] Compiling Logging Logging.swift
[68/186] Compiling Crypto GeneralizedTime.swift
[69/186] Compiling Crypto ObjectIdentifier.swift
[72/186] Compiling Crypto ASN1Null.swift
[73/186] Compiling Crypto ASN1OctetString.swift
[76/186] Compiling Algorithms Split.swift
[77/186] Compiling Algorithms Stride.swift
[78/314] Compiling HeapModule _HeapNode.swift
[79/314] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[80/375] Compiling HeapModule Heap+Descriptions.swift
[81/390] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[82/390] Compiling HashTreeCollections _HashNode+Structural merge.swift
[83/390] Compiling HashTreeCollections _AncestorHashSlots.swift
[84/390] Compiling HeapModule Heap.swift
[85/390] Compiling HeapModule Heap+Invariants.swift
[86/390] Compiling HeapModule Heap+UnsafeHandle.swift
[87/390] Emitting module HeapModule
[89/391] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[90/391] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[91/391] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[92/391] Compiling HashTreeCollections _HashNode+Initializers.swift
[93/391] Compiling HashTreeCollections _HashNode+Invariants.swift
[94/391] Compiling HashTreeCollections _HashNode+Lookups.swift
[95/394] Compiling HashTreeCollections TreeSet+Hashable.swift
[96/394] Compiling HashTreeCollections TreeSet+Sendable.swift
[97/394] Compiling HashTreeCollections TreeSet+Sequence.swift
[98/394] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[99/394] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[100/394] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[101/394] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[102/394] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[103/394] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[104/394] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[105/404] Compiling HashTreeCollections _HashNode+Builder.swift
[106/404] Compiling HashTreeCollections _HashNode+Debugging.swift
[112/411] Compiling HashTreeCollections TreeSet+Equatable.swift
[113/411] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[114/411] Compiling BitCollections BitSet.Index.swift
[115/411] Compiling BitCollections BitSet._UnsafeHandle.swift
[116/411] Compiling BitCollections BitSet.swift
[117/411] Compiling BitCollections Range+Utilities.swift
[118/411] Compiling BitCollections Slice+Utilities.swift
[119/411] Compiling BitCollections UInt+Tricks.swift
[120/411] Compiling BitCollections _Word.swift
[121/411] Compiling HashTreeCollections TreeDictionary+Keys.swift
[122/420] Compiling HashTreeCollections _UnsafePath.swift
[123/420] Compiling HashTreeCollections TreeDictionary+Codable.swift
[124/420] Compiling HashTreeCollections TreeDictionary+Collection.swift
[125/420] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[126/420] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[127/420] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[128/420] Compiling HashTreeCollections TreeDictionary.swift
[135/420] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[136/420] Compiling HashTreeCollections TreeDictionary+Merge.swift
[137/420] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[138/420] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[139/420] Compiling HashTreeCollections TreeDictionary+Values.swift
[141/420] Compiling HashTreeCollections TreeSet+Codable.swift
[142/420] Compiling HashTreeCollections TreeSet+Collection.swift
[143/420] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[144/420] Compiling HashTreeCollections TreeSet+Debugging.swift
[145/420] Compiling HashTreeCollections TreeSet+Descriptions.swift
[150/420] Emitting module CoreMetrics
[151/420] Compiling CoreMetrics Metrics.swift
[152/420] Compiling CoreMetrics Locks.swift
[153/421] Compiling HashTreeCollections _HashLevel.swift
[156/421] Compiling HashTreeCollections _HashSlot.swift
[157/421] Compiling HashTreeCollections _HashStack.swift
[158/421] Compiling HashTreeCollections _HashTreeIterator.swift
[159/421] Compiling HashTreeCollections _HashTreeStatistics.swift
[160/421] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[161/421] Compiling HashTreeCollections _RawHashNode.swift
[162/421] Compiling HashTreeCollections _UnmanagedHashNode.swift
[170/456] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[171/456] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[172/456] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[173/456] Compiling OrderedCollections OrderedDictionary+Values.swift
[174/456] Compiling OrderedCollections OrderedDictionary.swift
[175/456] Compiling OrderedCollections OrderedSet+Codable.swift
[176/456] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[177/456] Compiling OrderedCollections OrderedSet+Descriptions.swift
[178/456] Compiling OrderedCollections OrderedSet+Diffing.swift
[179/456] Compiling OrderedCollections OrderedSet+Equatable.swift
[181/476] Emitting module Crypto
[182/476] Compiling Crypto PrettyBytes.swift
[183/476] Compiling Crypto SafeCompare.swift
[184/476] Compiling Crypto SecureBytes.swift
[185/476] Compiling Crypto Zeroization.swift
[186/476] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[187/476] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[188/476] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[189/476] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[190/476] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[191/476] Compiling HashTreeCollections TreeSet.swift
[202/476] Emitting module BitCollections
[203/476] Compiling OrderedCollections _HashTable+Testing.swift
[204/476] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[205/476] Compiling OrderedCollections _HashTable.swift
[206/476] Compiling OrderedCollections _Hashtable+Header.swift
[207/476] Compiling OrderedCollections OrderedDictionary+Codable.swift
[208/476] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[209/476] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[210/476] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[213/476] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[214/476] Compiling OrderedCollections OrderedDictionary+Elements.swift
[215/476] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[216/476] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[217/476] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[218/476] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[219/476] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[220/476] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[224/485] Compiling OrderedCollections _HashTable+Bucket.swift
[225/485] Compiling OrderedCollections _HashTable+BucketIterator.swift
[226/485] Compiling OrderedCollections _HashTable+Constants.swift
[227/485] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[231/500] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[232/500] Compiling OrderedCollections OrderedSet+Hashable.swift
[233/500] Compiling OrderedCollections OrderedSet+Initializers.swift
[234/500] Compiling OrderedCollections OrderedSet+Insertions.swift
[235/500] Compiling OrderedCollections OrderedSet+Invariants.swift
[236/500] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[237/500] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[238/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[239/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[240/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[241/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[242/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[243/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[244/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[245/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[246/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[247/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[248/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[249/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[250/500] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[251/500] Compiling DequeModule Deque+Testing.swift
[252/500] Compiling DequeModule Deque._Storage.swift
[253/500] Compiling DequeModule _DequeBuffer.swift
[254/500] Compiling DequeModule _DequeBufferHeader.swift
[255/500] Compiling DequeModule Deque._UnsafeHandle.swift
[256/500] Compiling DequeModule Deque.swift
[259/500] Compiling DequeModule Deque+Codable.swift
[260/500] Compiling DequeModule Deque+Collection.swift
[261/500] Compiling DequeModule Deque+CustomReflectable.swift
[262/500] Compiling DequeModule Deque+Descriptions.swift
[263/500] Compiling DequeModule Deque+Equatable.swift
[264/500] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[265/500] Compiling DequeModule Deque+Extras.swift
[266/500] Compiling DequeModule Deque+Hashable.swift
[282/502] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[283/502] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[284/502] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[285/502] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[303/509] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[304/509] Compiling OrderedCollections OrderedSet.swift
[305/509] Compiling OrderedCollections _UnsafeBitset.swift
[317/509] Compiling OrderedCollections OrderedSet+Sendable.swift
[318/509] Compiling OrderedCollections OrderedSet+SubSequence.swift
[319/509] Compiling OrderedCollections OrderedSet+Testing.swift
[320/509] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[340/510] Emitting module Atomics
[375/510] Compiling DequeModule _DequeSlot.swift
[376/510] Compiling DequeModule _UnsafeWrappedBuffer.swift
[403/512] Compiling _RopeModule Rope+RemoveSubrange.swift
[404/512] Compiling _RopeModule Rope+Split.swift
[405/512] Compiling _RopeModule Optional Utilities.swift
[406/512] Compiling _RopeModule String Utilities.swift
[407/512] Compiling _RopeModule String.Index+ABI.swift
[408/512] Compiling _RopeModule _CharacterRecognizer.swift
[415/513] Emitting module Metrics
[416/513] Compiling Metrics Metrics.swift
[425/514] Emitting module _RopeModule
[426/514] Emitting module DequeModule
[427/515] Compiling _RopeModule Rope+Join.swift
[428/515] Compiling _RopeModule Rope+MutatingForEach.swift
[429/515] Compiling _RopeModule Rope+Remove.swift
[485/516] Emitting module Algorithms
[516/518] Emitting module HashTreeCollections
[518/579] Emitting module OrderedCollections
[521/582] Emitting module Collections
[522/582] Compiling Collections Collections.swift
[524/583] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[525/583] Compiling NIOCore EventLoopFuture+Deprecated.swift
[526/583] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[527/583] Compiling NIOCore EventLoopFuture.swift
[528/583] Compiling NIOCore FileDescriptor.swift
[529/583] Compiling NIOCore FileHandle.swift
[530/583] Compiling NIOCore FileRegion.swift
[531/583] Compiling NIOCore GlobalSingletons.swift
[532/591] Compiling NIOCore AddressedEnvelope.swift
[533/591] Compiling NIOCore AsyncAwaitSupport.swift
[534/591] Compiling NIOCore AsyncChannel.swift
[535/591] Compiling NIOCore AsyncChannelHandler.swift
[536/591] Compiling NIOCore AsyncChannelInboundStream.swift
[537/591] Compiling NIOCore AsyncChannelOutboundWriter.swift
[538/591] Compiling NIOCore NIOAsyncSequenceProducer.swift
[539/591] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[540/591] Compiling NIOCore NIOAsyncWriter.swift
[541/591] Compiling NIOCore IO.swift
[542/591] Compiling NIOCore IOData.swift
[543/591] Compiling NIOCore IPProtocol.swift
[544/591] Compiling NIOCore IntegerBitPacking.swift
[545/591] Compiling NIOCore IntegerTypes.swift
[546/591] Compiling NIOCore Interfaces.swift
[547/591] Compiling NIOCore Linux.swift
[548/591] Compiling NIOCore MarkedCircularBuffer.swift
[549/591] Compiling NIOCore MulticastChannel.swift
[550/591] Compiling NIOCore NIOAny.swift
[551/591] Compiling NIOCore NIOCloseOnErrorHandler.swift
[552/591] Compiling NIOCore NIOLoopBound.swift
[553/591] Compiling NIOCore NIOScheduledCallback.swift
[554/591] Compiling NIOCore NIOSendable.swift
[555/591] Compiling NIOCore PointerHelpers.swift
[556/591] Compiling NIOCore RecvByteBufferAllocator.swift
[557/591] Compiling NIOCore CircularBuffer.swift
[558/591] Compiling NIOCore Codec.swift
[559/591] Compiling NIOCore ConvenienceOptionSupport.swift
[560/591] Compiling NIOCore DeadChannel.swift
[561/591] Compiling NIOCore DispatchQueue+WithFuture.swift
[562/591] Compiling NIOCore EventLoop+Deprecated.swift
[563/591] Compiling NIOCore EventLoop+SerialExecutor.swift
[564/591] Compiling NIOCore EventLoop.swift
[565/591] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[566/591] Compiling NIOCore SocketAddresses.swift
[567/591] Compiling NIOCore SocketOptionProvider.swift
[568/591] Compiling NIOCore SystemCallHelpers.swift
[569/591] Compiling NIOCore TimeAmount+Duration.swift
[570/591] Compiling NIOCore TypeAssistedChannelHandler.swift
[571/591] Compiling NIOCore UniversalBootstrapSupport.swift
[572/591] Compiling NIOCore Utilities.swift
[573/591] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[574/591] Compiling NIOCore BSDSocketAPI.swift
[575/591] Compiling NIOCore ByteBuffer-aux.swift
[576/591] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[577/591] Compiling NIOCore ByteBuffer-conversions.swift
[578/591] Compiling NIOCore ByteBuffer-core.swift
[579/591] Compiling NIOCore ByteBuffer-hex.swift
[580/591] Compiling NIOCore ByteBuffer-int.swift
[581/591] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[582/591] Compiling NIOCore ByteBuffer-multi-int.swift
[583/591] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[584/591] Compiling NIOCore ByteBuffer-views.swift
[585/591] Compiling NIOCore Channel.swift
[586/591] Compiling NIOCore ChannelHandler.swift
[587/591] Compiling NIOCore ChannelHandlers.swift
[588/591] Compiling NIOCore ChannelInvoker.swift
[589/591] Compiling NIOCore ChannelOption.swift
[590/591] Compiling NIOCore ChannelPipeline.swift
[591/591] Emitting module NIOCore
[593/644] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[594/644] Emitting module NIOEmbedded
[595/644] Compiling NIOEmbedded AsyncTestingChannel.swift
[596/644] Compiling NIOEmbedded Embedded.swift
[598/645] Compiling NIOPosix Pool.swift
[599/645] Compiling NIOPosix PooledRecvBufferAllocator.swift
[600/645] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[601/645] Compiling NIOPosix PosixSingletons.swift
[602/645] Compiling NIOPosix RawSocketBootstrap.swift
[603/645] Compiling NIOPosix Resolver.swift
[604/645] Compiling NIOPosix Selectable.swift
[605/645] Compiling NIOPosix BSDSocketAPICommon.swift
[606/645] Compiling NIOPosix BSDSocketAPIPosix.swift
[607/645] Compiling NIOPosix BSDSocketAPIWindows.swift
[608/645] Compiling NIOPosix BaseSocket.swift
[609/645] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[610/645] Compiling NIOPosix BaseSocketChannel.swift
[611/645] Compiling NIOPosix BaseStreamSocketChannel.swift
[612/651] Compiling NIOPosix Bootstrap.swift
[613/651] Compiling NIOPosix ControlMessage.swift
[614/651] Compiling NIOPosix DatagramVectorReadManager.swift
[615/651] Compiling NIOPosix Errors+Any.swift
[616/651] Compiling NIOPosix FileDescriptor.swift
[617/651] Compiling NIOPosix GetaddrinfoResolver.swift
[618/651] Compiling NIOPosix HappyEyeballs.swift
[619/651] Compiling NIOPosix ServerSocket.swift
[620/651] Compiling NIOPosix Socket.swift
[621/651] Compiling NIOPosix SocketChannel.swift
[622/651] Compiling NIOPosix SocketProtocols.swift
[623/651] Compiling NIOPosix System.swift
[624/651] Compiling NIOPosix Thread.swift
[625/651] Compiling NIOPosix ThreadPosix.swift
[626/651] Compiling NIOPosix ThreadWindows.swift
[627/651] Compiling NIOPosix UnsafeTransfer.swift
[628/651] Compiling NIOPosix Utilities.swift
[629/651] Compiling NIOPosix VsockAddress.swift
[630/651] Compiling NIOPosix VsockChannelEvents.swift
[631/651] Compiling NIOPosix SelectableChannel.swift
[632/651] Compiling NIOPosix SelectableEventLoop.swift
[633/651] Compiling NIOPosix SelectorEpoll.swift
[634/651] Compiling NIOPosix SelectorGeneric.swift
[635/651] Compiling NIOPosix SelectorKqueue.swift
[636/651] Compiling NIOPosix SelectorUring.swift
[637/651] Emitting module NIOPosix
[638/651] Compiling NIOPosix IO.swift
[639/651] Compiling NIOPosix IntegerBitPacking.swift
[640/651] Compiling NIOPosix IntegerTypes.swift
[641/651] Compiling NIOPosix Linux.swift
[642/651] Compiling NIOPosix LinuxCPUSet.swift
[643/651] Compiling NIOPosix LinuxUring.swift
[644/651] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[645/651] Compiling NIOPosix NIOThreadPool.swift
[646/651] Compiling NIOPosix NonBlockingFileIO.swift
[647/651] Compiling NIOPosix PendingDatagramWritesManager.swift
[648/651] Compiling NIOPosix PendingWritesManager.swift
[649/651] Compiling NIOPosix PipeChannel.swift
[650/651] Compiling NIOPosix PipePair.swift
[651/651] Compiling NIOPosix PointerHelpers.swift
[653/654] Emitting module NIO
[654/654] Compiling NIO Exports.swift
[656/694] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[657/694] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[658/694] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[659/694] Compiling NIOSOCKS ClientStateMachine.swift
[660/695] Compiling NIOSOCKS SOCKSResponse.swift
[661/695] Emitting module NIOSOCKS
[662/695] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[663/695] Compiling NIOHTTP1 HTTPEncoder.swift
[664/695] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[665/695] Compiling NIOTLS TLSEvents.swift
[666/695] Emitting module NIOTLS
[667/695] Compiling NIOHTTP1 ByteCollectionUtils.swift
[668/695] Compiling NIOHTTP1 HTTPDecoder.swift
[669/695] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[670/695] Compiling NIOSOCKS ServerStateMachine.swift
[671/695] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[672/695] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[673/695] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[674/695] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[675/696] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[676/696] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[677/696] Emitting module NIOFoundationCompat
[678/697] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[679/697] Compiling NIOTLS SNIHandler.swift
[681/698] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[682/698] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[683/700] Emitting module NIOHTTP1
[686/700] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[687/700] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[691/700] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[692/700] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[693/700] Compiling NIOHTTP1 HTTPTypes.swift
[696/750] Compiling NIOSSL SSLContext.swift
[697/750] Compiling NIOSSL SSLErrors.swift
[698/750] Compiling NIOSSL ObjectIdentifier.swift
[699/750] Compiling NIOSSL PosixPort.swift
[700/750] Compiling NIOSSL SSLCallbacks.swift
[701/752] Emitting module NIOTransportServices
[702/752] Compiling NIOSSL NIOSSLHandler+Configuration.swift
[703/752] Compiling NIOSSL NIOSSLHandler.swift
[704/752] Compiling NIOSSL NIOSSLServerHandler.swift
[705/752] Compiling NIOSSL SSLCertificate.swift
[706/752] Compiling NIOSSL SSLCertificateExtensions.swift
[707/752] Compiling NIOSSL SSLConnection.swift
[708/752] Compiling NIOSSL AndroidCABundle.swift
[709/752] Compiling NIOSSL ByteBufferBIO.swift
[710/752] Compiling NIOSSL CustomPrivateKey.swift
[711/752] Compiling NIOSSL IdentityVerification.swift
[712/752] Compiling NIOSSL LinuxCABundle.swift
[713/752] Compiling NIOSSL NIOSSLClientHandler.swift
[716/752] Compiling NIOSSL SSLInit.swift
[717/752] Compiling NIOSSL SSLPKCS12Bundle.swift
[718/752] Compiling NIOSSL SSLPrivateKey.swift
[719/752] Compiling NIOSSL SSLPublicKey.swift
[720/752] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[721/752] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[730/754] Compiling NIOSSL SubjectAlternativeName.swift
[731/754] Compiling NIOSSL NIOSSLSecureBytes.swift
[732/754] Compiling NIOSSL RNG.swift
[733/754] Compiling NIOSSL SafeCompare.swift
[742/783] Emitting module NIOHTTPCompression
[743/783] Emitting module NIOSSL
[744/802] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[745/802] Compiling MultipartKit Exports.swift
[746/802] Compiling MultipartKit FormDataDecoder.Decoder.swift
[747/803] Compiling TecoSigner deprecated.swift
[748/803] Compiling TecoSigner credential.swift
[749/804] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[750/804] Compiling NIOHTTPCompression HTTPDecompression.swift
[751/804] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[752/804] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[753/804] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[754/804] Compiling MultipartKit FormDataDecoder.swift
[755/804] Compiling MultipartKit FormDataEncoder.Encoder.swift
[756/804] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[757/804] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[758/804] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[759/804] Compiling MultipartKit FormDataEncoder.swift
[760/804] Compiling MultipartKit Storage.swift
[761/804] Compiling MultipartKit MultipartFormData.swift
[762/804] Compiling MultipartKit MultipartParser.swift
[763/804] Emitting module NIOHPACK
[764/804] Compiling TecoSigner error.swift
[765/804] Compiling TecoSigner exports.swift
[766/804] Compiling NIOHPACK StaticHeaderTable.swift
[767/804] Compiling MultipartKit BasicCodingKey.swift
[768/804] Compiling MultipartKit MultipartError.swift
[769/804] Emitting module TecoSigner
/host/spi-builder-workspace/Sources/TecoSigner/cosSignerV5.swift:21:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
19 | import struct NIOHTTP1.HTTPHeaders
20 | import enum NIOHTTP1.HTTPMethod
21 | @_implementationOnly import struct Crypto.HMAC
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SymmetricKey
/host/spi-builder-workspace/Sources/TecoSigner/cosSignerV5.swift:22:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
20 | import enum NIOHTTP1.HTTPMethod
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
23 | @_implementationOnly import struct Crypto.SymmetricKey
24 |
/host/spi-builder-workspace/Sources/TecoSigner/cosSignerV5.swift:23:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SymmetricKey
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
24 |
25 | /// Tencent Cloud COS V5 API signer (HMAC-SHA1).
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:20:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
18 | import struct Foundation.URLQueryItem
19 | import enum NIOHTTP1.HTTPMethod
20 | @_implementationOnly import protocol Crypto.HashFunction
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:21:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
19 | import enum NIOHTTP1.HTTPMethod
20 | @_implementationOnly import protocol Crypto.HashFunction
21 | @_implementationOnly import struct Crypto.HMAC
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SHA256
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:22:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
20 | @_implementationOnly import protocol Crypto.HashFunction
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
23 | @_implementationOnly import struct Crypto.SHA256
24 | @_implementationOnly import struct Crypto.SymmetricKey
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:23:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SHA256
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
24 | @_implementationOnly import struct Crypto.SymmetricKey
25 |
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SHA256
24 | @_implementationOnly import struct Crypto.SymmetricKey
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
25 |
26 | /// Tencent Cloud API V1 signer (HmacSHA1).
/host/spi-builder-workspace/Sources/TecoSigner/signerV3.swift:40:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
38 | import struct NIOHTTP1.HTTPHeaders
39 | import enum NIOHTTP1.HTTPMethod
40 | @_implementationOnly import struct Crypto.HMAC
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
41 | @_implementationOnly import struct Crypto.SHA256
42 | @_implementationOnly import struct Crypto.SymmetricKey
/host/spi-builder-workspace/Sources/TecoSigner/signerV3.swift:41:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
39 | import enum NIOHTTP1.HTTPMethod
40 | @_implementationOnly import struct Crypto.HMAC
41 | @_implementationOnly import struct Crypto.SHA256
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
42 | @_implementationOnly import struct Crypto.SymmetricKey
43 |
/host/spi-builder-workspace/Sources/TecoSigner/signerV3.swift:42:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
40 | @_implementationOnly import struct Crypto.HMAC
41 | @_implementationOnly import struct Crypto.SHA256
42 | @_implementationOnly import struct Crypto.SymmetricKey
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
43 |
44 | /// Tencent Cloud API V3 signer (TC3-HMAC-SHA256).
[770/804] Compiling TecoSigner cosSignerV5.swift
/host/spi-builder-workspace/Sources/TecoSigner/cosSignerV5.swift:21:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
19 | import struct NIOHTTP1.HTTPHeaders
20 | import enum NIOHTTP1.HTTPMethod
21 | @_implementationOnly import struct Crypto.HMAC
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SymmetricKey
/host/spi-builder-workspace/Sources/TecoSigner/cosSignerV5.swift:22:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
20 | import enum NIOHTTP1.HTTPMethod
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
23 | @_implementationOnly import struct Crypto.SymmetricKey
24 |
/host/spi-builder-workspace/Sources/TecoSigner/cosSignerV5.swift:23:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SymmetricKey
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
24 |
25 | /// Tencent Cloud COS V5 API signer (HMAC-SHA1).
[771/804] Compiling NIOHPACK IndexedHeaderTable.swift
[772/804] Compiling NIOHPACK IntegerCoding.swift
[773/804] Compiling TecoSigner signerV1.swift
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:20:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
18 | import struct Foundation.URLQueryItem
19 | import enum NIOHTTP1.HTTPMethod
20 | @_implementationOnly import protocol Crypto.HashFunction
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:21:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
19 | import enum NIOHTTP1.HTTPMethod
20 | @_implementationOnly import protocol Crypto.HashFunction
21 | @_implementationOnly import struct Crypto.HMAC
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SHA256
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:22:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
20 | @_implementationOnly import protocol Crypto.HashFunction
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
23 | @_implementationOnly import struct Crypto.SHA256
24 | @_implementationOnly import struct Crypto.SymmetricKey
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:23:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
21 | @_implementationOnly import struct Crypto.HMAC
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SHA256
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
24 | @_implementationOnly import struct Crypto.SymmetricKey
25 |
/host/spi-builder-workspace/Sources/TecoSigner/signerV1.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
22 | @_implementationOnly import enum Crypto.Insecure
23 | @_implementationOnly import struct Crypto.SHA256
24 | @_implementationOnly import struct Crypto.SymmetricKey
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
25 |
26 | /// Tencent Cloud API V1 signer (HmacSHA1).
[774/804] Compiling TecoSigner signerV3.swift
/host/spi-builder-workspace/Sources/TecoSigner/signerV3.swift:40:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
38 | import struct NIOHTTP1.HTTPHeaders
39 | import enum NIOHTTP1.HTTPMethod
40 | @_implementationOnly import struct Crypto.HMAC
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
41 | @_implementationOnly import struct Crypto.SHA256
42 | @_implementationOnly import struct Crypto.SymmetricKey
/host/spi-builder-workspace/Sources/TecoSigner/signerV3.swift:41:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
39 | import enum NIOHTTP1.HTTPMethod
40 | @_implementationOnly import struct Crypto.HMAC
41 | @_implementationOnly import struct Crypto.SHA256
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
42 | @_implementationOnly import struct Crypto.SymmetricKey
43 |
/host/spi-builder-workspace/Sources/TecoSigner/signerV3.swift:42:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
40 | @_implementationOnly import struct Crypto.HMAC
41 | @_implementationOnly import struct Crypto.SHA256
42 | @_implementationOnly import struct Crypto.SymmetricKey
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoSigner' may lead to instability during execution
43 |
44 | /// Tencent Cloud API V3 signer (TC3-HMAC-SHA256).
[775/804] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[776/804] Compiling NIOHTTPCompression HTTPCompression.swift
[777/804] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[778/805] Compiling NIOHPACK HuffmanTables.swift
[779/805] Compiling TecoSigner utils.swift
[789/808] Compiling NIOHPACK HuffmanCoding.swift
[790/808] Compiling MultipartKit MultipartPart.swift
[791/809] Compiling MultipartKit MultipartPartConvertible.swift
[792/809] Compiling NIOSSL Zeroization.swift
[793/809] Compiling NIOSSL TLSConfiguration.swift
[794/809] Compiling NIOSSL UniversalBootstrapSupport.swift
[795/809] Emitting module MultipartKit
[809/810] Compiling MultipartKit MultipartSerializer.swift
[810/810] Compiling MultipartKit Utilities.swift
[812/869] Compiling NIOHTTP2 MaySendFrames.swift
[813/869] Compiling NIOHTTP2 SendingDataState.swift
[814/869] Compiling NIOHTTP2 SendingGoawayState.swift
[815/869] Compiling NIOHTTP2 SendingHeadersState.swift
[816/869] Compiling NIOHTTP2 SendingPushPromiseState.swift
[817/869] Compiling NIOHTTP2 SendingRstStreamState.swift
[818/869] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[819/869] Compiling NIOHTTP2 HTTP2SettingsState.swift
[820/877] Emitting module NIOHTTP2
[821/877] Compiling NIOHTTP2 InboundWindowManager.swift
[822/877] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[823/877] Compiling NIOHTTP2 StreamChannelFlowController.swift
[824/877] Compiling NIOHTTP2 StreamChannelList.swift
[825/877] Compiling NIOHTTP2 StreamMap.swift
[826/877] Compiling NIOHTTP2 StreamStateMachine.swift
[827/877] Compiling NIOHTTP2 UnsafeTransfer.swift
[828/877] Compiling NIOHTTP2 WatermarkedFlowController.swift
[829/877] Compiling NIOHTTP2 ConnectionStateMachine.swift
[830/877] Compiling NIOHTTP2 ConnectionStreamsState.swift
[831/877] Compiling NIOHTTP2 MayReceiveFrames.swift
[832/877] Compiling NIOHTTP2 ReceivingDataState.swift
[833/877] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[834/877] Compiling NIOHTTP2 ReceivingHeadersState.swift
[835/877] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[836/877] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[837/877] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[838/877] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[839/877] Compiling NIOHTTP2 HTTP2Frame.swift
[840/877] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[841/877] Compiling NIOHTTP2 HTTP2FrameParser.swift
[842/877] Compiling NIOHTTP2 HTTP2PingData.swift
[843/877] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[844/877] Compiling NIOHTTP2 HTTP2Settings.swift
[845/877] Compiling NIOHTTP2 HTTP2Stream.swift
[846/877] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[847/877] Compiling NIOHTTP2 HasFlowControlWindows.swift
[848/877] Compiling NIOHTTP2 HasLocalSettings.swift
[849/877] Compiling NIOHTTP2 HasRemoteSettings.swift
[850/877] Compiling NIOHTTP2 LocallyQuiescingState.swift
[851/877] Compiling NIOHTTP2 QuiescingState.swift
[852/877] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[853/877] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[854/877] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[855/877] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[856/877] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[857/877] Compiling NIOHTTP2 HTTP2StreamID.swift
[858/877] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[859/877] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[860/877] Compiling NIOHTTP2 HTTP2UserEvents.swift
[861/877] Compiling NIOHTTP2 InboundEventBuffer.swift
[862/877] Compiling NIOHTTP2 StateMachineResult.swift
[863/877] Compiling NIOHTTP2 ContentLengthVerifier.swift
[864/877] Compiling NIOHTTP2 DOSHeuristics.swift
[865/877] Compiling NIOHTTP2 Error+Any.swift
[866/877] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[867/877] Compiling NIOHTTP2 ControlFrameBuffer.swift
[868/877] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[869/877] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[870/877] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[871/877] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[872/877] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[873/877] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[874/877] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[875/877] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[876/877] Compiling NIOHTTP2 HTTP2Error.swift
[877/877] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[879/935] Emitting module AsyncHTTPClient
[880/943] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[881/943] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[882/943] Compiling AsyncHTTPClient AsyncLazySequence.swift
[883/943] Compiling AsyncHTTPClient HTTPClient+execute.swift
[884/943] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[885/943] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[886/943] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[887/943] Compiling AsyncHTTPClient HTTPClientRequest.swift
[888/943] Compiling AsyncHTTPClient ConnectionPool.swift
[889/943] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[890/943] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[891/943] Compiling AsyncHTTPClient TLSEventsHandler.swift
[892/943] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[893/943] Compiling AsyncHTTPClient HTTP1Connection.swift
[894/943] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[895/943] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[896/943] Compiling AsyncHTTPClient HTTPClientResponse.swift
[897/943] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[898/943] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[899/943] Compiling AsyncHTTPClient Transaction.swift
[900/943] Compiling AsyncHTTPClient Base64.swift
[901/943] Compiling AsyncHTTPClient BasicAuth.swift
[902/943] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[903/943] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[904/943] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[905/943] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[906/943] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[907/943] Compiling AsyncHTTPClient ConnectionTarget.swift
[908/943] Compiling AsyncHTTPClient DeconstructedURL.swift
[909/943] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[910/943] Compiling AsyncHTTPClient FoundationExtensions.swift
[911/943] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[912/943] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[913/943] Compiling AsyncHTTPClient HTTPClient.swift
[914/943] Compiling AsyncHTTPClient HTTPHandler.swift
[915/943] Compiling AsyncHTTPClient LRUCache.swift
[916/943] Compiling AsyncHTTPClient NWErrorHandler.swift
[917/943] Compiling AsyncHTTPClient NWWaitingHandler.swift
[918/943] Compiling AsyncHTTPClient TLSConfiguration.swift
[919/943] Compiling AsyncHTTPClient RedirectState.swift
[920/943] Compiling AsyncHTTPClient HTTP2Connection.swift
[921/943] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[922/943] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[923/943] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[924/943] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[925/943] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[926/943] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[927/943] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[928/943] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[929/943] Compiling AsyncHTTPClient RequestBodyLength.swift
[930/943] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[931/943] Compiling AsyncHTTPClient RequestOptions.swift
[932/943] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[933/943] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[934/943] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[935/943] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[936/943] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[937/943] Compiling AsyncHTTPClient RequestBag.swift
[938/943] Compiling AsyncHTTPClient RequestValidation.swift
[939/943] Compiling AsyncHTTPClient SSLContextCache.swift
[940/943] Compiling AsyncHTTPClient Scheme.swift
[941/943] Compiling AsyncHTTPClient Singleton.swift
[942/943] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[943/943] Compiling AsyncHTTPClient Utils.swift
[945/983] Compiling TecoCore TCRawServiceError.swift
[946/983] Compiling TecoCore TCServiceErrorType.swift
[947/983] Compiling TecoCore TCClient+Pagination.swift
[948/983] Compiling TecoCore TCClient+PaginationError.swift
[949/983] Compiling TecoCore TCClient+Paginator.swift
[950/988] Compiling TecoCore TCServiceConfig.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/CredentialProviderSelector.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
[951/988] Compiling TecoCore CVMRoleCredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/CredentialProviderSelector.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
[952/988] Compiling TecoCore CredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/CredentialProviderSelector.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
[953/988] Compiling TecoCore CredentialProviderError.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/CredentialProviderSelector.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
[954/988] Compiling TecoCore CredentialProviderFactory.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/CredentialProviderSelector.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
[955/988] Compiling TecoCore CredentialProviderSelector.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/CredentialProviderSelector.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
[956/988] Compiling TecoCore TCPaginatedModel.swift
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import class Foundation.JSONEncoder
29 | import struct Foundation.URL
30 | @_implementationOnly import MultipartKit
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | @_implementationOnly import MultipartKit
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOHTTP1
34 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPResponse.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Logging
29 | import NIOCore
30 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOHTTP1
32 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/Environment.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 |
15 | #if canImport(Glibc)
16 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | #elseif canImport(Darwin)
18 | @_implementationOnly import Darwin.C
[957/988] Compiling TecoCore HTTPClient.swift
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import class Foundation.JSONEncoder
29 | import struct Foundation.URL
30 | @_implementationOnly import MultipartKit
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | @_implementationOnly import MultipartKit
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOHTTP1
34 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPResponse.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Logging
29 | import NIOCore
30 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOHTTP1
32 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/Environment.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 |
15 | #if canImport(Glibc)
16 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | #elseif canImport(Darwin)
18 | @_implementationOnly import Darwin.C
[958/988] Compiling TecoCore TCHTTPRequest.swift
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import class Foundation.JSONEncoder
29 | import struct Foundation.URL
30 | @_implementationOnly import MultipartKit
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | @_implementationOnly import MultipartKit
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOHTTP1
34 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPResponse.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Logging
29 | import NIOCore
30 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOHTTP1
32 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/Environment.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 |
15 | #if canImport(Glibc)
16 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | #elseif canImport(Darwin)
18 | @_implementationOnly import Darwin.C
[959/988] Compiling TecoCore TCHTTPResponse.swift
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import class Foundation.JSONEncoder
29 | import struct Foundation.URL
30 | @_implementationOnly import MultipartKit
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | @_implementationOnly import MultipartKit
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOHTTP1
34 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPResponse.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Logging
29 | import NIOCore
30 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOHTTP1
32 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/Environment.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 |
15 | #if canImport(Glibc)
16 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | #elseif canImport(Darwin)
18 | @_implementationOnly import Darwin.C
[960/988] Compiling TecoCore Environment.swift
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import class Foundation.JSONEncoder
29 | import struct Foundation.URL
30 | @_implementationOnly import MultipartKit
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | @_implementationOnly import MultipartKit
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOHTTP1
34 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPResponse.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Logging
29 | import NIOCore
30 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOHTTP1
32 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/Environment.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 |
15 | #if canImport(Glibc)
16 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | #elseif canImport(Darwin)
18 | @_implementationOnly import Darwin.C
[961/988] Compiling TecoCore RuntimeSelectorCredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/RuntimeSelectorCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/TCCLICredentialProvider.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
13 |
14 | import Logging
15 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
16 | import NIOCore
17 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/StaticCredential+CredentialProvider.swift:30:1: warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
28 | import TecoSigner
29 |
30 | extension StaticCredential: CredentialProvider {
| |- warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
31 | /// Provide a static credential.
32 | public func getCredential(on eventLoop: EventLoop, logger: Logger) -> EventLoopFuture<Credential> {
[962/988] Compiling TecoCore STSCredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/RuntimeSelectorCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/TCCLICredentialProvider.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
13 |
14 | import Logging
15 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
16 | import NIOCore
17 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/StaticCredential+CredentialProvider.swift:30:1: warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
28 | import TecoSigner
29 |
30 | extension StaticCredential: CredentialProvider {
| |- warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
31 | /// Provide a static credential.
32 | public func getCredential(on eventLoop: EventLoop, logger: Logger) -> EventLoopFuture<Credential> {
[963/988] Compiling TecoCore StaticCredential+CredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/RuntimeSelectorCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/TCCLICredentialProvider.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
13 |
14 | import Logging
15 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
16 | import NIOCore
17 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/StaticCredential+CredentialProvider.swift:30:1: warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
28 | import TecoSigner
29 |
30 | extension StaticCredential: CredentialProvider {
| |- warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
31 | /// Provide a static credential.
32 | public func getCredential(on eventLoop: EventLoop, logger: Logger) -> EventLoopFuture<Credential> {
[964/988] Compiling TecoCore StaticCredential+Environment.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/RuntimeSelectorCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/TCCLICredentialProvider.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
13 |
14 | import Logging
15 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
16 | import NIOCore
17 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/StaticCredential+CredentialProvider.swift:30:1: warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
28 | import TecoSigner
29 |
30 | extension StaticCredential: CredentialProvider {
| |- warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
31 | /// Provide a static credential.
32 | public func getCredential(on eventLoop: EventLoop, logger: Logger) -> EventLoopFuture<Credential> {
[965/988] Compiling TecoCore TCCLICredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/RuntimeSelectorCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/TCCLICredentialProvider.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
13 |
14 | import Logging
15 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
16 | import NIOCore
17 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/StaticCredential+CredentialProvider.swift:30:1: warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
28 | import TecoSigner
29 |
30 | extension StaticCredential: CredentialProvider {
| |- warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
31 | /// Provide a static credential.
32 | public func getCredential(on eventLoop: EventLoop, logger: Logger) -> EventLoopFuture<Credential> {
[966/988] Emitting module TecoCore
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import AsyncHTTPClient
27 | @_implementationOnly import Atomics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Dispatch
29 | import struct Foundation.URL
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:31:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import struct Foundation.URL
30 | import Logging
31 | @_implementationOnly import Metrics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
32 | @_implementationOnly import NIOConcurrencyHelpers
33 | import NIOCore
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | import Logging
31 | @_implementationOnly import Metrics
32 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOCore
34 | import NIOHTTP1
/host/spi-builder-workspace/Sources/TecoCore/Credential/CredentialProviderSelector.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/DeferredCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
12 | //===----------------------------------------------------------------------===//
13 |
14 | @_implementationOnly import INIParser
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 | @_implementationOnly import INIParser
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | import TecoSigner
18 |
/host/spi-builder-workspace/Sources/TecoCore/Credential/RuntimeSelectorCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/TCCLICredentialProvider.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
13 |
14 | import Logging
15 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
16 | import NIOCore
17 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/TemporaryCredentialProvider.swift:28:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
26 | import struct Foundation.TimeInterval
27 | import Logging
28 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import NIOCore
30 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import class Foundation.JSONEncoder
29 | import struct Foundation.URL
30 | @_implementationOnly import MultipartKit
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPRequest.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | @_implementationOnly import MultipartKit
31 | import NIOCore
32 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOHTTP1
34 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Transport/TCHTTPResponse.swift:30:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Logging
29 | import NIOCore
30 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
31 | import NIOHTTP1
32 |
/host/spi-builder-workspace/Sources/TecoCore/Utils/Environment.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 |
15 | #if canImport(Glibc)
16 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | #elseif canImport(Darwin)
18 | @_implementationOnly import Darwin.C
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
/host/spi-builder-workspace/Sources/TecoCore/Credential/StaticCredential+CredentialProvider.swift:30:1: warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
28 | import TecoSigner
29 |
30 | extension StaticCredential: CredentialProvider {
| |- warning: extension declares a conformance of imported type 'StaticCredential' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'TecoSigner' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
31 | /// Provide a static credential.
32 | public func getCredential(on eventLoop: EventLoop, logger: Logger) -> EventLoopFuture<Credential> {
[967/988] Compiling TecoCore EndpointProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import AsyncHTTPClient
27 | @_implementationOnly import Atomics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Dispatch
29 | import struct Foundation.URL
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:31:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import struct Foundation.URL
30 | import Logging
31 | @_implementationOnly import Metrics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
32 | @_implementationOnly import NIOConcurrencyHelpers
33 | import NIOCore
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | import Logging
31 | @_implementationOnly import Metrics
32 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOCore
34 | import NIOHTTP1
[968/988] Compiling TecoCore RetryPolicy.swift
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import AsyncHTTPClient
27 | @_implementationOnly import Atomics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Dispatch
29 | import struct Foundation.URL
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:31:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import struct Foundation.URL
30 | import Logging
31 | @_implementationOnly import Metrics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
32 | @_implementationOnly import NIOConcurrencyHelpers
33 | import NIOCore
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | import Logging
31 | @_implementationOnly import Metrics
32 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOCore
34 | import NIOHTTP1
[969/988] Compiling TecoCore TCClient.swift
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import AsyncHTTPClient
27 | @_implementationOnly import Atomics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Dispatch
29 | import struct Foundation.URL
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:31:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import struct Foundation.URL
30 | import Logging
31 | @_implementationOnly import Metrics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
32 | @_implementationOnly import NIOConcurrencyHelpers
33 | import NIOCore
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | import Logging
31 | @_implementationOnly import Metrics
32 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOCore
34 | import NIOHTTP1
[970/988] Compiling TecoCore TCModel.swift
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import AsyncHTTPClient
27 | @_implementationOnly import Atomics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Dispatch
29 | import struct Foundation.URL
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:31:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import struct Foundation.URL
30 | import Logging
31 | @_implementationOnly import Metrics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
32 | @_implementationOnly import NIOConcurrencyHelpers
33 | import NIOCore
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | import Logging
31 | @_implementationOnly import Metrics
32 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOCore
34 | import NIOHTTP1
[971/988] Compiling TecoCore TCRegion.swift
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import AsyncHTTPClient
27 | @_implementationOnly import Atomics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Dispatch
29 | import struct Foundation.URL
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:31:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import struct Foundation.URL
30 | import Logging
31 | @_implementationOnly import Metrics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
32 | @_implementationOnly import NIOConcurrencyHelpers
33 | import NIOCore
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | import Logging
31 | @_implementationOnly import Metrics
32 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOCore
34 | import NIOHTTP1
[972/988] Compiling TecoCore TCService.swift
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import AsyncHTTPClient
27 | @_implementationOnly import Atomics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import Dispatch
29 | import struct Foundation.URL
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:31:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import struct Foundation.URL
30 | import Logging
31 | @_implementationOnly import Metrics
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
32 | @_implementationOnly import NIOConcurrencyHelpers
33 | import NIOCore
/host/spi-builder-workspace/Sources/TecoCore/Common/TCClient.swift:32:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | import Logging
31 | @_implementationOnly import Metrics
32 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
33 | import NIOCore
34 | import NIOHTTP1
[973/988] Compiling TecoCore TemporaryCredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/TemporaryCredentialProvider.swift:28:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
26 | import struct Foundation.TimeInterval
27 | import Logging
28 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import NIOCore
30 | import TecoSigner
[974/988] Compiling TecoCore TCCommonError.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/TemporaryCredentialProvider.swift:28:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
26 | import struct Foundation.TimeInterval
27 | import Logging
28 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import NIOCore
30 | import TecoSigner
[975/988] Compiling TecoCore TCErrorContext.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/TemporaryCredentialProvider.swift:28:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
26 | import struct Foundation.TimeInterval
27 | import Logging
28 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import NIOCore
30 | import TecoSigner
[976/988] Compiling TecoCore TCErrorType.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/TemporaryCredentialProvider.swift:28:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
26 | import struct Foundation.TimeInterval
27 | import Logging
28 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import NIOCore
30 | import TecoSigner
[977/988] Compiling TecoCore TCRawError.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/TemporaryCredentialProvider.swift:28:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
26 | import struct Foundation.TimeInterval
27 | import Logging
28 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
29 | import NIOCore
30 | import TecoSigner
[978/988] Compiling TecoCore CredentialProviderWithClient.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/DeferredCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
12 | //===----------------------------------------------------------------------===//
13 |
14 | @_implementationOnly import INIParser
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 | @_implementationOnly import INIParser
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | import TecoSigner
18 |
[979/988] Compiling TecoCore DeferredCredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/DeferredCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
12 | //===----------------------------------------------------------------------===//
13 |
14 | @_implementationOnly import INIParser
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 | @_implementationOnly import INIParser
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | import TecoSigner
18 |
[980/988] Compiling TecoCore ExpiringCredential.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/DeferredCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
12 | //===----------------------------------------------------------------------===//
13 |
14 | @_implementationOnly import INIParser
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 | @_implementationOnly import INIParser
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | import TecoSigner
18 |
[981/988] Compiling TecoCore NullCredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/DeferredCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
12 | //===----------------------------------------------------------------------===//
13 |
14 | @_implementationOnly import INIParser
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 | @_implementationOnly import INIParser
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | import TecoSigner
18 |
[982/988] Compiling TecoCore OIDCRoleArnCredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/DeferredCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
12 | //===----------------------------------------------------------------------===//
13 |
14 | @_implementationOnly import INIParser
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 | @_implementationOnly import INIParser
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | import TecoSigner
18 |
[983/988] Compiling TecoCore ProfileCredentialProvider.swift
/host/spi-builder-workspace/Sources/TecoCore/Credential/DeferredCredentialProvider.swift:27:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
25 |
26 | import Logging
27 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
28 | import NIOCore
29 | import TecoSigner
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
12 | //===----------------------------------------------------------------------===//
13 |
14 | @_implementationOnly import INIParser
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
/host/spi-builder-workspace/Sources/TecoCore/Credential/ProfileCredentialProvider.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
14 | @_implementationOnly import INIParser
15 | import NIOCore
16 | @_implementationOnly import NIOConcurrencyHelpers
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
17 | import TecoSigner
18 |
[984/988] Compiling TecoCore FileLoader.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
[985/988] Compiling TecoCore Sendable.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
[986/988] Compiling TecoCore Singleton.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
[987/988] Compiling TecoCore deprecated.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
[988/988] Compiling TecoCore exports.swift
/host/spi-builder-workspace/Sources/TecoCore/Utils/FileLoader.swift:29:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
27 | import NIOPosix
28 | #if os(Linux)
29 | @_implementationOnly import Glibc
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
30 | #else
31 | import Foundation.NSString
/host/spi-builder-workspace/Sources/TecoCore/deprecated.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
15 | import Logging
16 | import NIOCore
17 | @_implementationOnly import NIOFoundationCompat
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoCore' may lead to instability during execution
18 | import NIOHTTP1
19 |
Build of target: 'TecoCore' complete! (45.14s)
Target: TecoDateHelpers
Extracting symbol information for 'TecoDateHelpers'...
Finished extracting symbol information for 'TecoDateHelpers'. (4.63s)
Building documentation for 'TecoDateHelpers'...
warning: 'Date' doesn't exist at '/TecoDateHelpers/Foundation'
--> index.md:27:16-27:20
25 | - ``TCDateValue``
26 |
27 + - ``Foundation/Date``
| ╰─suggestion: Replace 'Date' with 'DateFormatter'
28 | - ``Swift/Optional``
29 |Finished building documentation for 'TecoDateHelpers' (0.61s)
Generated documentation archive at:
/host/spi-builder-workspace/.docs/teco-project/teco-core/main
Building for debugging...
[0/2] Write swift-version-24593BA9C3E375BF.txt
Build of product 'snippet-extract' complete! (3.67s)
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/9] Compiling TecoDateHelpers Sendable.swift
[3/9] Compiling TecoDateHelpers TCDateWrapper.swift
[4/9] Compiling TecoDateHelpers TCDateValue.swift
[5/9] Compiling TecoDateHelpers TCDateFormatter.swift
[6/9] Compiling TecoDateHelpers TCTimestampISO8601Encoding.swift
/host/spi-builder-workspace/Sources/TecoDateHelpers/Property Wrappers/TCTimestampISO8601Encoding.swift:19:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
17 | import struct Foundation.Date
18 | import class Foundation.ISO8601DateFormatter
19 | @_implementationOnly import struct NIOConcurrencyHelpers.NIOLockedValueBox
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
20 |
21 | @propertyWrapper
[7/9] Compiling TecoDateHelpers TCTimestampEncoding.swift
/host/spi-builder-workspace/Sources/TecoDateHelpers/Property Wrappers/TCTimestampEncoding.swift:21:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
19 | import struct Foundation.TimeZone
20 | import class Foundation.DateFormatter
21 | @_implementationOnly import struct NIOConcurrencyHelpers.NIOLockedValueBox
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
22 |
23 | @propertyWrapper
[8/9] Emitting module TecoDateHelpers
/host/spi-builder-workspace/Sources/TecoDateHelpers/Property Wrappers/TCDateEncoding.swift:21:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
19 | import struct Foundation.TimeZone
20 | import class Foundation.DateFormatter
21 | @_implementationOnly import struct NIOConcurrencyHelpers.NIOLockedValueBox
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
22 |
23 | @propertyWrapper
/host/spi-builder-workspace/Sources/TecoDateHelpers/Property Wrappers/TCTimestampEncoding.swift:21:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
19 | import struct Foundation.TimeZone
20 | import class Foundation.DateFormatter
21 | @_implementationOnly import struct NIOConcurrencyHelpers.NIOLockedValueBox
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
22 |
23 | @propertyWrapper
/host/spi-builder-workspace/Sources/TecoDateHelpers/Property Wrappers/TCTimestampISO8601Encoding.swift:19:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
17 | import struct Foundation.Date
18 | import class Foundation.ISO8601DateFormatter
19 | @_implementationOnly import struct NIOConcurrencyHelpers.NIOLockedValueBox
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
20 |
21 | @propertyWrapper
[9/9] Compiling TecoDateHelpers TCDateEncoding.swift
/host/spi-builder-workspace/Sources/TecoDateHelpers/Property Wrappers/TCDateEncoding.swift:21:22: warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
19 | import struct Foundation.TimeZone
20 | import class Foundation.DateFormatter
21 | @_implementationOnly import struct NIOConcurrencyHelpers.NIOLockedValueBox
| `- warning: using '@_implementationOnly' without enabling library evolution for 'TecoDateHelpers' may lead to instability during execution
22 |
23 | @propertyWrapper
Build of target: 'TecoDateHelpers' complete! (4.13s)
Successfully merged into /host/spi-builder-workspace/.docs-staging/teco-project/teco-core/main/index/index.json
Successfully merged into /host/spi-builder-workspace/.docs-staging/teco-project/teco-core/main/linkable-paths.json
Target: TecoSigner
Extracting symbol information for 'TecoSigner'...
Finished extracting symbol information for 'TecoSigner'. (4.08s)
Building documentation for 'TecoSigner'...
warning: '7jixa' isn't a disambiguation for 'signURL(url:method:headers:tokenKey:date:duration:)' at '/TecoSigner/COSSignerV5'
--> COSSignerV5.md:13:56-13:62
11 | ### Signing Request URLs
12 |
13 + - ``signURL(url:method:headers:tokenKey:date:duration:)-7jixa``
| ├─suggestion: Replace '-7jixa' with '-avlf' for'func signURL(url: String, method: HTTPMethod = .GET, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> URL'
| ╰─suggestion: Replace '-7jixa' with '-6jrm5' for'func signURL(url: URL, method: HTTPMethod = .GET, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> URL'
14 | - ``signURL(url:method:headers:tokenKey:date:duration:)-1amy8``
15 |
warning: '1amy8' isn't a disambiguation for 'signURL(url:method:headers:tokenKey:date:duration:)' at '/TecoSigner/COSSignerV5'
--> COSSignerV5.md:14:56-14:62
12 |
13 | - ``signURL(url:method:headers:tokenKey:date:duration:)-7jixa``
14 + - ``signURL(url:method:headers:tokenKey:date:duration:)-1amy8``
| ├─suggestion: Replace '-1amy8' with '-avlf' for'func signURL(url: String, method: HTTPMethod = .GET, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> URL'
| ╰─suggestion: Replace '-1amy8' with '-6jrm5' for'func signURL(url: URL, method: HTTPMethod = .GET, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> URL'
15 |
16 | - ``signParameters(method:headers:path:parameters:tokenKey:date:duration:)``
warning: '9ukxr' isn't a disambiguation for 'signHeaders(url:method:headers:tokenKey:date:duration:)' at '/TecoSigner/COSSignerV5'
--> COSSignerV5.md:20:60-20:66
18 | ### Signing Request Headers
19 |
20 + - ``signHeaders(url:method:headers:tokenKey:date:duration:)-9ukxr``
| ├─suggestion: Replace '-9ukxr' with '-f4bi' for'func signHeaders(url: String, method: HTTPMethod = .PUT, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> HTTPHeaders'
| ╰─suggestion: Replace '-9ukxr' with '-41m5m' for'func signHeaders(url: URL, method: HTTPMethod = .PUT, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> HTTPHeaders'
21 | - ``signHeaders(url:method:headers:tokenKey:date:duration:)-39e44``
22 |
warning: '39e44' isn't a disambiguation for 'signHeaders(url:method:headers:tokenKey:date:duration:)' at '/TecoSigner/COSSignerV5'
--> COSSignerV5.md:21:60-21:66
19 |
20 | - ``signHeaders(url:method:headers:tokenKey:date:duration:)-9ukxr``
21 + - ``signHeaders(url:method:headers:tokenKey:date:duration:)-39e44``
| ├─suggestion: Replace '-39e44' with '-f4bi' for'func signHeaders(url: String, method: HTTPMethod = .PUT, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> HTTPHeaders'
| ╰─suggestion: Replace '-39e44' with '-41m5m' for'func signHeaders(url: URL, method: HTTPMethod = .PUT, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> HTTPHeaders'
22 |
23 | - ``signHeaders(method:headers:path:parameters:tokenKey:date:duration:)``
warning: '39e44' isn't a disambiguation for 'signHeaders(url:method:headers:tokenKey:date:duration:)' at '/TecoSigner/COSSignerV5'
--> Guides/SignCOSRequests.md:56:208-56:214
54 | ## Generate signed request headers
55 |
56 + A COS request allows signature as either HTTP headers or URL query items. For an immediate request, you can generate signed headers using ``COSSignerV5/signHeaders(url:method:headers:tokenKey:date:duration:)-39e44``. The following sample shows a simple signing step with request URL and headers.
| ├─suggestion: Replace '-39e44' with '-f4bi' for'func signHeaders(url: String, method: HTTPMethod = .PUT, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> HTTPHeaders'
| ╰─suggestion: Replace '-39e44' with '-41m5m' for'func signHeaders(url: URL, method: HTTPMethod = .PUT, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> HTTPHeaders'
57 |
58 | ```swift
warning: '9ukxr' isn't a disambiguation for 'signHeaders(url:method:headers:tokenKey:date:duration:)' at '/TecoSigner/COSSignerV5'
--> Guides/SignCOSRequests.md:76:84-76:90
74 | ```
75 |
76 + Note that the ``COSSignerV5/signHeaders(url:method:headers:tokenKey:date:duration:)-9ukxr`` variant accepts the request URL in string. There's also a non-throwing variant ``COSSignerV5/signRequest(method:headers:path:parameters:date:duration:)`` that takes the original path and parameters without percent encoding.
| ├─suggestion: Replace '-9ukxr' with '-f4bi' for'func signHeaders(url: String, method: HTTPMethod = .PUT, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> HTTPHeaders'
| ╰─suggestion: Replace '-9ukxr' with '-41m5m' for'func signHeaders(url: URL, method: HTTPMethod = .PUT, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> HTTPHeaders'
77 |
78 | ## Generate signed request URLs
warning: '1amy8' isn't a disambiguation for 'signURL(url:method:headers:tokenKey:date:duration:)' at '/TecoSigner/COSSignerV5'
--> Guides/SignCOSRequests.md:80:218-80:224
78 | ## Generate signed request URLs
79 |
80 + In some situations you may want to sign a URL, with which a user can perform the action later and by themselves. You can generate pre-signed URLs using ``COSSignerV5/signURL(url:method:headers:tokenKey:date:duration:)-1amy8``. The following sample shows a simple signing step with request URL and headers.
| ├─suggestion: Replace '-1amy8' with '-avlf' for'func signURL(url: String, method: HTTPMethod = .GET, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> URL'
| ╰─suggestion: Replace '-1amy8' with '-6jrm5' for'func signURL(url: URL, method: HTTPMethod = .GET, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> URL'
81 |
82 | ```swift
warning: '7jixa' isn't a disambiguation for 'signURL(url:method:headers:tokenKey:date:duration:)' at '/TecoSigner/COSSignerV5'
--> Guides/SignCOSRequests.md:102:80-102:86
100 | ```
101 |
102 + Note that the ``COSSignerV5/signURL(url:method:headers:tokenKey:date:duration:)-7jixa`` variant accepts the request URL in string. There's also a non-throwing variant ``COSSignerV5/signParameters(method:headers:path:parameters:tokenKey:date:duration:)`` that takes the original path and parameters without percent encoding, and returns a list of percent-encoded `URLQueryItem`s with signature included.
| ├─suggestion: Replace '-7jixa' with '-avlf' for'func signURL(url: String, method: HTTPMethod = .GET, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> URL'
| ╰─suggestion: Replace '-7jixa' with '-6jrm5' for'func signURL(url: URL, method: HTTPMethod = .GET, headers: HTTPHeaders = HTTPHeaders(), tokenKey: String = "x-cos-security-token", date: Date = Date(), duration: TimeInterval = 600) throws -> URL'
103 |
104 | ## Set up session token key for other services
warning: '6gu5z' isn't a disambiguation for 'signURL(url:algorithm:omitSessionToken:nonce:date:)' at '/TecoSigner/TCSignerV1'
--> Guides/SignRequestsV1.md:41:101-41:107
39 | ```
40 |
41 + You can generate a signed URL using ``TCSignerV1/signURL(url:algorithm:omitSessionToken:nonce:date:)-6gu5z`` for a `GET` request. The following sample shows a simple signing step.
| ├─suggestion: Replace '-6gu5z' with '-8kmx' for'func signURL(url: String, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> URL'
| ╰─suggestion: Replace '-6gu5z' with '-3jmpm' for'func signURL(url: URL, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> URL'
42 |
43 | ```swift
warning: '9hb3o' isn't a disambiguation for 'signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)' at '/TecoSigner/TCSignerV1'
--> Guides/SignRequestsV1.md:69:122-69:128
67 | ```
68 |
69 + You can generate a signed request body using ``TCSignerV1/signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-9hb3o``. The following sample shows a simple signing step using request URL and query items.
| ├─suggestion: Replace '-9hb3o' with '-4quo6' for'func signBody(url: String, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
| ╰─suggestion: Replace '-9hb3o' with '-9xb69' for'func signBody(url: URL, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
70 |
71 | ```swift
warning: 'knwl' isn't a disambiguation for 'signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)' at '/TecoSigner/TCSignerV1'
--> Guides/SignRequestsV1.md:92:97-92:102
90 | ```
91 |
92 + Note that there are ``TCSignerV1/signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-knwl`` and ``TCSignerV1/signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-knwl`` variants that accept the request URL in string. There's also a non-throwing variant ``TCSignerV1/signQueryItems(host:path:queryItems:method:algorithm:omitSessionToken:nonce:date:)`` that takes the host, path and query items directly and outputs a list of `URLQueryItem`s with signature included.
| ├─suggestion: Replace '-knwl' with '-4quo6' for'func signBody(url: String, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
| ╰─suggestion: Replace '-knwl' with '-9xb69' for'func signBody(url: URL, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
93 |
94 | There are some other configurations to control signing behavior. For example, `omitSessionToken` specifies whether ``Credential/token`` is used for signature.
warning: 'knwl' isn't a disambiguation for 'signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)' at '/TecoSigner/TCSignerV1'
--> Guides/SignRequestsV1.md:92:185-92:190
90 | ```
91 |
92 + Note that there are ``TCSignerV1/signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-knwl`` and ``TCSignerV1/signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-knwl`` variants that accept the request URL in string. There's also a non-throwing variant ``TCSignerV1/signQueryItems(host:path:queryItems:method:algorithm:omitSessionToken:nonce:date:)`` that takes the host, path and query items directly and outputs a list of `URLQueryItem`s with signature included.
| ├─suggestion: Replace '-knwl' with '-4quo6' for'func signBody(url: String, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
| ╰─suggestion: Replace '-knwl' with '-9xb69' for'func signBody(url: URL, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
93 |
94 | There are some other configurations to control signing behavior. For example, `omitSessionToken` specifies whether ``Credential/token`` is used for signature.
warning: 'b8bp' isn't a disambiguation for 'signHeaders(url:method:headers:body:mode:omitSessionToken:date:)' at '/TecoSigner/TCSignerV3'
--> Guides/SignRequestsV3.md:62:116-62:121
60 | ## Generate signed request headers
61 |
62 + You can generate signed headers using ``TCSignerV3/signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-b8bp``. The following sample shows a simple signing step with request URL, headers and body.
| ├─suggestion: Replace '-b8bp' with '-5dlyk' for'func signHeaders(url: String, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) throws -> HTTPHeaders'
| ├─suggestion: Replace '-b8bp' with '-n7yi' for'func signHeaders(url: URL, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
| ╰─suggestion: Replace '-b8bp' with '-20cqm' for'func signHeaders(url: URLComponents, method: HTTPMethod, headers: HTTPHeaders, body: TCSignerV3.BodyData?, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
63 |
64 | ```swift
warning: '1rcp6' isn't a disambiguation for 'signHeaders(url:method:headers:body:mode:omitSessionToken:date:)' at '/TecoSigner/TCSignerV3'
--> Guides/SignRequestsV3.md:86:92-86:98
84 | ```
85 |
86 + Note that the ``TCSignerV3/signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-1rcp6`` variant accepts the request URL in string, and may throw if the input is not valid URL. There's also a non-throwing variant ``TCSignerV3/signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-39hja`` that takes a `URLComponent` struct instead, which is compatible with RFC 3986.
| ├─suggestion: Replace '-1rcp6' with '-5dlyk' for'func signHeaders(url: String, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) throws -> HTTPHeaders'
| ├─suggestion: Replace '-1rcp6' with '-n7yi' for'func signHeaders(url: URL, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
| ╰─suggestion: Replace '-1rcp6' with '-20cqm' for'func signHeaders(url: URLComponents, method: HTTPMethod, headers: HTTPHeaders, body: TCSignerV3.BodyData?, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
87 |
88 | ## Configure signing options
warning: '39hja' isn't a disambiguation for 'signHeaders(url:method:headers:body:mode:omitSessionToken:date:)' at '/TecoSigner/TCSignerV3'
--> Guides/SignRequestsV3.md:86:302-86:308
84 | ```
85 |
86 + Note that the ``TCSignerV3/signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-1rcp6`` variant accepts the request URL in string, and may throw if the input is not valid URL. There's also a non-throwing variant ``TCSignerV3/signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-39hja`` that takes a `URLComponent` struct instead, which is compatible with RFC 3986.
| ├─suggestion: Replace '-39hja' with '-5dlyk' for'func signHeaders(url: String, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) throws -> HTTPHeaders'
| ├─suggestion: Replace '-39hja' with '-n7yi' for'func signHeaders(url: URL, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
| ╰─suggestion: Replace '-39hja' with '-20cqm' for'func signHeaders(url: URLComponents, method: HTTPMethod, headers: HTTPHeaders, body: TCSignerV3.BodyData?, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
87 |
88 | ## Configure signing options
warning: '9xyxm' isn't a disambiguation for 'signURL(url:algorithm:omitSessionToken:nonce:date:)' at '/TecoSigner/TCSignerV1'
--> TCSignerV1.md:13:56-13:62
11 | ### Signing GET Requests
12 |
13 + - ``signURL(url:algorithm:omitSessionToken:nonce:date:)-9xyxm``
| ├─suggestion: Replace '-9xyxm' with '-8kmx' for'func signURL(url: String, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> URL'
| ╰─suggestion: Replace '-9xyxm' with '-3jmpm' for'func signURL(url: URL, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> URL'
14 | - ``signURL(url:algorithm:omitSessionToken:nonce:date:)-6gu5z``
15 |
warning: '6gu5z' isn't a disambiguation for 'signURL(url:algorithm:omitSessionToken:nonce:date:)' at '/TecoSigner/TCSignerV1'
--> TCSignerV1.md:14:56-14:62
12 |
13 | - ``signURL(url:algorithm:omitSessionToken:nonce:date:)-9xyxm``
14 + - ``signURL(url:algorithm:omitSessionToken:nonce:date:)-6gu5z``
| ├─suggestion: Replace '-6gu5z' with '-8kmx' for'func signURL(url: String, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> URL'
| ╰─suggestion: Replace '-6gu5z' with '-3jmpm' for'func signURL(url: URL, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> URL'
15 |
16 | ### Signing POST Requests
warning: 'knwl' isn't a disambiguation for 'signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)' at '/TecoSigner/TCSignerV1'
--> TCSignerV1.md:18:68-18:73
16 | ### Signing POST Requests
17 |
18 + - ``signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-knwl``
| ├─suggestion: Replace '-knwl' with '-4quo6' for'func signBody(url: String, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
| ╰─suggestion: Replace '-knwl' with '-9xb69' for'func signBody(url: URL, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
19 | - ``signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-9hb3o``
20 |
warning: '9hb3o' isn't a disambiguation for 'signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)' at '/TecoSigner/TCSignerV1'
--> TCSignerV1.md:19:68-19:74
17 |
18 | - ``signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-knwl``
19 + - ``signBody(url:queryItems:algorithm:omitSessionToken:nonce:date:)-9hb3o``
| ├─suggestion: Replace '-9hb3o' with '-4quo6' for'func signBody(url: String, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
| ╰─suggestion: Replace '-9hb3o' with '-9xb69' for'func signBody(url: URL, queryItems: [URLQueryItem]?, algorithm: TCSignerV1.Algorithm = .hmacSHA1, omitSessionToken: Bool = false, nonce: UInt? = nil, date: Date = Date()) throws -> Data'
20 |
21 | ### Signing Query Items
warning: '1rcp6' isn't a disambiguation for 'signHeaders(url:method:headers:body:mode:omitSessionToken:date:)' at '/TecoSigner/TCSignerV3'
--> TCSignerV3.md:14:69-14:75
12 | ### Signing Requests
13 |
14 + - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-1rcp6``
| ├─suggestion: Replace '-1rcp6' with '-5dlyk' for'func signHeaders(url: String, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) throws -> HTTPHeaders'
| ├─suggestion: Replace '-1rcp6' with '-n7yi' for'func signHeaders(url: URL, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
| ╰─suggestion: Replace '-1rcp6' with '-20cqm' for'func signHeaders(url: URLComponents, method: HTTPMethod, headers: HTTPHeaders, body: TCSignerV3.BodyData?, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
15 | - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-b8bp``
16 | - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-39hja``
warning: 'b8bp' isn't a disambiguation for 'signHeaders(url:method:headers:body:mode:omitSessionToken:date:)' at '/TecoSigner/TCSignerV3'
--> TCSignerV3.md:15:69-15:74
13 |
14 | - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-1rcp6``
15 + - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-b8bp``
| ├─suggestion: Replace '-b8bp' with '-5dlyk' for'func signHeaders(url: String, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) throws -> HTTPHeaders'
| ├─suggestion: Replace '-b8bp' with '-n7yi' for'func signHeaders(url: URL, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
| ╰─suggestion: Replace '-b8bp' with '-20cqm' for'func signHeaders(url: URLComponents, method: HTTPMethod, headers: HTTPHeaders, body: TCSignerV3.BodyData?, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
16 | - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-39hja``
17 |
warning: '39hja' isn't a disambiguation for 'signHeaders(url:method:headers:body:mode:omitSessionToken:date:)' at '/TecoSigner/TCSignerV3'
--> TCSignerV3.md:16:69-16:75
14 | - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-1rcp6``
15 | - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-b8bp``
16 + - ``signHeaders(url:method:headers:body:mode:omitSessionToken:date:)-39hja``
| ├─suggestion: Replace '-39hja' with '-5dlyk' for'func signHeaders(url: String, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) throws -> HTTPHeaders'
| ├─suggestion: Replace '-39hja' with '-n7yi' for'func signHeaders(url: URL, method: HTTPMethod = .POST, headers: HTTPHeaders = HTTPHeaders(), body: TCSignerV3.BodyData? = nil, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
| ╰─suggestion: Replace '-39hja' with '-20cqm' for'func signHeaders(url: URLComponents, method: HTTPMethod, headers: HTTPHeaders, body: TCSignerV3.BodyData?, mode: TCSignerV3.SigningMode = .default, omitSessionToken: Bool = false, date: Date = Date()) -> HTTPHeaders'
17 |
18 | - ``BodyData``Finished building documentation for 'TecoSigner' (0.79s)
Generated documentation archive at:
/host/spi-builder-workspace/.docs/teco-project/teco-core/main
Building for debugging...
[0/2] Write swift-version-24593BA9C3E375BF.txt
Build of product 'snippet-extract' complete! (3.51s)
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
Build of target: 'TecoSigner' complete! (3.57s)
Successfully merged into /host/spi-builder-workspace/.docs-staging/teco-project/teco-core/main/index/index.json
Successfully merged into /host/spi-builder-workspace/.docs-staging/teco-project/teco-core/main/linkable-paths.json
1106
10 /host/spi-builder-workspace/.docs/teco-project/teco-core/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/teco-project/teco-core/main
File count: 1106
Doc size: 10.0MB
Preparing doc bundle ...
Uploading prod-teco-project-teco-core-main-144be185.zip to s3://spi-docs-inbox/prod-teco-project-teco-core-main-144be185.zip
Copying... [12%]
Copying... [24%]
Copying... [31%]
Copying... [43%]
Copying... [51%]
Copying... [63%]
Copying... [71%]
Copying... [83%]
Copying... [91%]
Copying... [100%]
Done.