Build Information
Successful build of Narratore, reference main (18a9cb), with Swift 6.3 for Android on 21 Apr 2026 18:15:52 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build 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 /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/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
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/broomburgo/Narratore.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--4F562202D5529B1.txt
[3/10] Compiling Narratore DSL.swift
[4/10] Emitting module Narratore
[5/10] Compiling Narratore Runner.swift
/host/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 | }
/host/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/10] Compiling Narratore ResultBuilders.swift
[7/10] Compiling Narratore Handler.swift
[8/11] Compiling Narratore Setting.swift
[9/11] Compiling Narratore Script.swift
[10/11] Compiling Narratore Step.swift
/host/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 |
/host/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)))
/host/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
/host/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: {
/host/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))
/host/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,
/host/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,
/host/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>
[11/11] Compiling Narratore Story.swift
Build complete! (7.35s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Narratore",
"name" : "Narratore",
"path" : "/host/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"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.