Build Information
Failed to build SwiftSkyllKit, reference 0.3.0 (ced2d3), with Swift 6.3 for Wasm on 13 May 2026 20:51:01 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/workingDog/SwiftSkyllKit.git
Reference: 0.3.0
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/workingDog/SwiftSkyllKit
* tag 0.3.0 -> FETCH_HEAD
HEAD is now at ced2d37 initial commit
Cloned https://github.com/workingDog/SwiftSkyllKit.git
Revision (git rev-parse @):
ced2d3725d4ba64fd8549e8d21454b0598085d58
SUCCESS checkout https://github.com/workingDog/SwiftSkyllKit.git at 0.3.0
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/workingDog/SwiftSkyllKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/10] Emitting module SwiftSkyllKit
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:13:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
14 | self.session = session
15 | }
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:13:40: error: value of type '_' expected to be instance of class or class-constrained type
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
14 | self.session = session
15 | }
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllClient.swift:208:51: error: cannot find type 'URLRequest' in scope
206 | }
207 |
208 | private func perform<T: Decodable>(_ request: URLRequest) async throws -> T {
| `- error: cannot find type 'URLRequest' in scope
209 | let data = try await performData(request)
210 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllClient.swift:218:41: error: cannot find type 'URLRequest' in scope
216 | }
217 |
218 | private func performData(_ request: URLRequest) async throws -> Data {
| `- error: cannot find type 'URLRequest' in scope
219 | let (data, response) = try await transport.send(request)
220 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllEndpoint.swift:31:67: error: cannot find type 'URLRequest' in scope
29 | case health
30 |
31 | func makeRequest(configuration: SkyllConfiguration) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
32 | let url: URL
33 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllTransport.swift:11:26: error: cannot find type 'URLRequest' in scope
9 |
10 | public protocol SkyllTransport: Sendable {
11 | func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
12 | }
13 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllTransport.swift:11:61: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 |
10 | public protocol SkyllTransport: Sendable {
11 | func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 | }
13 |
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/SwiftSkyllKit/URLSessionTransport.swift:11:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 |
10 | public struct URLSessionTransport: SkyllTransport {
11 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 |
13 | public init(session: URLSession = .shared) {
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/SwiftSkyllKit/URLSessionTransport.swift:13:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | self.session = session
15 | }
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/SwiftSkyllKit/URLSessionTransport.swift:17:33: error: cannot find type 'URLRequest' in scope
15 | }
16 |
17 | public func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: cannot find type 'URLRequest' in scope
18 | let (data, response) = try await session.data(for: request)
19 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:17:68: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | }
16 |
17 | public func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 | let (data, response) = try await session.data(for: request)
19 |
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/SwiftSkyllKit/URLSessionTransport.swift:11:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionTransport' has non-Sendable type 'AnyObject'
9 |
10 | public struct URLSessionTransport: SkyllTransport {
11 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionTransport' has non-Sendable type 'AnyObject'
12 |
13 | public init(session: URLSession = .shared) {
[4/11] Compiling SwiftSkyllKit SkyllError.swift
[5/11] Compiling SwiftSkyllKit SkyllEndpoint.swift
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllEndpoint.swift:31:67: error: cannot find type 'URLRequest' in scope
29 | case health
30 |
31 | func makeRequest(configuration: SkyllConfiguration) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
32 | let url: URL
33 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllEndpoint.swift:98:23: error: cannot find 'URLRequest' in scope
96 | }
97 |
98 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
99 | request.httpMethod = "GET"
100 | request.setValue("application/json", forHTTPHeaderField: "Accept")
[6/11] Compiling SwiftSkyllKit URLSessionTransport.swift
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:11:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 |
10 | public struct URLSessionTransport: SkyllTransport {
11 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 |
13 | public init(session: URLSession = .shared) {
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/SwiftSkyllKit/URLSessionTransport.swift:13:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | self.session = session
15 | }
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/SwiftSkyllKit/URLSessionTransport.swift:13:40: error: value of type '_' expected to be instance of class or class-constrained type
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
14 | self.session = session
15 | }
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:13:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
14 | self.session = session
15 | }
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:17:33: error: cannot find type 'URLRequest' in scope
15 | }
16 |
17 | public func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: cannot find type 'URLRequest' in scope
18 | let (data, response) = try await session.data(for: request)
19 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:17:68: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | }
16 |
17 | public func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 | let (data, response) = try await session.data(for: request)
19 |
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/SwiftSkyllKit/URLSessionTransport.swift:11:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionTransport' has non-Sendable type 'AnyObject'
9 |
10 | public struct URLSessionTransport: SkyllTransport {
11 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionTransport' has non-Sendable type 'AnyObject'
12 |
13 | public init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllTransport.swift:11:26: error: cannot find type 'URLRequest' in scope
9 |
10 | public protocol SkyllTransport: Sendable {
11 | func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
12 | }
13 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:18:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
16 |
17 | public func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
18 | let (data, response) = try await session.data(for: request)
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
19 |
20 | guard let httpResponse = response as? HTTPURLResponse else {
[7/11] Compiling SwiftSkyllKit SkyllSearchOptions.swift
[8/11] Compiling SwiftSkyllKit SkyllTransport.swift
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllTransport.swift:11:26: error: cannot find type 'URLRequest' in scope
9 |
10 | public protocol SkyllTransport: Sendable {
11 | func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
12 | }
13 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllTransport.swift:11:61: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
9 |
10 | public protocol SkyllTransport: Sendable {
11 | func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 | }
13 |
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
[9/11] Compiling SwiftSkyllKit SkyllModels.swift
[10/11] Compiling SwiftSkyllKit SkyllClient.swift
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:13:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
14 | self.session = session
15 | }
/host/spi-builder-workspace/Sources/SwiftSkyllKit/URLSessionTransport.swift:13:40: error: value of type '_' expected to be instance of class or class-constrained type
11 | private let session: URLSession
12 |
13 | public init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
14 | self.session = session
15 | }
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllClient.swift:208:51: error: cannot find type 'URLRequest' in scope
206 | }
207 |
208 | private func perform<T: Decodable>(_ request: URLRequest) async throws -> T {
| `- error: cannot find type 'URLRequest' in scope
209 | let data = try await performData(request)
210 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllClient.swift:218:41: error: cannot find type 'URLRequest' in scope
216 | }
217 |
218 | private func performData(_ request: URLRequest) async throws -> Data {
| `- error: cannot find type 'URLRequest' in scope
219 | let (data, response) = try await transport.send(request)
220 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllClient.swift:142:23: error: cannot find 'URLRequest' in scope
140 | }
141 |
142 | let request = URLRequest(url: rawURL)
| `- error: cannot find 'URLRequest' in scope
143 | let data = try await performData(request)
144 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllClient.swift:161:23: error: cannot find 'URLRequest' in scope
159 | }
160 |
161 | let request = URLRequest(url: markdownURL)
| `- error: cannot find 'URLRequest' in scope
162 | let data = try await performData(request)
163 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllClient.swift:175:23: error: cannot find 'URLRequest' in scope
173 | // Use only when you already have a valid JSON object string.
174 | public func postSearch(jsonString: String) async throws -> Data {
175 | var request = URLRequest(url: configuration.baseURL.appending(path: "search"))
| `- error: cannot find 'URLRequest' in scope
176 | request.httpMethod = "POST"
177 | request.setValue("application/json", forHTTPHeaderField: "Content-Type")
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllClient.swift:193:23: error: cannot find 'URLRequest' in scope
191 | as type: Response.Type
192 | ) async throws -> Response {
193 | var request = URLRequest(url: configuration.baseURL.appending(path: "search"))
| `- error: cannot find 'URLRequest' in scope
194 | request.httpMethod = "POST"
195 | request.setValue("application/json", forHTTPHeaderField: "Content-Type")
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllEndpoint.swift:31:67: error: cannot find type 'URLRequest' in scope
29 | case health
30 |
31 | func makeRequest(configuration: SkyllConfiguration) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
32 | let url: URL
33 |
/host/spi-builder-workspace/Sources/SwiftSkyllKit/SkyllTransport.swift:11:26: error: cannot find type 'URLRequest' in scope
9 |
10 | public protocol SkyllTransport: Sendable {
11 | func send(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
| `- error: cannot find type 'URLRequest' in scope
12 | }
13 |
[11/11] Compiling SwiftSkyllKit SkyllConfiguration.swift
BUILD FAILURE 6.3 wasm