The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Narratore, reference main (18a9cb), with Swift 6.3 for macOS (SPM) on 15 Apr 2026 13:09:05 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/broomburgo/Narratore.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/broomburgo/Narratore
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 18a9cb4 Strict concurrency checking + several improvements (#2)
Cloned https://github.com/broomburgo/Narratore.git
Revision (git rev-parse @):
18a9cb486e1b2e0d9a1239ba74736cdd588a2ac1
SUCCESS checkout https://github.com/broomburgo/Narratore.git at main
========================================
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": "narratore",
      "name": "Narratore",
      "url": "https://github.com/broomburgo/Narratore.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Narratore",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/broomburgo/Narratore.git
[1/417] Fetching narratore
Fetched https://github.com/broomburgo/Narratore.git from cache (1.10s)
Creating working copy for https://github.com/broomburgo/Narratore.git
Working copy of https://github.com/broomburgo/Narratore.git resolved at main (18a9cb4)
warning: '.resolve-product-dependencies': dependency 'narratore' 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/broomburgo/Narratore.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/11] Compiling Narratore Script.swift
[4/11] Compiling Narratore DSL.swift
[5/11] Compiling Narratore Runner.swift
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Runner.swift:157:27: warning: capture of non-Sendable type 'Game.Generate.Type' in an isolated closure [#SendableMetatypes]
155 |
156 |   init() {
157 |     randomRatio = { await Game.Generate.randomRatio() }
    |                           `- warning: capture of non-Sendable type 'Game.Generate.Type' in an isolated closure [#SendableMetatypes]
158 |     uniqueString = { await Game.Generate.uniqueString() }
159 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Runner.swift:158:28: warning: capture of non-Sendable type 'Game.Generate.Type' in an isolated closure [#SendableMetatypes]
156 |   init() {
157 |     randomRatio = { await Game.Generate.randomRatio() }
158 |     uniqueString = { await Game.Generate.uniqueString() }
    |                            `- warning: capture of non-Sendable type 'Game.Generate.Type' in an isolated closure [#SendableMetatypes]
159 |   }
160 | }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[6/11] Compiling Narratore Story.swift
[7/11] Emitting module Narratore
[8/11] Compiling Narratore ResultBuilders.swift
[9/11] Compiling Narratore Handler.swift
[10/11] Compiling Narratore Setting.swift
[11/11] Compiling Narratore Step.swift
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Step.swift:35:22: warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
 33 | extension Step {
 34 |   public static var skip: Self {
 35 |     .init { _, _ in .advance(nil) }
    |                      `- warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
 36 |   }
 37 |
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Step.swift:40:46: warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
 38 |   public init(choice: Choice<Game>) {
 39 |     self.init { info, handling in
 40 |       guard let firstOption = choice.options.first else {
    |                                              `- warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
 41 |         if choice.config.failIfNoOptions {
 42 |           handling.handle(event: .errorProduced(.noOptions(choice: choice)))
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Step.swift:54:15: warning: capture of non-Sendable type 'Game.Generate.Type' in an isolated closure [#SendableMetatypes]
 52 |       for option in choice.options {
 53 |         await playerOptions.append(.init(
 54 |           id: Game.Generate.uniqueString(),
    |               `- warning: capture of non-Sendable type 'Game.Generate.Type' in an isolated closure [#SendableMetatypes]
 55 |           message: option.message,
 56 |           tags: option.tags
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Step.swift:97:18: warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
 95 |   public init(textRequest: TextRequest<Game>) {
 96 |     self.init { info, handling in
 97 |       let next = await handling.answer(request: .init(
    |                  `- warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
 98 |         message: textRequest.message,
 99 |         validate: {
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Step.swift:100:11: warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
 98 |         message: textRequest.message,
 99 |         validate: {
100 |           switch textRequest.validate($0) {
    |           `- warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
101 |           case .valid(let validated):
102 |             .valid(.init(value: validated.text))
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Step.swift:133:36: warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
131 |   public init(narration: Narration<Game>) {
132 |     self.init { info, handling in
133 |       let next: Next<Game, Void> = if !narration.messages.isEmpty || !narration.tags.isEmpty {
    |                                    `- warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
134 |         await handling.acknowledge(narration: .init(
135 |           messages: narration.messages,
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Step.swift:162:36: warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
160 |   public init(jump: Jump<Game>) {
161 |     self.init { info, handling in
162 |       let next: Next<Game, Void> = if !jump.narration.messages.isEmpty || !jump.narration.tags.isEmpty {
    |                                    `- warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
163 |         await handling.acknowledge(narration: .init(
164 |           messages: jump.narration.messages,
/Users/admin/builder/spi-builder-workspace/Sources/Narratore/Step.swift:191:21: warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
189 |   public init(update: @escaping Update<Game>) {
190 |     self.init { info, _ in
191 |       await update(&info.world)
    |                     `- warning: capture of non-Sendable type 'Game.Type' in an isolated closure [#SendableMetatypes]
192 |       return .advance(nil)
193 |     }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
Build complete! (1.09s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Narratore",
  "name" : "Narratore",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Narratore",
      "targets" : [
        "Narratore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NarratoreTests",
      "module_type" : "SwiftTarget",
      "name" : "NarratoreTests",
      "path" : "Tests/NarratoreTests",
      "sources" : [
        "NarratoreTests.swift",
        "TestValuesAndMocks.swift"
      ],
      "target_dependencies" : [
        "Narratore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Narratore",
      "module_type" : "SwiftTarget",
      "name" : "Narratore",
      "path" : "Sources/Narratore",
      "product_memberships" : [
        "Narratore"
      ],
      "sources" : [
        "DSL.swift",
        "Handler.swift",
        "ResultBuilders.swift",
        "Runner.swift",
        "Script.swift",
        "Setting.swift",
        "Step.swift",
        "Story.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.