The Swift Package Index logo.Swift Package Index

Build Information

Successful build of evaluator, reference main (8ec5ea), with Swift 6.1 for Android on 19 Jan 2026 21:16:52 UTC.

Swift 6 data race errors: 1

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jaeggerr/evaluator.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/jaeggerr/evaluator
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 8ec5ea8 Add exists function
Cloned https://github.com/jaeggerr/evaluator.git
Revision (git rev-parse @):
8ec5ea8da8150494f7dbec231c1c973c424ec951
SUCCESS checkout https://github.com/jaeggerr/evaluator.git at main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/jaeggerr/evaluator.git
https://github.com/jaeggerr/evaluator.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "evaluator",
  "name" : "evaluator",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "Evaluator",
      "targets" : [
        "Evaluator"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EvaluatorTests",
      "module_type" : "SwiftTarget",
      "name" : "EvaluatorTests",
      "path" : "Tests/EvaluatorTests",
      "sources" : [
        "ExpressionEvaluatorTests.swift"
      ],
      "target_dependencies" : [
        "Evaluator"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Evaluator",
      "module_type" : "SwiftTarget",
      "name" : "Evaluator",
      "path" : "Sources/Evaluator",
      "product_memberships" : [
        "Evaluator"
      ],
      "sources" : [
        "ArgumentHelper.swift",
        "ArithmeticProtocols.swift",
        "ExpressionEvaluator+Functions.swift",
        "ExpressionEvaluator.swift",
        "Parser.swift",
        "Tokenizer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:59d1b5e7d2f3065c4a6b5e045771922b1e51742b0d69504dc6de4bec6728e3a4
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/9] Compiling Evaluator Tokenizer.swift
[4/9] Compiling Evaluator Parser.swift
[5/9] Compiling Evaluator ArgumentHelper.swift
[6/9] Emitting module Evaluator
/host/spi-builder-workspace/Sources/Evaluator/ExpressionEvaluator.swift:19:10: warning: associated value 'invalidArity' of 'Sendable'-conforming enum 'ExpressionError' has non-sendable type 'Arity'; this is an error in the Swift 6 language mode
 17 |     case functionNotFound(String)
 18 |     case missingOperand(String)
 19 |     case invalidArity(Arity)
    |          `- warning: associated value 'invalidArity' of 'Sendable'-conforming enum 'ExpressionError' has non-sendable type 'Arity'; this is an error in the Swift 6 language mode
 20 | }
 21 |
/host/spi-builder-workspace/Sources/Evaluator/ArgumentHelper.swift:11:13: note: consider making enum 'Arity' conform to the 'Sendable' protocol
  9 | ///
 10 | /// Used to enforce correct function argument counts when evaluating expressions.
 11 | public enum Arity: Equatable {
    |             `- note: consider making enum 'Arity' conform to the 'Sendable' protocol
 12 |     /// Specifies that the function must have exactly `n` arguments.
 13 |     case exactly(Int)
[7/9] Compiling Evaluator ArithmeticProtocols.swift
[8/9] Compiling Evaluator ExpressionEvaluator+Functions.swift
[9/9] Compiling Evaluator ExpressionEvaluator.swift
/host/spi-builder-workspace/Sources/Evaluator/ExpressionEvaluator.swift:19:10: warning: associated value 'invalidArity' of 'Sendable'-conforming enum 'ExpressionError' has non-sendable type 'Arity'; this is an error in the Swift 6 language mode
 17 |     case functionNotFound(String)
 18 |     case missingOperand(String)
 19 |     case invalidArity(Arity)
    |          `- warning: associated value 'invalidArity' of 'Sendable'-conforming enum 'ExpressionError' has non-sendable type 'Arity'; this is an error in the Swift 6 language mode
 20 | }
 21 |
/host/spi-builder-workspace/Sources/Evaluator/ArgumentHelper.swift:11:13: note: consider making enum 'Arity' conform to the 'Sendable' protocol
  9 | ///
 10 | /// Used to enforce correct function argument counts when evaluating expressions.
 11 | public enum Arity: Equatable {
    |             `- note: consider making enum 'Arity' conform to the 'Sendable' protocol
 12 |     /// Specifies that the function must have exactly `n` arguments.
 13 |     case exactly(Int)
Build complete! (9.79s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "evaluator",
  "name" : "evaluator",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "Evaluator",
      "targets" : [
        "Evaluator"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EvaluatorTests",
      "module_type" : "SwiftTarget",
      "name" : "EvaluatorTests",
      "path" : "Tests/EvaluatorTests",
      "sources" : [
        "ExpressionEvaluatorTests.swift"
      ],
      "target_dependencies" : [
        "Evaluator"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Evaluator",
      "module_type" : "SwiftTarget",
      "name" : "Evaluator",
      "path" : "Sources/Evaluator",
      "product_memberships" : [
        "Evaluator"
      ],
      "sources" : [
        "ArgumentHelper.swift",
        "ArithmeticProtocols.swift",
        "ExpressionEvaluator+Functions.swift",
        "ExpressionEvaluator.swift",
        "Parser.swift",
        "Tokenizer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:59d1b5e7d2f3065c4a6b5e045771922b1e51742b0d69504dc6de4bec6728e3a4
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.