The Swift Package Index logo.Swift Package Index

Build Information

Failed to build cujira, reference 0.4.1 (e7fec7), with Swift 6.2 for Linux on 17 Jun 2025 19:16:01 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" 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.64.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.2
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" 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:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
[4/63] Compiling Core Config.swift
[5/63] Compiling Core FieldAlias.swift
[6/63] Compiling Core IssueAggregation.swift
[7/63] Compiling Core IssueResult.swift
[8/63] Compiling Core JQLAlias.swift
[9/63] Compiling Core ProjectAlias.swift
[10/63] Compiling Core SearchResult.swift
[11/70] Compiling Core DataManager.swift
[12/70] Compiling Core EpicDataManager.swift
[13/70] Compiling Core FieldDataManager.swift
[14/70] Compiling Core IssueTypeDataManager.swift
[15/70] Compiling Core JQLAliasManager.swift
[16/70] Compiling Core ProjectAliasManager.swift
[17/70] Compiling Core SprintDataManager.swift
[18/70] Compiling Core StatusDataManager.swift
[19/70] Compiling Core Request.swift
[20/70] Compiling Core RequestProxy.swift
[21/70] Compiling Core SearchRequest.swift
[22/70] Compiling Core AnyCodingKey.swift
[23/70] Compiling Core Board.swift
[24/70] Compiling Core Epic.swift
[25/70] Compiling Core Field.swift
[26/70] Compiling Core Issue.swift
[27/70] 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/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."
[28/70] 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/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."
[29/70] 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/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."
[30/70] 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/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."
[31/70] 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/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."
[32/70] 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/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."
[33/70] 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/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."
[34/70] 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/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."
error: emit-module command failed with exit code 1 (use -v to see invocation)
[35/70] 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/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 |
[36/70] Compiling Core CoreExtension.swift
[37/70] Compiling Core Enumerable.swift
[38/70] Compiling Core DateFormatter.core.swift
[39/70] Compiling Core Gap.swift
[40/70] Compiling Core JSONDecoder.DateDecodingStrategy.core.swift
[41/70] Compiling Core BoardDataManager.swift
[42/70] Compiling Core ConfigManager.swift
[43/70] Compiling Core CustomFieldAliasManager.swift
[44/70] 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)
[45/70] 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)
[46/70] 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)
[47/70] 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)
[48/70] 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)
[49/70] 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)
[50/70] 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)
[51/70] 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)
[52/70] 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 },
[53/70] 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 },
[54/70] 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 },
[55/70] 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 },
[56/70] 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 },
[57/70] 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 },
[58/70] 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 },
[59/70] 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 },
[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.2 linux