Build Information
Failed to build cujira, reference 0.4.1 (e7fec7), with Swift 6.3 for Linux on 10 Apr 2026 16:13:08 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cats-oss/cujira.git
Reference: 0.4.1
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/cats-oss/cujira
* tag 0.4.1 -> FETCH_HEAD
HEAD is now at e7fec7d fix multi issuetype bug
Cloned https://github.com/cats-oss/cujira.git
Revision (git rev-parse @):
e7fec7dbd79b7a3187e86f4b982eb3d9e6b6d1df
SUCCESS checkout https://github.com/cats-oss/cujira.git at 0.4.1
========================================
Build
========================================
Selected platform: linux
Swift version: 6.3
Building package at path: $PWD
https://github.com/cats-oss/cujira.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/63] Emitting module Core
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
[5/63] Compiling Core BodyParameter.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
73 |
74 | var result: Result<T.Response>?
75 | let task = session.dataTask(with: request) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
76 | if let error = error {
77 | result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 | return "Empty Result."
117 | case .invalidResopnse(let resposne):
118 | return "Invalid response (status code: \(resposne.statusCode)"
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 | case .unknown:
120 | return "Unknown error occured."
[6/63] Compiling Core JiraSession.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
73 |
74 | var result: Result<T.Response>?
75 | let task = session.dataTask(with: request) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
76 | if let error = error {
77 | result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 | return "Empty Result."
117 | case .invalidResopnse(let resposne):
118 | return "Invalid response (status code: \(resposne.statusCode)"
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 | case .unknown:
120 | return "Unknown error occured."
[7/63] Compiling Core GetAllBoardsRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
73 |
74 | var result: Result<T.Response>?
75 | let task = session.dataTask(with: request) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
76 | if let error = error {
77 | result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 | return "Empty Result."
117 | case .invalidResopnse(let resposne):
118 | return "Invalid response (status code: \(resposne.statusCode)"
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 | case .unknown:
120 | return "Unknown error occured."
[8/63] Compiling Core GetAllFieldsRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
73 |
74 | var result: Result<T.Response>?
75 | let task = session.dataTask(with: request) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
76 | if let error = error {
77 | result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 | return "Empty Result."
117 | case .invalidResopnse(let resposne):
118 | return "Invalid response (status code: \(resposne.statusCode)"
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 | case .unknown:
120 | return "Unknown error occured."
[9/63] Compiling Core GetAllIssueTypesRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
73 |
74 | var result: Result<T.Response>?
75 | let task = session.dataTask(with: request) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
76 | if let error = error {
77 | result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 | return "Empty Result."
117 | case .invalidResopnse(let resposne):
118 | return "Invalid response (status code: \(resposne.statusCode)"
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 | case .unknown:
120 | return "Unknown error occured."
[10/63] Compiling Core GetAllSprintsRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
73 |
74 | var result: Result<T.Response>?
75 | let task = session.dataTask(with: request) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
76 | if let error = error {
77 | result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 | return "Empty Result."
117 | case .invalidResopnse(let resposne):
118 | return "Invalid response (status code: \(resposne.statusCode)"
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 | case .unknown:
120 | return "Unknown error occured."
[11/63] Compiling Core GetAllStatusesRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
73 |
74 | var result: Result<T.Response>?
75 | let task = session.dataTask(with: request) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
76 | if let error = error {
77 | result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 | return "Empty Result."
117 | case .invalidResopnse(let resposne):
118 | return "Invalid response (status code: \(resposne.statusCode)"
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 | case .unknown:
120 | return "Unknown error occured."
[12/63] Compiling Core GetEpicRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | public enum Error: Swift.Error {
18 | case emptyResult
19 | case invalidResopnse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | case unknown
21 | }
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/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |
31 |
32 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |
34 | /// JiraSession Initializer
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/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
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/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: value of type '_' expected to be instance of class or class-constrained type
38 | /// apiKey: it is called every request.
39 | /// username: it is called every request.
40 | public init(session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
41 | domain: @escaping () throws -> String,
42 | apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
73 |
74 | var result: Result<T.Response>?
75 | let task = session.dataTask(with: request) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
76 | if let error = error {
77 | result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 | return "Empty Result."
117 | case .invalidResopnse(let resposne):
118 | return "Invalid response (status code: \(resposne.statusCode)"
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 | case .unknown:
120 | return "Unknown error occured."
[13/63] Compiling Core CoreExtension.swift
[14/63] Compiling Core Enumerable.swift
[15/63] Compiling Core DateFormatter.core.swift
[16/63] Compiling Core Gap.swift
[17/63] Compiling Core JSONDecoder.DateDecodingStrategy.core.swift
[18/63] Compiling Core BoardDataManager.swift
[19/63] Compiling Core ConfigManager.swift
[20/63] Compiling Core CustomFieldAliasManager.swift
[21/63] Compiling Core Facade.Board.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 | let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 | let session = URLSession.shared
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 | let jiraSession = JiraSession(session: session,
43 | domain: { try configService.loadConfig().domain },
[22/63] Compiling Core Facade.Config.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 | let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 | let session = URLSession.shared
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 | let jiraSession = JiraSession(session: session,
43 | domain: { try configService.loadConfig().domain },
[23/63] Compiling Core Facade.Field.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 | let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 | let session = URLSession.shared
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 | let jiraSession = JiraSession(session: session,
43 | domain: { try configService.loadConfig().domain },
[24/63] Compiling Core Facade.Issue.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 | let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 | let session = URLSession.shared
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 | let jiraSession = JiraSession(session: session,
43 | domain: { try configService.loadConfig().domain },
[25/63] Compiling Core Facade.JQL.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 | let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 | let session = URLSession.shared
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 | let jiraSession = JiraSession(session: session,
43 | domain: { try configService.loadConfig().domain },
[26/63] Compiling Core Facade.Project.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 | let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 | let session = URLSession.shared
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 | let jiraSession = JiraSession(session: session,
43 | domain: { try configService.loadConfig().domain },
[27/63] Compiling Core Facade.Sprint.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 | let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 | let session = URLSession.shared
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 | let jiraSession = JiraSession(session: session,
43 | domain: { try configService.loadConfig().domain },
[28/63] Compiling Core Facade.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 | let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 | let session = URLSession.shared
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 | let jiraSession = JiraSession(session: session,
43 | domain: { try configService.loadConfig().domain },
[29/63] Compiling Core IssueType.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 | }
33 |
34 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
35 | proxy.headerField.forEach { key, value in
36 | request.addValue(value, forHTTPHeaderField: key)
[30/63] Compiling Core ListResponse.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 | }
33 |
34 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
35 | proxy.headerField.forEach { key, value in
36 | request.addValue(value, forHTTPHeaderField: key)
[31/63] Compiling Core Project.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 | }
33 |
34 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
35 | proxy.headerField.forEach { key, value in
36 | request.addValue(value, forHTTPHeaderField: key)
[32/63] Compiling Core Sprint.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 | }
33 |
34 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
35 | proxy.headerField.forEach { key, value in
36 | request.addValue(value, forHTTPHeaderField: key)
[33/63] Compiling Core Status.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 | }
33 |
34 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
35 | proxy.headerField.forEach { key, value in
36 | request.addValue(value, forHTTPHeaderField: key)
[34/63] Compiling Core User.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 | }
33 |
34 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
35 | proxy.headerField.forEach { key, value in
36 | request.addValue(value, forHTTPHeaderField: key)
[35/63] Compiling Core Version.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 | }
33 |
34 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
35 | proxy.headerField.forEach { key, value in
36 | request.addValue(value, forHTTPHeaderField: key)
[36/63] Compiling Core URLRequestBuilder.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 | }
15 |
16 | public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
17 | let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 | }
33 |
34 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
35 | proxy.headerField.forEach { key, value in
36 | request.addValue(value, forHTTPHeaderField: key)
[37/63] Compiling Core Config.swift
[38/63] Compiling Core FieldAlias.swift
[39/63] Compiling Core IssueAggregation.swift
[40/63] Compiling Core IssueResult.swift
[41/63] Compiling Core JQLAlias.swift
[42/63] Compiling Core ProjectAlias.swift
[43/63] Compiling Core SearchResult.swift
[44/63] Compiling Core DataManager.swift
[45/63] Compiling Core EpicDataManager.swift
[46/63] Compiling Core FieldDataManager.swift
[47/63] Compiling Core IssueTypeDataManager.swift
[48/63] Compiling Core JQLAliasManager.swift
[49/63] Compiling Core ProjectAliasManager.swift
[50/63] Compiling Core SprintDataManager.swift
[51/63] Compiling Core StatusDataManager.swift
[52/63] Compiling Core Request.swift
[53/63] Compiling Core RequestProxy.swift
[54/63] Compiling Core SearchRequest.swift
[55/63] Compiling Core AnyCodingKey.swift
[56/63] Compiling Core Board.swift
[57/63] Compiling Core Epic.swift
[58/63] Compiling Core Field.swift
[59/63] Compiling Core Issue.swift
[60/70] Compiling Core BoardService.swift
[61/70] Compiling Core ConfigService.swift
[62/70] Compiling Core FieldService.swift
[63/70] Compiling Core IssueService.swift
[64/70] Compiling Core JQLService.swift
[65/70] Compiling Core ProjectService.swift
[66/70] Compiling Core SprintService.swift
BUILD FAILURE 6.3 linux