The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Corkboard, reference master (06cebc), with Swift 6.1 for Android on 27 May 2025 07:45:07 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
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.1
Building package at path:  $PWD
https://github.com/kiliankoe/Corkboard.git
https://github.com/kiliankoe/Corkboard.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Corkboard",
  "name" : "Corkboard",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "Corkboard",
      "targets" : [
        "Corkboard"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CorkboardTests",
      "module_type" : "SwiftTarget",
      "name" : "CorkboardTests",
      "path" : "Tests/CorkboardTests",
      "sources" : [
        "CorkboardTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Corkboard"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Corkboard",
      "module_type" : "SwiftTarget",
      "name" : "Corkboard",
      "path" : "Sources/Corkboard",
      "product_memberships" : [
        "Corkboard"
      ],
      "sources" : [
        "API.swift",
        "Bookmark.swift",
        "PinboardClient.swift",
        "Responses.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.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: 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: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: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: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/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:10:10: warning: associated value 'network' of 'Sendable'-conforming enum 'CorkboardError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
  8 | public enum CorkboardError: Error {
  9 |     case urlEncoding(URLComponents)
 10 |     case network(URLResponse?)
    |          `- warning: associated value 'network' of 'Sendable'-conforming enum 'CorkboardError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 11 |     case json(Error)
 12 |     case pinboardStatus(Int)
/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 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:10:10: warning: associated value 'network' of 'Sendable'-conforming enum 'CorkboardError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
  8 | public enum CorkboardError: Error {
  9 |     case urlEncoding(URLComponents)
 10 |     case network(URLResponse?)
    |          `- warning: associated value 'network' of 'Sendable'-conforming enum 'CorkboardError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 11 |     case json(Error)
 12 |     case pinboardStatus(Int)
/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,
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:111:46: error: argument type '_' expected to be an instance of a class or class-constrained type
109 |                 let response = resp as? HTTPURLResponse
110 |             else {
111 |                 completion(.failure(.network(resp)))
    |                                              `- error: argument type '_' expected to be an instance of a class or class-constrained type
112 |                 return
113 |             }
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:173:13: warning: capture of 'self' with non-sendable type 'PinboardClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public class PinboardClient {
    |              `- note: class 'PinboardClient' does not conform to the 'Sendable' protocol
 24 |     var auth: Authentication
 25 |
    :
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
172 |         DispatchQueue(label: "Corkboard.RetryRequest").asyncAfter(deadline: deadline) {
173 |             self.request(url, session: session, completion: completion)
    |             `- warning: capture of 'self' with non-sendable type 'PinboardClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
174 |         }
175 |     }
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:173:40: warning: capture of 'session' with non-sendable type 'URLSession' (aka 'AnyObject') in a '@Sendable' closure; this is an error in the Swift 6 language mode
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
172 |         DispatchQueue(label: "Corkboard.RetryRequest").asyncAfter(deadline: deadline) {
173 |             self.request(url, session: session, completion: completion)
    |                                        `- warning: capture of 'session' with non-sendable type 'URLSession' (aka 'AnyObject') in a '@Sendable' closure; this is an error in the Swift 6 language mode
174 |         }
175 |     }
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:173:61: warning: capture of 'completion' with non-sendable type '(Result<T, CorkboardError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
172 |         DispatchQueue(label: "Corkboard.RetryRequest").asyncAfter(deadline: deadline) {
173 |             self.request(url, session: session, completion: completion)
    |                                                             |- warning: capture of 'completion' with non-sendable type '(Result<T, CorkboardError>) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |                                                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
174 |         }
175 |     }
[5/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: 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: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: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: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 |
[6/7] Compiling Corkboard Bookmark.swift
[7/7] Compiling Corkboard Responses.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/6] 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: 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: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: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: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/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
[3/6] Compiling Corkboard Responses.swift
[4/6] Compiling Corkboard Bookmark.swift
[5/6] 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: 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: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: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: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 |
[6/6] 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,
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:111:46: error: argument type '_' expected to be an instance of a class or class-constrained type
109 |                 let response = resp as? HTTPURLResponse
110 |             else {
111 |                 completion(.failure(.network(resp)))
    |                                              `- error: argument type '_' expected to be an instance of a class or class-constrained type
112 |                 return
113 |             }
BUILD FAILURE 6.1 android