Build Information
Failed to build SwiftyGPT, reference master (611d5c
), with Swift 6.0 for Linux on 4 Nov 2024 21:28:02 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/antonio-war/SwiftyGPT.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/antonio-war/SwiftyGPT
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 611d5ca Create FUNDING.yml
Cloned https://github.com/antonio-war/SwiftyGPT.git
Revision (git rev-parse @):
611d5ca6caeac40e8ec187ee7e61f07e7b9f6ff2
SUCCESS checkout https://github.com/antonio-war/SwiftyGPT.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/antonio-war/SwiftyGPT.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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 2>&1
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
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/8] Emitting module SwiftyGPTNetworking
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:11:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 |
10 | public struct SwiftyGPTNetworkingClient: Equatable {
11 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 |
13 | public init(session: URLSession = URLSession.shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:13:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = URLSession.shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | self.session = session
15 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:13:50: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = URLSession.shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
14 | self.session = session
15 | }
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:17:22: error: cannot find type 'URLRequest' in scope
15 | var headers: [String: String] { get }
16 | var body: Data? { get }
17 | var cachePolicy: URLRequest.CachePolicy { get }
| `- error: cannot find type 'URLRequest' in scope
18 | var timeout: TimeInterval { get }
19 | var underlyingRequest: URLRequest { get throws }
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:19:28: error: cannot find type 'URLRequest' in scope
17 | var cachePolicy: URLRequest.CachePolicy { get }
18 | var timeout: TimeInterval { get }
19 | var underlyingRequest: URLRequest { get throws }
| `- error: cannot find type 'URLRequest' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:10:15: error: type 'SwiftyGPTNetworkingClient' does not conform to protocol 'Equatable'
8 | import Foundation
9 |
10 | public struct SwiftyGPTNetworkingClient: Equatable {
| `- error: type 'SwiftyGPTNetworkingClient' does not conform to protocol 'Equatable'
11 | private let session: URLSession
| `- note: stored property type 'URLSession' (aka 'AnyObject') does not conform to protocol 'Equatable', preventing synthesized conformance of 'SwiftyGPTNetworkingClient' to 'Equatable'
12 |
13 | public init(session: URLSession = URLSession.shared) {
Swift.==:1:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'RawRepresentable'
Swift.FloatingPoint:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'FloatingPoint'
1 | extension FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'FloatingPoint'
3 | public static func < (lhs: Self, rhs: Self) -> Bool
4 | public static func <= (lhs: Self, rhs: Self) -> Bool
Swift.BinaryInteger:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'BinaryInteger'
1 | extension BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'BinaryInteger'
3 | public static func != <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
4 | public static func < <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
Swift._Pointer:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_Pointer'
1 | extension _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_Pointer'
3 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_Pointer'
4 | @inlinable public static func != <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer
5 | }
Swift.Strideable:3:35: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'Strideable'
1 | extension Strideable {
2 | @inlinable public static func < (x: Self, y: Self) -> Bool
3 | @inlinable public static func == (x: Self, y: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'Strideable'
4 | }
Swift.StringProtocol:2:35: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'StringProtocol'
1 | extension StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'StringProtocol'
3 | @inlinable public static func != <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
4 | @inlinable public static func < <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
Swift.SIMD:4:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'SIMD'
2 | public var indices: Range<Int> { get }
3 | public init(repeating value: Self.Scalar)
4 | public static func == (a: Self, b: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'SIMD'
5 | @inlinable public func hash(into hasher: inout Hasher)
6 | public func encode(to encoder: any Encoder) throws
Foundation.__BridgedNSError:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '__BridgedNSError'
1 | extension __BridgedNSError where Self : RawRepresentable, Self.RawValue : FixedWidthInteger {
2 | public static func == (lhs: Self, rhs: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '__BridgedNSError'
3 | }
Foundation._BridgedStoredNSError:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_BridgedStoredNSError'
1 | extension _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_BridgedStoredNSError'
3 | }
FoundationEssentials.AttributedStringProtocol:3:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'AttributedStringProtocol'
1 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
2 | extension AttributedStringProtocol {
3 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'AttributedStringProtocol'
4 | public func hash(into hasher: inout Hasher)
5 | }
Swift.Equatable:2:17: note: protocol requires function '==' with type '(SwiftyGPTNetworkingClient, SwiftyGPTNetworkingClient) -> Bool'
1 | public protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool
| `- note: protocol requires function '==' with type '(SwiftyGPTNetworkingClient, SwiftyGPTNetworkingClient) -> Bool'
3 | }
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:19:41: error: getter of noncopyable type cannot be 'async' or 'throws'
17 | var cachePolicy: URLRequest.CachePolicy { get }
18 | var timeout: TimeInterval { get }
19 | var underlyingRequest: URLRequest { get throws }
| `- error: getter of noncopyable type cannot be 'async' or 'throws'
20 | }
21 |
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:32:28: error: cannot find type 'URLRequest' in scope
30 | }
31 |
32 | var underlyingRequest: URLRequest {
| `- error: cannot find type 'URLRequest' in scope
33 | get throws {
34 | var request = try URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeout)
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:33:9: error: getter of noncopyable type cannot be 'async' or 'throws'
31 |
32 | var underlyingRequest: URLRequest {
33 | get throws {
| `- error: getter of noncopyable type cannot be 'async' or 'throws'
34 | var request = try URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeout)
35 | request.httpMethod = method.rawValue
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingResponse.swift:11:36: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 |
10 | public struct SwiftyGPTNetworkingResponse {
11 | public var underlyingResponse: HTTPURLResponse
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 | public var body: Data
13 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
[5/8] Compiling SwiftyGPTNetworking SwiftyGPTNetworkingClient.swift
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:11:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 |
10 | public struct SwiftyGPTNetworkingClient: Equatable {
11 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 |
13 | public init(session: URLSession = URLSession.shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:13:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = URLSession.shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | self.session = session
15 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:13:50: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = URLSession.shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
14 | self.session = session
15 | }
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:17:22: error: cannot find type 'URLRequest' in scope
15 | var headers: [String: String] { get }
16 | var body: Data? { get }
17 | var cachePolicy: URLRequest.CachePolicy { get }
| `- error: cannot find type 'URLRequest' in scope
18 | var timeout: TimeInterval { get }
19 | var underlyingRequest: URLRequest { get throws }
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:19:28: error: cannot find type 'URLRequest' in scope
17 | var cachePolicy: URLRequest.CachePolicy { get }
18 | var timeout: TimeInterval { get }
19 | var underlyingRequest: URLRequest { get throws }
| `- error: cannot find type 'URLRequest' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:10:15: error: type 'SwiftyGPTNetworkingClient' does not conform to protocol 'Equatable'
8 | import Foundation
9 |
10 | public struct SwiftyGPTNetworkingClient: Equatable {
| `- error: type 'SwiftyGPTNetworkingClient' does not conform to protocol 'Equatable'
11 | private let session: URLSession
| `- note: stored property type 'URLSession' (aka 'AnyObject') does not conform to protocol 'Equatable', preventing synthesized conformance of 'SwiftyGPTNetworkingClient' to 'Equatable'
12 |
13 | public init(session: URLSession = URLSession.shared) {
Swift.==:1:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'RawRepresentable'
Swift.FloatingPoint:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'FloatingPoint'
1 | extension FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'FloatingPoint'
3 | public static func < (lhs: Self, rhs: Self) -> Bool
4 | public static func <= (lhs: Self, rhs: Self) -> Bool
Swift.BinaryInteger:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'BinaryInteger'
1 | extension BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'BinaryInteger'
3 | public static func != <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
4 | public static func < <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
Swift._Pointer:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_Pointer'
1 | extension _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_Pointer'
3 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_Pointer'
4 | @inlinable public static func != <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer
5 | }
Swift.Strideable:3:35: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'Strideable'
1 | extension Strideable {
2 | @inlinable public static func < (x: Self, y: Self) -> Bool
3 | @inlinable public static func == (x: Self, y: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'Strideable'
4 | }
Swift.StringProtocol:2:35: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'StringProtocol'
1 | extension StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'StringProtocol'
3 | @inlinable public static func != <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
4 | @inlinable public static func < <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
Swift.SIMD:4:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'SIMD'
2 | public var indices: Range<Int> { get }
3 | public init(repeating value: Self.Scalar)
4 | public static func == (a: Self, b: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'SIMD'
5 | @inlinable public func hash(into hasher: inout Hasher)
6 | public func encode(to encoder: any Encoder) throws
Foundation.__BridgedNSError:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '__BridgedNSError'
1 | extension __BridgedNSError where Self : RawRepresentable, Self.RawValue : FixedWidthInteger {
2 | public static func == (lhs: Self, rhs: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '__BridgedNSError'
3 | }
Foundation._BridgedStoredNSError:2:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_BridgedStoredNSError'
1 | extension _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to '_BridgedStoredNSError'
3 | }
FoundationEssentials.AttributedStringProtocol:3:24: note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'AttributedStringProtocol'
1 | @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
2 | extension AttributedStringProtocol {
3 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol
| `- note: candidate would match if 'SwiftyGPTNetworkingClient' conformed to 'AttributedStringProtocol'
4 | public func hash(into hasher: inout Hasher)
5 | }
Swift.Equatable:2:17: note: protocol requires function '==' with type '(SwiftyGPTNetworkingClient, SwiftyGPTNetworkingClient) -> Bool'
1 | public protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool
| `- note: protocol requires function '==' with type '(SwiftyGPTNetworkingClient, SwiftyGPTNetworkingClient) -> Bool'
3 | }
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:32:28: error: cannot find type 'URLRequest' in scope
30 | }
31 |
32 | var underlyingRequest: URLRequest {
| `- error: cannot find type 'URLRequest' in scope
33 | get throws {
34 | var request = try URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeout)
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Clients/SwiftyGPTNetworkingClient.swift:18:60: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
16 |
17 | public func send(request: SwiftyGPTNetworkingRequest) async throws -> SwiftyGPTNetworkingResponse {
18 | let (body, underlyingResponse) = try await session.data(for: request.underlyingRequest)
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
19 | guard let underlyingResponse = underlyingResponse as? HTTPURLResponse else {
20 | throw URLError(.cannotParseResponse)
[6/8] Compiling SwiftyGPTNetworking SwiftyGPTNetworkingMethod.swift
[7/8] Compiling SwiftyGPTNetworking SwiftyGPTNetworkingRequest.swift
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:17:22: error: cannot find type 'URLRequest' in scope
15 | var headers: [String: String] { get }
16 | var body: Data? { get }
17 | var cachePolicy: URLRequest.CachePolicy { get }
| `- error: cannot find type 'URLRequest' in scope
18 | var timeout: TimeInterval { get }
19 | var underlyingRequest: URLRequest { get throws }
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:19:28: error: cannot find type 'URLRequest' in scope
17 | var cachePolicy: URLRequest.CachePolicy { get }
18 | var timeout: TimeInterval { get }
19 | var underlyingRequest: URLRequest { get throws }
| `- error: cannot find type 'URLRequest' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:19:41: error: getter of noncopyable type cannot be 'async' or 'throws'
17 | var cachePolicy: URLRequest.CachePolicy { get }
18 | var timeout: TimeInterval { get }
19 | var underlyingRequest: URLRequest { get throws }
| `- error: getter of noncopyable type cannot be 'async' or 'throws'
20 | }
21 |
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:32:28: error: cannot find type 'URLRequest' in scope
30 | }
31 |
32 | var underlyingRequest: URLRequest {
| `- error: cannot find type 'URLRequest' in scope
33 | get throws {
34 | var request = try URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeout)
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:33:9: error: getter of noncopyable type cannot be 'async' or 'throws'
31 |
32 | var underlyingRequest: URLRequest {
33 | get throws {
| `- error: getter of noncopyable type cannot be 'async' or 'throws'
34 | var request = try URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeout)
35 | request.httpMethod = method.rawValue
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingRequest.swift:34:31: error: cannot find 'URLRequest' in scope
32 | var underlyingRequest: URLRequest {
33 | get throws {
34 | var request = try URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeout)
| `- error: cannot find 'URLRequest' in scope
35 | request.httpMethod = method.rawValue
36 | request.httpBody = body
[8/8] Compiling SwiftyGPTNetworking SwiftyGPTNetworkingResponse.swift
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingResponse.swift:11:36: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 |
10 | public struct SwiftyGPTNetworkingResponse {
11 | public var underlyingResponse: HTTPURLResponse
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 | public var body: Data
13 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftyGPTNetworking/Models/SwiftyGPTNetworkingResponse.swift:15:35: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
13 |
14 | public var statusCode: Int {
15 | return underlyingResponse.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
16 | }
17 | }
BUILD FAILURE 6.0 linux