The Swift Package Index logo.Swift Package Index

Build Information

Successful build of BooleanExpressionEvaluation, reference 2.0.1 (0af945), with Swift 6.3 for macOS (SPM) on 12 Apr 2026 04:23:28 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/ABridoux/BooleanExpressionEvaluation.git
Reference: 2.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ABridoux/BooleanExpressionEvaluation
 * tag               2.0.1      -> FETCH_HEAD
HEAD is now at 0af945f Merge pull request #56 from ABridoux/release/2.0.1
Cloned https://github.com/ABridoux/BooleanExpressionEvaluation.git
Revision (git rev-parse @):
0af945fffa42447e455620ccaaa26d80528e3884
SUCCESS checkout https://github.com/ABridoux/BooleanExpressionEvaluation.git at 2.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": "booleanexpressionevaluation",
      "name": "BooleanExpressionEvaluation",
      "url": "https://github.com/ABridoux/BooleanExpressionEvaluation.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/BooleanExpressionEvaluation",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/ABridoux/BooleanExpressionEvaluation.git
[1/541] Fetching booleanexpressionevaluation
Fetched https://github.com/ABridoux/BooleanExpressionEvaluation.git from cache (1.19s)
Creating working copy for https://github.com/ABridoux/BooleanExpressionEvaluation.git
Working copy of https://github.com/ABridoux/BooleanExpressionEvaluation.git resolved at 2.0.1 (0af945f)
warning: '.resolve-product-dependencies': dependency 'booleanexpressionevaluation' 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/ABridoux/BooleanExpressionEvaluation.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/17] Compiling BooleanExpressionEvaluation LogicPrefixOperator.swift
[4/17] Compiling BooleanExpressionEvaluation Operator.swift
[5/17] Compiling BooleanExpressionEvaluation ExpressionEvaluator.swift
[6/17] Compiling BooleanExpressionEvaluation HalfBooleanExpression.swift
[7/17] Compiling BooleanExpressionEvaluation NSRegularExpression+Extensions.swift
[8/17] Compiling BooleanExpressionEvaluation Array+Extensions.swift
[9/17] Compiling BooleanExpressionEvaluation Optional+Extensions.swift
[10/17] Compiling BooleanExpressionEvaluation BooleanExpressionTokenizator.swift
[11/17] Compiling BooleanExpressionEvaluation Expression.swift
[12/17] Emitting module BooleanExpressionEvaluation
[13/17] Compiling BooleanExpressionEvaluation ExpressionElement.swift
[14/17] Compiling BooleanExpressionEvaluation ExpressionError.swift
[15/17] Compiling BooleanExpressionEvaluation LogicInfixOperator.swift
[16/17] Compiling BooleanExpressionEvaluation LogicOperator.swift
[17/17] Compiling BooleanExpressionEvaluation OperatorProtocol.swift
[18/18] Compiling BooleanExpressionEvaluation String+Extensions.swift
Build complete! (5.65s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "BooleanExpressionEvaluation",
  "name" : "BooleanExpressionEvaluation",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "BooleanExpressionEvaluation",
      "targets" : [
        "BooleanExpressionEvaluation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BooleanExpressionEvaluationTests",
      "module_type" : "SwiftTarget",
      "name" : "BooleanExpressionEvaluationTests",
      "path" : "Tests/BooleanExpressionEvaluationTests",
      "sources" : [
        "Expression/BooleanExpressionTokenizorTests.swift",
        "Expression/BooleanExpressionTokenizorTestsIntegration.swift",
        "Expression/ExpressionElementTests.swift",
        "Expression/ExpressionEvaluatorTests.swift",
        "Expression/ExpressionEvaluatorTestsIntegration.swift",
        "Expression/ExpressionTests.swift",
        "StringExtensionsTests.swift",
        "VariablePatternTestsIntegration.swift",
        "XCTest+Extensions.swift"
      ],
      "target_dependencies" : [
        "BooleanExpressionEvaluation"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BooleanExpressionEvaluation",
      "module_type" : "SwiftTarget",
      "name" : "BooleanExpressionEvaluation",
      "path" : "Sources/BooleanExpressionEvaluation",
      "product_memberships" : [
        "BooleanExpressionEvaluation"
      ],
      "sources" : [
        "Expression/BooleanExpressionTokenizator.swift",
        "Expression/Expression.swift",
        "Expression/ExpressionElement.swift",
        "Expression/ExpressionError.swift",
        "Expression/ExpressionEvaluator.swift",
        "Expression/HalfBooleanExpression.swift",
        "Expression/Operator/LogicInfixOperator.swift",
        "Expression/Operator/LogicOperator.swift",
        "Expression/Operator/LogicPrefixOperator.swift",
        "Expression/Operator/Operator.swift",
        "Expression/Operator/OperatorProtocol.swift",
        "Extensions/Array+Extensions.swift",
        "Extensions/NSRegularExpression+Extensions.swift",
        "Extensions/Optional+Extensions.swift",
        "Extensions/String+Extensions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.