Build Information
Successful build of Fluxor, reference 5.0.1 (1d20b7), with Swift 6.3 for macOS (SPM) on 21 Apr 2026 13:51:38 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/FluxorOrg/Fluxor.git
Reference: 5.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/FluxorOrg/Fluxor
* tag 5.0.1 -> FETCH_HEAD
HEAD is now at 1d20b74 Don't erase already erased values in collections (#102)
Cloned https://github.com/FluxorOrg/Fluxor.git
Revision (git rev-parse @):
1d20b74287f629c6187db11d7905988fb65a3e0d
SUCCESS checkout https://github.com/FluxorOrg/Fluxor.git at 5.0.1
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "fluxor",
"name": "Fluxor",
"url": "https://github.com/FluxorOrg/Fluxor.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Fluxor",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/FluxorOrg/Fluxor.git
[1/3766] Fetching fluxor
Fetched https://github.com/FluxorOrg/Fluxor.git from cache (1.15s)
Creating working copy for https://github.com/FluxorOrg/Fluxor.git
Working copy of https://github.com/FluxorOrg/Fluxor.git resolved at 5.0.1 (1d20b74)
warning: '.resolve-product-dependencies': dependency 'fluxor' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/FluxorOrg/Fluxor.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version--6988338F2F200930.txt
[5/6] Compiling AnyCodable AnyCodable.swift
[6/6] Emitting module AnyCodable
[7/18] Compiling Fluxor ActionPublisher+WithIdentifier.swift
[8/18] Compiling Fluxor Interceptor.swift
[9/18] Compiling Fluxor PrintInterceptor.swift
[10/18] Compiling Fluxor Action.swift
[11/18] Compiling Fluxor Effects.swift
[12/18] Emitting module Fluxor
[13/18] Compiling Fluxor Reducer.swift
[14/18] Compiling Fluxor Store+Binding.swift
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:26:44: warning: capture of 'actionTemplate' with non-Sendable type 'ActionTemplate<Value>' in a '@Sendable' closure [#SendableClosureCaptures]
24 | send actionTemplate: ActionTemplate<Value>) -> Binding<Value> {
25 | .init(get: { self.selectCurrent(selector) },
26 | set: { self.dispatch(action: actionTemplate.createAction(payload: $0)) })
| `- warning: capture of 'actionTemplate' with non-Sendable type 'ActionTemplate<Value>' in a '@Sendable' closure [#SendableClosureCaptures]
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:47:57: warning: capture of 'enableActionTemplate' with non-Sendable type 'ActionTemplate<Void>' in a '@Sendable' closure [#SendableClosureCaptures]
45 | -> Binding<Bool> {
46 | return .init(get: { self.selectCurrent(selector) },
47 | set: { self.dispatch(action: ($0 ? enableActionTemplate : disableActionTemplate)()) })
| `- warning: capture of 'enableActionTemplate' with non-Sendable type 'ActionTemplate<Void>' in a '@Sendable' closure [#SendableClosureCaptures]
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:47:80: warning: capture of 'disableActionTemplate' with non-Sendable type 'ActionTemplate<Void>' in a '@Sendable' closure [#SendableClosureCaptures]
45 | -> Binding<Bool> {
46 | return .init(get: { self.selectCurrent(selector) },
47 | set: { self.dispatch(action: ($0 ? enableActionTemplate : disableActionTemplate)()) })
| `- warning: capture of 'disableActionTemplate' with non-Sendable type 'ActionTemplate<Void>' in a '@Sendable' closure [#SendableClosureCaptures]
48 | }
49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[15/18] Compiling Fluxor Store.swift
[16/18] Compiling Fluxor ActionPublisher+WasCreatedBy.swift
[17/18] Compiling Fluxor ActionPublisher+OfType.swift
[18/18] Compiling Fluxor Selector.swift
[19/19] Compiling Fluxor StoreValue.swift
[20/23] Compiling FluxorTestSupport EffectRunner.swift
[21/23] Emitting module FluxorTestSupport
/Users/admin/builder/spi-builder-workspace/Sources/FluxorTestSupport/MockStore.swift:16:1: warning: extension declares a conformance of imported type 'AnonymousAction' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Fluxor' introduce this conformance in the future
14 | import XCTest
15 |
16 | extension AnonymousAction: Equatable {
| |- warning: extension declares a conformance of imported type 'AnonymousAction' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Fluxor' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
17 | public static func == (lhs: Self, rhs: Self) -> Bool {
18 | lhs.id == rhs.id
[22/23] Compiling FluxorTestSupport TestInterceptor.swift
[23/23] Compiling FluxorTestSupport MockStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/FluxorTestSupport/MockStore.swift:16:1: warning: extension declares a conformance of imported type 'AnonymousAction' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Fluxor' introduce this conformance in the future
14 | import XCTest
15 |
16 | extension AnonymousAction: Equatable {
| |- warning: extension declares a conformance of imported type 'AnonymousAction' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Fluxor' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
17 | public static func == (lhs: Self, rhs: Self) -> Bool {
18 | lhs.id == rhs.id
Build complete! (14.00s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Fluxor",
"name" : "Fluxor",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "Fluxor",
"targets" : [
"Fluxor"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "FluxorTestSupport",
"targets" : [
"FluxorTestSupport"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "FluxorTests",
"module_type" : "SwiftTarget",
"name" : "FluxorTests",
"path" : "Tests/FluxorTests",
"sources" : [
"ActionTests.swift",
"EffectsTests.swift",
"Interceptors/PrintInterceptorTests.swift",
"Interceptors/TestInterceptorTests.swift",
"MockStoreTests.swift",
"Operators/ActionPublisher+OfTypeTests.swift",
"Operators/ActionPublisher+WasCreatedByTests.swift",
"Operators/ActionPublisher+WithIdentifierTests.swift",
"ReducerTests.swift",
"SelectorTests.swift",
"StoreTests.swift",
"SwiftUI/Store+BindingTests.swift",
"SwiftUI/StoreValueTests.swift"
],
"target_dependencies" : [
"Fluxor",
"FluxorTestSupport"
],
"type" : "test"
},
{
"c99name" : "FluxorTestSupport",
"module_type" : "SwiftTarget",
"name" : "FluxorTestSupport",
"path" : "Sources/FluxorTestSupport",
"product_memberships" : [
"FluxorTestSupport"
],
"sources" : [
"EffectRunner.swift",
"MockStore.swift",
"TestInterceptor.swift"
],
"target_dependencies" : [
"Fluxor"
],
"type" : "library"
},
{
"c99name" : "Fluxor",
"module_type" : "SwiftTarget",
"name" : "Fluxor",
"path" : "Sources/Fluxor",
"product_memberships" : [
"Fluxor",
"FluxorTestSupport"
],
"sources" : [
"Action.swift",
"Effects.swift",
"Interceptor.swift",
"Interceptors/PrintInterceptor.swift",
"Operators/ActionPublisher+OfType.swift",
"Operators/ActionPublisher+WasCreatedBy.swift",
"Operators/ActionPublisher+WithIdentifier.swift",
"Reducer.swift",
"Selector.swift",
"Store.swift",
"SwiftUI/Store+Binding.swift",
"SwiftUI/StoreValue.swift"
],
"target_dependencies" : [
"AnyCodable"
],
"type" : "library"
},
{
"c99name" : "AnyCodableTests",
"module_type" : "SwiftTarget",
"name" : "AnyCodableTests",
"path" : "Tests/AnyCodableTests",
"sources" : [
"AnyCodable+DecodableTests.swift",
"AnyCodable+EncodableTests.swift",
"AnyCodable+EquatableTests.swift",
"AnyCodable+StringTests.swift"
],
"target_dependencies" : [
"AnyCodable"
],
"type" : "test"
},
{
"c99name" : "AnyCodable",
"module_type" : "SwiftTarget",
"name" : "AnyCodable",
"path" : "Sources/AnyCodable",
"product_memberships" : [
"Fluxor",
"FluxorTestSupport"
],
"sources" : [
"AnyCodable.swift"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
Done.