The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build GenericNetworkLayer, reference v1.2.1 (d8df22), with Swift 5.10 for Linux on 9 Aug 2024 08:13:05 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.49.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/EngOmarElsayed/GenericNetworkLayer.git
Reference: v1.2.1
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/EngOmarElsayed/GenericNetworkLayer
 * tag               v1.2.1     -> FETCH_HEAD
HEAD is now at d8df229 changed the protocol to public
Cloned https://github.com/EngOmarElsayed/GenericNetworkLayer.git
Revision (git rev-parse @):
d8df229a82488ec7d1cea1589e2e7343a9011c65
SUCCESS checkout https://github.com/EngOmarElsayed/GenericNetworkLayer.git at v1.2.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
Building package at path:  $PWD
https://github.com/EngOmarElsayed/GenericNetworkLayer.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-5.10-latest: Pulling from finestructure/spi-images
Digest: sha256:f99c45c6693c369319405b8761f4e4d2fe7d5bc9f23302c8842c79031f22f7c0
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.10-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/8] Compiling GenericNetworkLayer GenericNetworkLayerError.swift
[4/8] Compiling GenericNetworkLayer GenericNetworkLayerProtocol.swift
/host/spi-builder-workspace/Sources/GenericNetworkLayer/EndPointProtocol/EndPointProtocol.swift:34:19: error: cannot find type 'URLRequest' in scope
  var urlRequest: URLRequest? { get }
                  ^~~~~~~~~~
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/8] Emitting module GenericNetworkLayer
/host/spi-builder-workspace/Sources/GenericNetworkLayer/EndPointProtocol/EndPointProtocol.swift:34:19: error: cannot find type 'URLRequest' in scope
  var urlRequest: URLRequest? { get }
                  ^~~~~~~~~~
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:27:39: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
  private let urlSession = URLSession.shared
                           ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:58:28: error: cannot find type 'URLRequest' in scope
  func getData(urlRequest: URLRequest) async throws -> urlDataResult {
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:70:38: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
  func checkStatusCode(for response: URLResponse) throws -> Int {
                                     ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
[6/8] Compiling GenericNetworkLayer HTTPProtocolCase.swift
[7/8] Compiling GenericNetworkLayer GenericNetworkLayer.swift
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:27:39: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
  private let urlSession = URLSession.shared
                           ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/GenericNetworkLayer/EndPointProtocol/EndPointProtocol.swift:34:19: error: cannot find type 'URLRequest' in scope
  var urlRequest: URLRequest? { get }
                  ^~~~~~~~~~
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:58:28: error: cannot find type 'URLRequest' in scope
  func getData(urlRequest: URLRequest) async throws -> urlDataResult {
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:70:38: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
  func checkStatusCode(for response: URLResponse) throws -> Int {
                                     ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:71:35: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
    guard let response = response as? HTTPURLResponse else { throw  GenericNetworkLayerError.failedToConvertResponse }
                                  ^
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:71:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    guard let response = response as? HTTPURLResponse else { throw  GenericNetworkLayerError.failedToConvertResponse }
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:72:31: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
    let statusCode = response.statusCode
                     ~~~~~~~~ ^~~~~~~~~~
[8/8] Compiling GenericNetworkLayer EndPointProtocol.swift
/host/spi-builder-workspace/Sources/GenericNetworkLayer/EndPointProtocol/EndPointProtocol.swift:34:19: error: cannot find type 'URLRequest' in scope
  var urlRequest: URLRequest? { get }
                  ^~~~~~~~~~
error: fatalError
BUILD FAILURE 5.10 linux