Build Information
Failed to build ReSwiftSaga, reference main (2d60e2), with Swift 6.1 for Wasm on 29 May 2025 08:53:24 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mitsuharu/ReSwift-Saga.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/mitsuharu/ReSwift-Saga
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 2d60e2f Merge pull request #20 from mitsuharu/develop
Cloned https://github.com/mitsuharu/ReSwift-Saga.git
Revision (git rev-parse @):
2d60e2f5dec2d828b19c419eab3d72dd9330f501
SUCCESS checkout https://github.com/mitsuharu/ReSwift-Saga.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/mitsuharu/ReSwift-Saga.git
https://github.com/mitsuharu/ReSwift-Saga.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "reswift",
"requirement" : {
"range" : [
{
"lower_bound" : "6.1.0",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ReSwift/ReSwift"
}
],
"manifest_display_name" : "ReSwiftSaga",
"name" : "ReSwiftSaga",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "ReSwiftSaga",
"targets" : [
"ReSwiftSaga"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ReSwiftSagaTests",
"module_type" : "SwiftTarget",
"name" : "ReSwiftSagaTests",
"path" : "Tests/ReSwiftSagaTests",
"sources" : [
"ReSwiftSagaTests.swift",
"utilities/ReduxModules.swift",
"utilities/StateSubscriber.swift"
],
"target_dependencies" : [
"ReSwiftSaga"
],
"type" : "test"
},
{
"c99name" : "ReSwiftSaga",
"module_type" : "SwiftTarget",
"name" : "ReSwiftSaga",
"path" : "Sources/ReSwiftSaga",
"product_dependencies" : [
"ReSwift"
],
"product_memberships" : [
"ReSwiftSaga"
],
"resources" : [
{
"path" : "/host/spi-builder-workspace/Sources/ReSwiftSaga/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Bridge.swift",
"Buffer.swift",
"Effects.swift",
"Error.swift",
"Saga.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/ReSwift/ReSwift
[1/6447] Fetching reswift
Fetched https://github.com/ReSwift/ReSwift from cache (0.72s)
Computing version for https://github.com/ReSwift/ReSwift
Computed https://github.com/ReSwift/ReSwift at 6.1.1 (3.25s)
Creating working copy for https://github.com/ReSwift/ReSwift
Working copy of https://github.com/ReSwift/ReSwift resolved at 6.1.1
Building for debugging...
[0/4] Write sources
[0/4] Copying PrivacyInfo.xcprivacy
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/17] Compiling ReSwift Coding.swift
[6/18] Compiling ReSwift TypeHelper.swift
[7/18] Compiling ReSwift Middleware.swift
[8/18] Compiling ReSwift Reducer.swift
[9/18] Compiling ReSwift State.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:25: error: cannot find 'DispatchQueue' in scope
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:107: error: cannot infer contextual base in reference to member 'concurrent'
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
16 | private var _value: Value
17 | init(_ value: Value) {
[10/18] Compiling ReSwift Store.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:25: error: cannot find 'DispatchQueue' in scope
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:107: error: cannot infer contextual base in reference to member 'concurrent'
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
16 | private var _value: Value
17 | init(_ value: Value) {
[11/18] Compiling ReSwift StoreSubscriber.swift
[12/18] Compiling ReSwift StoreType.swift
[13/18] Compiling ReSwift Synchronized.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:25: error: cannot find 'DispatchQueue' in scope
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:107: error: cannot infer contextual base in reference to member 'concurrent'
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:24:39: error: cannot infer contextual base in reference to member 'barrier'
22 | /// Submits a block for synchronous, thread-safe execution.
23 | mutating func value<T>(execute task: (inout Value) throws -> T) rethrows -> T {
24 | return try mutex.sync(flags: .barrier) { return try task(&_value) }
| `- error: cannot infer contextual base in reference to member 'barrier'
25 | }
26 | }
[14/18] Compiling ReSwift Subscription.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Assertions.swift:22:25: error: value of type 'RunLoop' has no member 'run'
20 | Assertions.fatalErrorClosure(message(), file, line)
21 | repeat {
22 | RunLoop.current.run()
| `- error: value of type 'RunLoop' has no member 'run'
23 | } while (true)
24 | }
[15/18] Compiling ReSwift Assertions.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Assertions.swift:22:25: error: value of type 'RunLoop' has no member 'run'
20 | Assertions.fatalErrorClosure(message(), file, line)
21 | repeat {
22 | RunLoop.current.run()
| `- error: value of type 'RunLoop' has no member 'run'
23 | } while (true)
24 | }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[16/18] Compiling ReSwift Action.swift
[17/18] Compiling ReSwift DispatchingStoreType.swift
[18/18] Emitting module ReSwift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:25: error: cannot find 'DispatchQueue' in scope
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:107: error: cannot infer contextual base in reference to member 'concurrent'
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
16 | private var _value: Value
17 | init(_ value: Value) {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/14] Compiling ReSwift Action.swift
[3/14] Compiling ReSwift DispatchingStoreType.swift
[4/15] Compiling ReSwift Synchronized.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:25: error: cannot find 'DispatchQueue' in scope
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:107: error: cannot infer contextual base in reference to member 'concurrent'
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:24:39: error: cannot infer contextual base in reference to member 'barrier'
22 | /// Submits a block for synchronous, thread-safe execution.
23 | mutating func value<T>(execute task: (inout Value) throws -> T) rethrows -> T {
24 | return try mutex.sync(flags: .barrier) { return try task(&_value) }
| `- error: cannot infer contextual base in reference to member 'barrier'
25 | }
26 | }
[5/15] Compiling ReSwift StoreSubscriber.swift
[6/15] Compiling ReSwift StoreType.swift
[7/15] Compiling ReSwift Coding.swift
[8/15] Compiling ReSwift Subscription.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Assertions.swift:22:25: error: value of type 'RunLoop' has no member 'run'
20 | Assertions.fatalErrorClosure(message(), file, line)
21 | repeat {
22 | RunLoop.current.run()
| `- error: value of type 'RunLoop' has no member 'run'
23 | } while (true)
24 | }
[9/15] Compiling ReSwift Assertions.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Assertions.swift:22:25: error: value of type 'RunLoop' has no member 'run'
20 | Assertions.fatalErrorClosure(message(), file, line)
21 | repeat {
22 | RunLoop.current.run()
| `- error: value of type 'RunLoop' has no member 'run'
23 | } while (true)
24 | }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[10/15] Emitting module ReSwift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:25: error: cannot find 'DispatchQueue' in scope
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:107: error: cannot infer contextual base in reference to member 'concurrent'
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
16 | private var _value: Value
17 | init(_ value: Value) {
[11/15] Compiling ReSwift Middleware.swift
[12/15] Compiling ReSwift Reducer.swift
[13/15] Compiling ReSwift TypeHelper.swift
[14/15] Compiling ReSwift State.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:25: error: cannot find 'DispatchQueue' in scope
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:107: error: cannot infer contextual base in reference to member 'concurrent'
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
16 | private var _value: Value
17 | init(_ value: Value) {
[15/15] Compiling ReSwift Store.swift
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:25: error: cannot find 'DispatchQueue' in scope
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
16 | private var _value: Value
17 | init(_ value: Value) {
/host/spi-builder-workspace/.build/checkouts/ReSwift/ReSwift/Utils/Synchronized.swift:15:107: error: cannot infer contextual base in reference to member 'concurrent'
13 | /// An object that manages the execution of tasks atomically.
14 | struct Synchronized<Value> {
15 | private let mutex = DispatchQueue(label: "reswift.github.io.ReSwift.Utils.Synchronized", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
16 | private var _value: Value
17 | init(_ value: Value) {
BUILD FAILURE 6.1 wasm