The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Light with Swift 5.9 for Linux.

Build Command

docker run --rm -v "checkouts-4609320-1":/host -w "/host/spi-builder-workspace" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.19.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dreymonde/light.git
Reference: 0.3.0
Cloned https://github.com/dreymonde/light.git into spi-builder-workspace
SUCCESS checkout https://github.com/dreymonde/light.git at 0.3.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.9
Building package at path:  spi-builder-workspace
Running build ...
docker run --rm -v "checkouts-4609320-1":/host -w "/host/spi-builder-workspace" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build 2>&1
Fetching https://github.com/dreymonde/Shallows.git
[1/1076] Fetching shallows
Fetched https://github.com/dreymonde/Shallows.git (0.22s)
Computing version for https://github.com/dreymonde/Shallows.git
Computed https://github.com/dreymonde/Shallows.git at 0.13.4 (1.12s)
Creating working copy for https://github.com/dreymonde/Shallows.git
Working copy of https://github.com/dreymonde/Shallows.git resolved at 0.13.4
Building for debugging...
[1/14] Compiling Shallows Filename.swift
[2/14] Compiling Shallows MemoryStorage.swift
[3/15] Compiling Shallows DiskExtensions.swift
[4/15] Compiling Shallows DiskStorage.swift
[5/15] Emitting module Shallows
[6/15] Compiling Shallows Async.swift
[7/15] Compiling Shallows Composition.swift
[8/15] Compiling Shallows Zip.swift
[9/15] Compiling Shallows WriteOnlyStorage.swift
[10/15] Compiling Shallows Storage.swift
[11/15] Compiling Shallows SyncStorage.swift
[12/15] Compiling Shallows Shallows.swift
[13/15] Compiling Shallows ShallowsResult.swift
[14/15] Compiling Shallows NSCacheStorage.swift
[15/15] Compiling Shallows ReadOnlyStorage.swift
[18/22] Compiling Light WebAPIProtocol.swift
[19/22] Compiling Light WebAPI.swift
/host/spi-builder-workspace/Sources/Light/WebAPI.swift:15:25: error: cannot find type 'URLRequest' in scope
        case urlRequest(URLRequest)
                        ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/WebAPI.swift:19:37: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        public var httpUrlResponse: HTTPURLResponse
                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Light/WebAPI.swift:49:38: error: cannot find type 'URLRequest' in scope
    public func retrieve(forKey url: URLRequest, completion: @escaping (ShallowsResult<Value>) -> ()) {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/WebAPI.swift:50:27: error: reference to member 'urlRequest' cannot be resolved without a contextual type
        retrieve(forKey: .urlRequest(url), completion: completion)
                          ^
[20/22] Compiling Light URLSession+WebAPI.swift
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:11:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
extension URLSession : ReadOnlyStorageProtocol {
^         ~~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:113:1: error: non-nominal type 'URLSessionConfiguration' (aka 'AnyObject') cannot be extended
extension URLSessionConfiguration {
^         ~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:55:56: error: cannot find type 'URLRequest' in scope
    public func mapURLRequestKeys() -> ReadOnlyStorage<URLRequest, Value> {
                                                       ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:79:29: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(urlSession: URLSession) {
                            ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:84:42: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(urlSessionConfiguration: URLSessionConfiguration) {
                                         ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:132:83: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func withProxy(_ httpProxy: HTTPProxy, urlSessionConfiguration: URLSessionConfiguration) -> Self {
                                                                                  ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:80:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'asReadOnlyStorage'
        let webAPI = WebAPI(provider: urlSession.asReadOnlyStorage())
                                      ~~~~~~~~~~ ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:85:26: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
        let urlSession = URLSession(configuration: urlSessionConfiguration)
                         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:133:33: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'setHTTPProxy'
        urlSessionConfiguration.setHTTPProxy(httpProxy)
        ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:22:42: error: cannot find type 'Request' in scope
    public func retrieve(forKey request: Request, completion: @escaping (ShallowsResult<Response>) -> ()) {
                                         ^~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:22:89: error: cannot find type 'Response' in scope
    public func retrieve(forKey request: Request, completion: @escaping (ShallowsResult<Response>) -> ()) {
                                                                                        ^~~~~~~~
error: emit-module command failed with exit code 1 (use -v to see invocation)
[21/22] Compiling Light Light.swift
[22/22] Emitting module Light
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:11:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
extension URLSession : ReadOnlyStorageProtocol {
^         ~~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:113:1: error: non-nominal type 'URLSessionConfiguration' (aka 'AnyObject') cannot be extended
extension URLSessionConfiguration {
^         ~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:55:56: error: cannot find type 'URLRequest' in scope
    public func mapURLRequestKeys() -> ReadOnlyStorage<URLRequest, Value> {
                                                       ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:79:29: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(urlSession: URLSession) {
                            ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:84:42: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(urlSessionConfiguration: URLSessionConfiguration) {
                                         ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Light/URLSession+WebAPI.swift:132:83: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func withProxy(_ httpProxy: HTTPProxy, urlSessionConfiguration: URLSessionConfiguration) -> Self {
                                                                                  ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Light/WebAPI.swift:15:25: error: cannot find type 'URLRequest' in scope
        case urlRequest(URLRequest)
                        ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Light/WebAPI.swift:19:37: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        public var httpUrlResponse: HTTPURLResponse
                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Light/WebAPI.swift:49:38: error: cannot find type 'URLRequest' in scope
    public func retrieve(forKey url: URLRequest, completion: @escaping (ShallowsResult<Value>) -> ()) {
                                     ^~~~~~~~~~
error: fatalError
BUILD FAILURE 5.9 linux

Build Machine: Linux 2