The Swift Package Index logo.Swift Package Index

Build Information

Failed to build OrcidSwift, reference main (c5cb28), with Swift 6.2 for Linux on 1 Jan 2026 19:15:50 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ezefranca/OrcidSwift.git
Reference: main
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/ezefranca/OrcidSwift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at c5cb288 Enhance README with ORCID API link and logo
Cloned https://github.com/ezefranca/OrcidSwift.git
Revision (git rev-parse @):
c5cb288c878a9bdea0d14e456c0e7b43ee7761fd
SUCCESS checkout https://github.com/ezefranca/OrcidSwift.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/ezefranca/OrcidSwift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:e1f50347098d838026a020bb7d0f8bade3d7b84d6d497429b7cf821cdf4fc3d1
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/15] Compiling OrcidSwift OrcidError.swift
[4/16] Compiling OrcidSwift OrcidEndpoints.swift
[5/16] Compiling OrcidSwift OrcidOAuthScope.swift
[6/16] Compiling OrcidSwift OrcidOAuthToken.swift
[7/16] Compiling OrcidSwift OrcidSwift.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[8/16] Emitting module OrcidSwift
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:59: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                           `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 36 |         self.config = config
 37 |         self.loader = session
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/OrcidSwift/Client/OrcidClient.swift:35:73: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                                         `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 36 |         self.config = config
 37 |         self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: value of type '_' expected to be instance of class or class-constrained type
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                                         `- error: value of type '_' expected to be instance of class or class-constrained type
 36 |         self.config = config
 37 |         self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
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/OrcidSwift/Client/OrcidClient.swift:52:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: value of type '_' expected to be instance of class or class-constrained type
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:180:50: error: cannot find type 'URLRequest' in scope
178 |     // MARK: - Helpers
179 |
180 |     private func applyCommonHeaders(_ req: inout URLRequest) {
    |                                                  `- error: cannot find type 'URLRequest' in scope
181 |         req.setValue(config.userAgent, forHTTPHeaderField: "User-Agent")
182 |     }
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:28: error: cannot find type 'URLRequest' in scope
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
   |                            `- error: cannot find type 'URLRequest' in scope
13 | }
14 |
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
   |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | }
14 |
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:16:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 |
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
   | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
17 |     public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
18 |         // Use Apple’s native async API when available
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 |     static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
   |                                    `- error: cannot find type 'URLRequest' in scope
43 |         do {
44 |             let (data, response) = try await loader.data(for: request)
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[9/16] Compiling OrcidSwift OrcidClient.swift
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:59: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                           `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 36 |         self.config = config
 37 |         self.loader = session
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/OrcidSwift/Client/OrcidClient.swift:35:73: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                                         `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 36 |         self.config = config
 37 |         self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: value of type '_' expected to be instance of class or class-constrained type
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                                         `- error: value of type '_' expected to be instance of class or class-constrained type
 36 |         self.config = config
 37 |         self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
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/OrcidSwift/Client/OrcidClient.swift:52:32: error: value of type '_' expected to be instance of class or class-constrained type
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:180:50: error: cannot find type 'URLRequest' in scope
178 |     // MARK: - Helpers
179 |
180 |     private func applyCommonHeaders(_ req: inout URLRequest) {
    |                                                  `- error: cannot find type 'URLRequest' in scope
181 |         req.setValue(config.userAgent, forHTTPHeaderField: "User-Agent")
182 |     }
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:37:23: error: cannot assign value of type 'URLSession' (aka 'AnyObject') to type 'any HTTPDataLoading'
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
 36 |         self.config = config
 37 |         self.loader = session
    |                       `- error: cannot assign value of type 'URLSession' (aka 'AnyObject') to type 'any HTTPDataLoading'
 38 |         self.decoder = JSONDecoder()
 39 |         self.urlComponentsFactory = { URLComponents(url: $0, resolvingAgainstBaseURL: false) }
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:57:21: error: type of expression is ambiguous without a type annotation
 55 |     ) {
 56 |         self.config = config
 57 |         self.loader = loader ?? session
    |                     `- error: type of expression is ambiguous without a type annotation
 58 |         self.decoder = JSONDecoder()
 59 |         self.urlComponentsFactory = urlComponentsFactory
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:69:19: error: cannot find 'URLRequest' in scope
 67 |     public func fetchRecord(orcid: OrcidID) async throws -> OrcidRecord {
 68 |         let url = config.environment.apiBaseURL.appendingPathComponent(OrcidEndpoints.record(orcid: orcid))
 69 |         var req = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
 70 |         req.httpMethod = "GET"
 71 |         applyCommonHeaders(&req)
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 |     static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
   |                                    `- error: cannot find type 'URLRequest' in scope
43 |         do {
44 |             let (data, response) = try await loader.data(for: request)
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:89:19: error: cannot find 'URLRequest' in scope
 87 |     public func fetchWorks(orcid: OrcidID) async throws -> OrcidWorksResponse {
 88 |         let url = config.environment.apiBaseURL.appendingPathComponent(OrcidEndpoints.works(orcid: orcid))
 89 |         var req = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
 90 |         req.httpMethod = "GET"
 91 |         applyCommonHeaders(&req)
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:153:19: error: cannot find 'URLRequest' in scope
151 |     ) async throws -> OrcidOAuthToken {
152 |         let url = config.environment.oauthBaseURL.appendingPathComponent(OrcidEndpoints.oauthTokenPath)
153 |         var req = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
154 |         req.httpMethod = "POST"
155 |         applyCommonHeaders(&req)
[10/16] Compiling OrcidSwift OrcidEnvironment.swift
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:59: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                           `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 36 |         self.config = config
 37 |         self.loader = session
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/OrcidSwift/Client/OrcidClient.swift:35:73: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                                         `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 36 |         self.config = config
 37 |         self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: value of type '_' expected to be instance of class or class-constrained type
 33 |     ///   - config: Client configuration.
 34 |     ///   - session: URLSession used for requests. Provide a custom session for testing.
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
    |                                                                         `- error: value of type '_' expected to be instance of class or class-constrained type
 36 |         self.config = config
 37 |         self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
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/OrcidSwift/Client/OrcidClient.swift:52:32: error: value of type '_' expected to be instance of class or class-constrained type
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 50 |     public init(
 51 |         config: Configuration = .init(),
 52 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 53 |         loader: (any HTTPDataLoading)? = nil,
 54 |         urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:180:50: error: cannot find type 'URLRequest' in scope
178 |     // MARK: - Helpers
179 |
180 |     private func applyCommonHeaders(_ req: inout URLRequest) {
    |                                                  `- error: cannot find type 'URLRequest' in scope
181 |         req.setValue(config.userAgent, forHTTPHeaderField: "User-Agent")
182 |     }
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:37:23: error: cannot assign value of type 'URLSession' (aka 'AnyObject') to type 'any HTTPDataLoading'
 35 |     public init(config: Configuration = .init(), session: URLSession = .shared) {
 36 |         self.config = config
 37 |         self.loader = session
    |                       `- error: cannot assign value of type 'URLSession' (aka 'AnyObject') to type 'any HTTPDataLoading'
 38 |         self.decoder = JSONDecoder()
 39 |         self.urlComponentsFactory = { URLComponents(url: $0, resolvingAgainstBaseURL: false) }
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:57:21: error: type of expression is ambiguous without a type annotation
 55 |     ) {
 56 |         self.config = config
 57 |         self.loader = loader ?? session
    |                     `- error: type of expression is ambiguous without a type annotation
 58 |         self.decoder = JSONDecoder()
 59 |         self.urlComponentsFactory = urlComponentsFactory
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:69:19: error: cannot find 'URLRequest' in scope
 67 |     public func fetchRecord(orcid: OrcidID) async throws -> OrcidRecord {
 68 |         let url = config.environment.apiBaseURL.appendingPathComponent(OrcidEndpoints.record(orcid: orcid))
 69 |         var req = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
 70 |         req.httpMethod = "GET"
 71 |         applyCommonHeaders(&req)
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 |     static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
   |                                    `- error: cannot find type 'URLRequest' in scope
43 |         do {
44 |             let (data, response) = try await loader.data(for: request)
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:89:19: error: cannot find 'URLRequest' in scope
 87 |     public func fetchWorks(orcid: OrcidID) async throws -> OrcidWorksResponse {
 88 |         let url = config.environment.apiBaseURL.appendingPathComponent(OrcidEndpoints.works(orcid: orcid))
 89 |         var req = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
 90 |         req.httpMethod = "GET"
 91 |         applyCommonHeaders(&req)
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:153:19: error: cannot find 'URLRequest' in scope
151 |     ) async throws -> OrcidOAuthToken {
152 |         let url = config.environment.oauthBaseURL.appendingPathComponent(OrcidEndpoints.oauthTokenPath)
153 |         var req = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
154 |         req.httpMethod = "POST"
155 |         applyCommonHeaders(&req)
[11/16] Compiling OrcidSwift OrcidStringValue.swift
[12/16] Compiling OrcidSwift OrcidWorksResponse.swift
[13/16] Compiling OrcidSwift OrcidID.swift
[14/16] Compiling OrcidSwift OrcidRecord.swift
[15/16] Compiling OrcidSwift FormURLEncoder.swift
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:28: error: cannot find type 'URLRequest' in scope
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
   |                            `- error: cannot find type 'URLRequest' in scope
13 | }
14 |
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
   |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | }
14 |
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:16:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 |
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
   | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
17 |     public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
18 |         // Use Apple’s native async API when available
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 |     static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
   |                                    `- error: cannot find type 'URLRequest' in scope
43 |         do {
44 |             let (data, response) = try await loader.data(for: request)
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:17:35: error: cannot find type 'URLRequest' in scope
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
17 |     public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
   |                                   `- error: cannot find type 'URLRequest' in scope
18 |         // Use Apple’s native async API when available
19 |         if #available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *) {
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[16/16] Compiling OrcidSwift HTTPResponse.swift
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:28: error: cannot find type 'URLRequest' in scope
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
   |                            `- error: cannot find type 'URLRequest' in scope
13 | }
14 |
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
   |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | }
14 |
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:16:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 |
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
   | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
17 |     public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
18 |         // Use Apple’s native async API when available
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 |     static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
   |                                    `- error: cannot find type 'URLRequest' in scope
43 |         do {
44 |             let (data, response) = try await loader.data(for: request)
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:17:35: error: cannot find type 'URLRequest' in scope
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
17 |     public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
   |                                   `- error: cannot find type 'URLRequest' in scope
18 |         // Use Apple’s native async API when available
19 |         if #available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *) {
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
BUILD FAILURE 6.2 linux