The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Corkboard, reference master (06cebc), with Swift 6.3 for Android on 10 Apr 2026 10:43:25 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kiliankoe/Corkboard.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/kiliankoe/Corkboard
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 06cebc2 add other platforms to manifest
Cloned https://github.com/kiliankoe/Corkboard.git
Revision (git rev-parse @):
06cebc246f001121d1f69e816423cb703018610c
SUCCESS checkout https://github.com/kiliankoe/Corkboard.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.3
Building package at path:  $PWD
https://github.com/kiliankoe/Corkboard.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--4F562202D5529B1.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/7] Emitting module Corkboard
/host/spi-builder-workspace/Sources/Corkboard/API.swift:25:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Corkboard/API.swift:25:52: error: value of type '_' expected to be instance of class or class-constrained type
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                                    `- error: value of type '_' expected to be instance of class or class-constrained type
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
/host/spi-builder-workspace/Sources/Corkboard/API.swift:25:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
/host/spi-builder-workspace/Sources/Corkboard/API.swift:61:35: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                   `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
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/Corkboard/API.swift:61:49: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
/host/spi-builder-workspace/Sources/Corkboard/API.swift:61:49: error: value of type '_' expected to be instance of class or class-constrained type
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                                 `- error: value of type '_' expected to be instance of class or class-constrained type
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
/host/spi-builder-workspace/Sources/Corkboard/API.swift:107:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
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/Corkboard/API.swift:107:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
/host/spi-builder-workspace/Sources/Corkboard/API.swift:107:52: error: value of type '_' expected to be instance of class or class-constrained type
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                                    `- error: value of type '_' expected to be instance of class or class-constrained type
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
/host/spi-builder-workspace/Sources/Corkboard/API.swift:137:35: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                   `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
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/Corkboard/API.swift:137:49: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
/host/spi-builder-workspace/Sources/Corkboard/API.swift:137:49: error: value of type '_' expected to be instance of class or class-constrained type
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                                 `- error: value of type '_' expected to be instance of class or class-constrained type
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
/host/spi-builder-workspace/Sources/Corkboard/API.swift:176:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
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/Corkboard/API.swift:176:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
/host/spi-builder-workspace/Sources/Corkboard/API.swift:176:52: error: value of type '_' expected to be instance of class or class-constrained type
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                                    `- error: value of type '_' expected to be instance of class or class-constrained type
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:10:18: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
  8 | public enum CorkboardError: Error {
  9 |     case urlEncoding(URLComponents)
 10 |     case network(URLResponse?)
    |                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 11 |     case json(Error)
 12 |     case pinboardStatus(Int)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:44:49: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |                                        _ auth: Authentication,
 43 |                                        from endpoint: Endpoint,
 44 |                                        session: URLSession,
    |                                                 `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
 46 |         var components = URLComponents()
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:102:49: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
100 |
101 |     private func request<T: Decodable>(_ url: URL,
102 |                                        session: URLSession,
    |                                                 `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
103 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
104 |
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/Corkboard/PinboardClient.swift:169:47: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
167 |     private func retry<T: Decodable>(taskTo url: URL,
168 |                                      in seconds: TimeInterval,
169 |                                      session: URLSession,
    |                                               `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |                                      completion: @escaping (Result<T, CorkboardError>) -> Void) {
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
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
[4/7] Compiling Corkboard Responses.swift
[5/7] Compiling Corkboard Bookmark.swift
[6/7] Compiling Corkboard API.swift
/host/spi-builder-workspace/Sources/Corkboard/API.swift:25:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Corkboard/API.swift:25:52: error: value of type '_' expected to be instance of class or class-constrained type
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                                    `- error: value of type '_' expected to be instance of class or class-constrained type
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
/host/spi-builder-workspace/Sources/Corkboard/API.swift:25:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
/host/spi-builder-workspace/Sources/Corkboard/API.swift:61:35: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                   `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
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/Corkboard/API.swift:61:49: error: value of type '_' expected to be instance of class or class-constrained type
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                                 `- error: value of type '_' expected to be instance of class or class-constrained type
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
/host/spi-builder-workspace/Sources/Corkboard/API.swift:61:49: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
/host/spi-builder-workspace/Sources/Corkboard/API.swift:107:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
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/Corkboard/API.swift:107:52: error: value of type '_' expected to be instance of class or class-constrained type
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                                    `- error: value of type '_' expected to be instance of class or class-constrained type
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
/host/spi-builder-workspace/Sources/Corkboard/API.swift:107:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
/host/spi-builder-workspace/Sources/Corkboard/API.swift:137:35: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                   `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
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/Corkboard/API.swift:137:49: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
/host/spi-builder-workspace/Sources/Corkboard/API.swift:137:49: error: value of type '_' expected to be instance of class or class-constrained type
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                                 `- error: value of type '_' expected to be instance of class or class-constrained type
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
/host/spi-builder-workspace/Sources/Corkboard/API.swift:176:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
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/Corkboard/API.swift:176:52: error: value of type '_' expected to be instance of class or class-constrained type
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                                    `- error: value of type '_' expected to be instance of class or class-constrained type
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
/host/spi-builder-workspace/Sources/Corkboard/API.swift:176:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
[7/7] Compiling Corkboard PinboardClient.swift
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:10:18: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
  8 | public enum CorkboardError: Error {
  9 |     case urlEncoding(URLComponents)
 10 |     case network(URLResponse?)
    |                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 11 |     case json(Error)
 12 |     case pinboardStatus(Int)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:44:49: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |                                        _ auth: Authentication,
 43 |                                        from endpoint: Endpoint,
 44 |                                        session: URLSession,
    |                                                 `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
 46 |         var components = URLComponents()
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:102:49: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
100 |
101 |     private func request<T: Decodable>(_ url: URL,
102 |                                        session: URLSession,
    |                                                 `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
103 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
104 |
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/Corkboard/PinboardClient.swift:169:47: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
167 |     private func retry<T: Decodable>(taskTo url: URL,
168 |                                      in seconds: TimeInterval,
169 |                                      session: URLSession,
    |                                               `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |                                      completion: @escaping (Result<T, CorkboardError>) -> Void) {
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
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/Corkboard/PinboardClient.swift:105:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
103 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
104 |
105 |         let task = session.dataTask(with: url) { data, resp, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
106 |             guard
107 |                 error == nil,
BUILD FAILURE 6.3 android