The Swift Package Index logo.Swift Package Index

Build Information

Failed to build GenericNetworkLayer, reference main (d8df22), with Swift 6.3 for Wasm on 14 Apr 2026 21:57:10 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.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:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/EngOmarElsayed/GenericNetworkLayer.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/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 |
[4/8] Compiling GenericNetworkLayer GenericNetworkLayerError.swift
[5/8] Compiling GenericNetworkLayer HTTPProtocolCase.swift
[6/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 {
[7/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 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[8/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
BUILD FAILURE 6.3 wasm