The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Fluxor, reference master (d924fe), with Swift 6.2 for macOS (SPM) on 19 Jun 2025 05:32:15 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64 --target Fluxor

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/FluxorOrg/Fluxor.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/FluxorOrg/Fluxor
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at d924fec Remove wiki docs (#112)
Cloned https://github.com/FluxorOrg/Fluxor.git
Revision (git rev-parse @):
d924fec95afbc80a5c67f32ab7293950c951ff10
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/FluxorOrg/Fluxor.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/FluxorOrg/Fluxor.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64 --target Fluxor
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-1EA4D86E10B52AF.txt
[4/5] Emitting module AnyCodable
[5/5] Compiling AnyCodable AnyCodable.swift
[6/17] Compiling Fluxor Store.swift
[7/18] Emitting module Fluxor
[8/18] Compiling Fluxor Action.swift
[9/18] Compiling Fluxor Effects.swift
[10/18] Compiling Fluxor Reducer.swift
[11/18] Compiling Fluxor ActionPublisher+WithIdentifier.swift
[12/18] Compiling Fluxor ActionPublisher+OfType.swift
[13/18] Compiling Fluxor StoreValue.swift
[14/18] Compiling Fluxor ActionPublisher+WasCreatedBy.swift
[15/18] Compiling Fluxor Selector.swift
[16/18] Compiling Fluxor Interceptor.swift
[17/18] Compiling Fluxor PrintInterceptor.swift
[18/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>
Build of target: 'Fluxor' complete! (7.73s)
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.