The Swift Package Index logo.Swift Package Index

Build Information

Successful build of MazeAlgorithms, reference 0.5.4 (82cf4e), with Swift 6.2 for macOS (SPM) on 9 Nov 2025 20:10:12 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swiftyaf/MazeAlgorithms.git
Reference: 0.5.4
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/swiftyaf/MazeAlgorithms
 * tag               0.5.4      -> FETCH_HEAD
HEAD is now at 82cf4ec Expose masked cells
Cloned https://github.com/swiftyaf/MazeAlgorithms.git
Revision (git rev-parse @):
82cf4ecebbe96c650a9063ff1518541389d69cdc
SUCCESS checkout https://github.com/swiftyaf/MazeAlgorithms.git at 0.5.4
========================================
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",
  "dependencies": [
    {
      "identity": "mazealgorithms",
      "name": "MazeAlgorithms",
      "url": "https://github.com/swiftyaf/MazeAlgorithms.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/MazeAlgorithms",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/swiftyaf/MazeAlgorithms.git
[1/787] Fetching mazealgorithms
Fetched https://github.com/swiftyaf/MazeAlgorithms.git from cache (0.93s)
Creating working copy for https://github.com/swiftyaf/MazeAlgorithms.git
Working copy of https://github.com/swiftyaf/MazeAlgorithms.git resolved at 0.5.4 (82cf4ec)
warning: '.resolve-product-dependencies': dependency 'mazealgorithms' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/swiftyaf/MazeAlgorithms.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-49B95AFC49DCD68C.txt
[3/22] Compiling MazeAlgorithms ModifiedPrimMazeGenerator.swift
[4/22] Compiling MazeAlgorithms PrimMazeGenerator.swift
[5/22] Compiling MazeAlgorithms MazeGeneratorError.swift
[6/22] Compiling MazeAlgorithms MazeSolver.swift
[7/22] Compiling MazeAlgorithms GrowingTreeMazeGenerator.swift
[8/22] Compiling MazeAlgorithms HunterKillerMazeGenerator.swift
[9/24] Emitting module MazeAlgorithms
[10/24] Compiling MazeAlgorithms WilsonMazeGenerator.swift
[11/24] Compiling MazeAlgorithms MazeAlgorithmsFacade.swift
[12/24] Compiling MazeAlgorithms RecursiveBacktrackerMazeGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MazeAlgorithms/Algorithms/RecursiveDivisionMazeGenerator.swift:31:13: warning: variable 'current' was never mutated; consider changing to 'let' constant
 29 |
 30 |     public func generateStep() -> (generated: [Cell], evaluating: [Cell])? {
 31 |         var current: [Cell] = []
    |             `- warning: variable 'current' was never mutated; consider changing to 'let' constant
 32 |         var next: [Cell] = []
 33 |
[13/24] Compiling MazeAlgorithms RecursiveDivisionMazeGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MazeAlgorithms/Algorithms/RecursiveDivisionMazeGenerator.swift:31:13: warning: variable 'current' was never mutated; consider changing to 'let' constant
 29 |
 30 |     public func generateStep() -> (generated: [Cell], evaluating: [Cell])? {
 31 |         var current: [Cell] = []
    |             `- warning: variable 'current' was never mutated; consider changing to 'let' constant
 32 |         var next: [Cell] = []
 33 |
[14/24] Compiling MazeAlgorithms SidewinderMazeGenerator.swift
[15/24] Compiling MazeAlgorithms SimplifiedPrimMazeGenerator.swift
[16/24] Compiling MazeAlgorithms KruskalsMazeGenerator.swift
[17/24] Compiling MazeAlgorithms MazeGenerating.swift
[18/24] Compiling MazeAlgorithms Cell.swift
[19/24] Compiling MazeAlgorithms Direction.swift
[20/24] Compiling MazeAlgorithms AldousBroderMazeGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MazeAlgorithms/Algorithms/EllersMazeGenerator.swift:69:17: warning: initialization of variable 'rowState' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 67 |             currentRow = 0
 68 |             currentCol = 0
 69 |             var rowState = RowState()
    |                 `- warning: initialization of variable 'rowState' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 70 |         }
 71 |
[21/24] Compiling MazeAlgorithms BinaryTreeMazeGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MazeAlgorithms/Algorithms/EllersMazeGenerator.swift:69:17: warning: initialization of variable 'rowState' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 67 |             currentRow = 0
 68 |             currentCol = 0
 69 |             var rowState = RowState()
    |                 `- warning: initialization of variable 'rowState' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 70 |         }
 71 |
[22/24] Compiling MazeAlgorithms EllersMazeGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MazeAlgorithms/Algorithms/EllersMazeGenerator.swift:69:17: warning: initialization of variable 'rowState' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 67 |             currentRow = 0
 68 |             currentCol = 0
 69 |             var rowState = RowState()
    |                 `- warning: initialization of variable 'rowState' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 70 |         }
 71 |
[23/24] Compiling MazeAlgorithms Grid.swift
[24/24] Compiling MazeAlgorithms Position.swift
Build complete! (8.88s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "MazeAlgorithms",
  "name" : "MazeAlgorithms",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "18.0"
    },
    {
      "name" : "macos",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "MazeAlgorithms",
      "targets" : [
        "MazeAlgorithms"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MazeAlgorithmsTests",
      "module_type" : "SwiftTarget",
      "name" : "MazeAlgorithmsTests",
      "path" : "Tests/MazeAlgorithmsTests",
      "sources" : [
        "MazeAlgorithmsTests.swift"
      ],
      "target_dependencies" : [
        "MazeAlgorithms"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MazeAlgorithms",
      "module_type" : "SwiftTarget",
      "name" : "MazeAlgorithms",
      "path" : "Sources/MazeAlgorithms",
      "product_memberships" : [
        "MazeAlgorithms"
      ],
      "sources" : [
        "Algorithms/AldousBroderMazeGenerator.swift",
        "Algorithms/BinaryTreeMazeGenerator.swift",
        "Algorithms/EllersMazeGenerator.swift",
        "Algorithms/GrowingTreeMazeGenerator.swift",
        "Algorithms/HunterKillerMazeGenerator.swift",
        "Algorithms/KruskalsMazeGenerator.swift",
        "Algorithms/MazeGenerating.swift",
        "Algorithms/ModifiedPrimMazeGenerator.swift",
        "Algorithms/PrimMazeGenerator.swift",
        "Algorithms/RecursiveBacktrackerMazeGenerator.swift",
        "Algorithms/RecursiveDivisionMazeGenerator.swift",
        "Algorithms/SidewinderMazeGenerator.swift",
        "Algorithms/SimplifiedPrimMazeGenerator.swift",
        "Algorithms/WilsonMazeGenerator.swift",
        "MazeAlgorithmsFacade.swift",
        "MazeGeneratorError.swift",
        "MazeSolver.swift",
        "Model/Cell.swift",
        "Model/Direction.swift",
        "Model/Grid.swift",
        "Model/Position.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.