Build Information
Failed to build swift-feature-flags, reference v0.1.0 (dae14d), with Swift 6.1 for Wasm on 3 Apr 2026 07:38:45 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.69.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/philiprehberger/swift-feature-flags.git
Reference: v0.1.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/philiprehberger/swift-feature-flags
* tag v0.1.0 -> FETCH_HEAD
HEAD is now at dae14db Fix FoundationNetworking import for Linux and NSLock in async context
Cloned https://github.com/philiprehberger/swift-feature-flags.git
Revision (git rev-parse @):
dae14dbd025c82e3000bc5ec08691bf143fa986f
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/philiprehberger/swift-feature-flags.git at v0.1.0
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/philiprehberger/swift-feature-flags.git
https://github.com/philiprehberger/swift-feature-flags.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "swift-feature-flags",
"name" : "swift-feature-flags",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "FeatureFlags",
"targets" : [
"FeatureFlags"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "FeatureFlagsTests",
"module_type" : "SwiftTarget",
"name" : "FeatureFlagsTests",
"path" : "Tests/FeatureFlagsTests",
"sources" : [
"ABTestTests.swift",
"FlagPropertyWrapperTests.swift",
"FlagRegistryTests.swift",
"FlagValueTests.swift",
"LocalProviderTests.swift"
],
"target_dependencies" : [
"FeatureFlags"
],
"type" : "test"
},
{
"c99name" : "FeatureFlags",
"module_type" : "SwiftTarget",
"name" : "FeatureFlags",
"path" : "Sources/FeatureFlags",
"product_memberships" : [
"FeatureFlags"
],
"sources" : [
"ABTest.swift",
"FeatureFlags.swift",
"Flag.swift",
"FlagEnvironment.swift",
"FlagProvider.swift",
"FlagRegistry.swift",
"FlagValue.swift",
"RemoteProvider.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:c3bd0c8eb125dea46564a1eb8b09ee779ba7ae350b1ee58b5e9d6ff6c39cef37
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/10] Compiling FeatureFlags FeatureFlags.swift
[4/11] Compiling FeatureFlags RemoteProvider.swift
/host/spi-builder-workspace/Sources/FeatureFlags/RemoteProvider.swift:14:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 | public final class RemoteProvider: @unchecked Sendable, FlagProvider {
13 | private let url: URL
14 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | private var cache: [String: Any] = [:]
16 | private let lock = NSLock()
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/FeatureFlags/RemoteProvider.swift:19:36: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 | /// Create a remote provider that fetches flags from a JSON URL
19 | public init(url: URL, session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | self.url = url
21 | self.session = session
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/FeatureFlags/RemoteProvider.swift:19:50: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 |
18 | /// Create a remote provider that fetches flags from a JSON URL
19 | public init(url: URL, session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.url = url
21 | self.session = session
/host/spi-builder-workspace/Sources/FeatureFlags/RemoteProvider.swift:32:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
30 | /// Fetch flags from the remote URL and update the local cache
31 | public func refresh() async throws {
32 | let (data, _) = try await session.data(from: url)
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
33 | let json = try JSONSerialization.jsonObject(with: data) as? [String: Any] ?? [:]
34 | let newCache = json
[5/11] Compiling FeatureFlags Flag.swift
[6/11] Compiling FeatureFlags FlagValue.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/11] Compiling FeatureFlags ABTest.swift
[8/11] Emitting module FeatureFlags
/host/spi-builder-workspace/Sources/FeatureFlags/RemoteProvider.swift:14:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 | public final class RemoteProvider: @unchecked Sendable, FlagProvider {
13 | private let url: URL
14 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | private var cache: [String: Any] = [:]
16 | private let lock = NSLock()
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/FeatureFlags/RemoteProvider.swift:19:36: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 | /// Create a remote provider that fetches flags from a JSON URL
19 | public init(url: URL, session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | self.url = url
21 | self.session = session
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/FeatureFlags/RemoteProvider.swift:19:50: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 |
18 | /// Create a remote provider that fetches flags from a JSON URL
19 | public init(url: URL, session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.url = url
21 | self.session = session
[9/11] Compiling FeatureFlags FlagProvider.swift
[10/11] Compiling FeatureFlags FlagEnvironment.swift
[11/11] Compiling FeatureFlags FlagRegistry.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:c3bd0c8eb125dea46564a1eb8b09ee779ba7ae350b1ee58b5e9d6ff6c39cef37
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/9] Compiling FeatureFlags FlagValue.swift
[3/10] Compiling FeatureFlags FeatureFlags.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/10] Emitting module FeatureFlags
/host/spi-builder-workspace/Sources/FeatureFlags/RemoteProvider.swift:14:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 | public final class RemoteProvider: @unchecked Sendable, FlagProvider {
13 | private let url: URL
14 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | private var cache: [String: Any] = [:]
16 | private let lock = NSLock()
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/FeatureFlags/RemoteProvider.swift:19:36: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 | /// Create a remote provider that fetches flags from a JSON URL
19 | public init(url: URL, session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | self.url = url
21 | self.session = session
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/FeatureFlags/RemoteProvider.swift:19:50: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 |
18 | /// Create a remote provider that fetches flags from a JSON URL
19 | public init(url: URL, session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.url = url
21 | self.session = session
[5/10] Compiling FeatureFlags ABTest.swift
[6/10] Compiling FeatureFlags FlagProvider.swift
[7/10] Compiling FeatureFlags Flag.swift
[8/10] Compiling FeatureFlags FlagEnvironment.swift
[9/10] Compiling FeatureFlags FlagRegistry.swift
[10/10] Compiling FeatureFlags RemoteProvider.swift
/host/spi-builder-workspace/Sources/FeatureFlags/RemoteProvider.swift:14:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 | public final class RemoteProvider: @unchecked Sendable, FlagProvider {
13 | private let url: URL
14 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | private var cache: [String: Any] = [:]
16 | private let lock = NSLock()
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/FeatureFlags/RemoteProvider.swift:19:36: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 | /// Create a remote provider that fetches flags from a JSON URL
19 | public init(url: URL, session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | self.url = url
21 | self.session = session
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/FeatureFlags/RemoteProvider.swift:19:50: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 |
18 | /// Create a remote provider that fetches flags from a JSON URL
19 | public init(url: URL, session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.url = url
21 | self.session = session
/host/spi-builder-workspace/Sources/FeatureFlags/RemoteProvider.swift:32:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
30 | /// Fetch flags from the remote URL and update the local cache
31 | public func refresh() async throws {
32 | let (data, _) = try await session.data(from: url)
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
33 | let json = try JSONSerialization.jsonObject(with: data) as? [String: Any] ?? [:]
34 | let newCache = json
BUILD FAILURE 6.1 wasm