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 main (d8df22), with Swift 6.0 for Linux on 5 Nov 2024 17:16:22 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/EngOmarElsayed/GenericNetworkLayer.git
Reference: main
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
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
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 main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
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-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-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
32 |   /// Don't override the implementation of the url. if you did make sure you did it correctly.
33 |   var url: URL? { get }
34 |   var urlRequest: URLRequest? { get }
   |                   `- error: cannot find type 'URLRequest' in scope
35 | }
36 |
[5/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'
25 | /// This struct contains all the networking functions
26 | public struct GenericNetworkLayer: GenericNetworkLayerProtocol {
27 |   private let urlSession = URLSession.shared
   |                                       `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
28 |   private let decoder = JSONDecoder()
29 |
/host/spi-builder-workspace/Sources/GenericNetworkLayer/EndPointProtocol/EndPointProtocol.swift:34:19: error: cannot find type 'URLRequest' in scope
32 |   /// Don't override the implementation of the url. if you did make sure you did it correctly.
33 |   var url: URL? { get }
34 |   var urlRequest: URLRequest? { get }
   |                   `- error: cannot find type 'URLRequest' in scope
35 | }
36 |
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:58:28: error: cannot find type 'URLRequest' in scope
56 |   }
57 |
58 |   func getData(urlRequest: URLRequest) async throws -> urlDataResult {
   |                            `- error: cannot find type 'URLRequest' in scope
59 |     let (resultedData, response) = try await urlSession.data(for: urlRequest)
60 |     let statusCode = try checkStatusCode(for: response)
/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.
68 |   }
69 |
70 |   func checkStatusCode(for response: URLResponse) throws -> Int {
   |                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
71 |     guard let response = response as? HTTPURLResponse else { throw  GenericNetworkLayerError.failedToConvertResponse }
72 |     let statusCode = response.statusCode
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/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:71:35: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
69 |
70 |   func checkStatusCode(for response: URLResponse) throws -> Int {
71 |     guard let response = response as? HTTPURLResponse else { throw  GenericNetworkLayerError.failedToConvertResponse }
   |                                   `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
72 |     let statusCode = response.statusCode
73 |
/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.
69 |
70 |   func checkStatusCode(for response: URLResponse) throws -> Int {
71 |     guard let response = response as? HTTPURLResponse else { throw  GenericNetworkLayerError.failedToConvertResponse }
   |                                       `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
72 |     let statusCode = response.statusCode
73 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:72:31: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
70 |   func checkStatusCode(for response: URLResponse) throws -> Int {
71 |     guard let response = response as? HTTPURLResponse else { throw  GenericNetworkLayerError.failedToConvertResponse }
72 |     let statusCode = response.statusCode
   |                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
73 |
74 |     switch statusCode {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/8] Compiling GenericNetworkLayer HTTPProtocolCase.swift
[7/8] Emitting module GenericNetworkLayer
/host/spi-builder-workspace/Sources/GenericNetworkLayer/EndPointProtocol/EndPointProtocol.swift:34:19: error: cannot find type 'URLRequest' in scope
32 |   /// Don't override the implementation of the url. if you did make sure you did it correctly.
33 |   var url: URL? { get }
34 |   var urlRequest: URLRequest? { get }
   |                   `- error: cannot find type 'URLRequest' in scope
35 | }
36 |
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:27:39: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
25 | /// This struct contains all the networking functions
26 | public struct GenericNetworkLayer: GenericNetworkLayerProtocol {
27 |   private let urlSession = URLSession.shared
   |                                       `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
28 |   private let decoder = JSONDecoder()
29 |
/host/spi-builder-workspace/Sources/GenericNetworkLayer/GenericNetworkLayer/GenericNetworkLayer.swift:58:28: error: cannot find type 'URLRequest' in scope
56 |   }
57 |
58 |   func getData(urlRequest: URLRequest) async throws -> urlDataResult {
   |                            `- error: cannot find type 'URLRequest' in scope
59 |     let (resultedData, response) = try await urlSession.data(for: urlRequest)
60 |     let statusCode = try checkStatusCode(for: response)
/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.
68 |   }
69 |
70 |   func checkStatusCode(for response: URLResponse) throws -> Int {
   |                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
71 |     guard let response = response as? HTTPURLResponse else { throw  GenericNetworkLayerError.failedToConvertResponse }
72 |     let statusCode = response.statusCode
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
[8/8] Compiling GenericNetworkLayer EndPointProtocol.swift
/host/spi-builder-workspace/Sources/GenericNetworkLayer/EndPointProtocol/EndPointProtocol.swift:34:19: error: cannot find type 'URLRequest' in scope
32 |   /// Don't override the implementation of the url. if you did make sure you did it correctly.
33 |   var url: URL? { get }
34 |   var urlRequest: URLRequest? { get }
   |                   `- error: cannot find type 'URLRequest' in scope
35 | }
36 |
BUILD FAILURE 6.0 linux