The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of HiveEngine, reference 3.1.4 (0fa54c), with Swift 6.2 (beta) for Linux on 18 Jun 2025 22:36:10 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/autoreleasefool/hive-engine.git
Reference: 3.1.4
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/autoreleasefool/hive-engine
 * tag               3.1.4      -> FETCH_HEAD
HEAD is now at 0fa54ca Move testing utilities into target
Cloned https://github.com/autoreleasefool/hive-engine.git
Revision (git rev-parse @):
0fa54ca24d7881d661119d97fe0867bd3bf72ff6
SUCCESS checkout https://github.com/autoreleasefool/hive-engine.git at 3.1.4
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/autoreleasefool/hive-engine.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/sharplet/Regex.git
[1/1254] Fetching regex
Fetched https://github.com/sharplet/Regex.git from cache (0.67s)
Computing version for https://github.com/sharplet/Regex.git
Computed https://github.com/sharplet/Regex.git at 2.1.1 (4.22s)
Creating working copy for https://github.com/sharplet/Regex.git
Working copy of https://github.com/sharplet/Regex.git resolved at 2.1.1
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/11] Compiling Regex Options.swift
[6/11] Compiling Regex ThreadLocal.swift
[7/11] Compiling Regex String+ReplaceMatching.swift
[8/11] Compiling Regex Foundation+Ranges.swift
[9/11] Compiling Regex MatchResult.swift
[10/11] Emitting module Regex
[11/11] Compiling Regex Regex.swift
[13/41] Compiling HiveEngine GameTypeString.swift
[14/41] Compiling HiveEngine MoveString.swift
[15/41] Compiling HiveEngine TurnString.swift
[16/41] Compiling HiveEngine FatalError.swift
[17/44] Emitting module HiveEngine
[18/44] Compiling HiveEngine PlayCommand.swift
[19/44] Compiling HiveEngine UHPCommand.swift
[20/44] Compiling HiveEngine UHPResult.swift
[21/44] Compiling HiveEngine UndoCommand.swift
[22/44] Compiling HiveEngine Unit+Hopper.swift
[23/44] Compiling HiveEngine Unit+LadyBug.swift
[24/44] Compiling HiveEngine Unit+Mosquito.swift
[25/44] Compiling HiveEngine Unit+PillBug.swift
[26/44] Compiling HiveEngine ValidMovesCommand.swift
[27/44] Compiling HiveEngine Engine.swift
[28/44] Compiling HiveEngine GameStateString.swift
[29/44] Compiling HiveEngine GameString.swift
[30/44] Compiling HiveEngine Position.swift
[31/44] Compiling HiveEngine RelativeMovement.swift
[32/44] Compiling HiveEngine Unit+Ant.swift
[33/44] Compiling HiveEngine Unit+Beetle.swift
[34/44] Compiling HiveEngine Unit+Queen.swift
[35/44] Compiling HiveEngine Unit+Spider.swift
[36/44] Compiling HiveEngine Unit.swift
[37/44] Compiling HiveEngine BestMoveCommand.swift
[38/44] Compiling HiveEngine InfoCommand.swift
[39/44] Compiling HiveEngine NewGameCommand.swift
[40/44] Compiling HiveEngine OptionsCommand.swift
[41/44] Compiling HiveEngine GameState+UHP.swift
[42/44] Compiling HiveEngine GameState.swift
[43/44] Compiling HiveEngine Movement.swift
[44/44] Compiling HiveEngine Player.swift
[46/55] Compiling HiveEngineTestUtilities GameStateProvider+Queen.swift
[47/56] Compiling HiveEngineTestUtilities GameStateProvider+PillBug.swift
[48/56] Compiling HiveEngineTestUtilities GameStateProvider+Mosquito.swift
[49/56] Compiling HiveEngineTestUtilities GameStateProvider+Hopper.swift
[50/56] Compiling HiveEngineTestUtilities GameStateProvider+LadyBug.swift
[51/56] Compiling HiveEngineTestUtilities GameStateProvider+Ant.swift
[52/56] Compiling HiveEngineTestUtilities GameStateProvider+Beetle.swift
[53/56] Emitting module HiveEngineTestUtilities
[54/56] Compiling HiveEngineTestUtilities GameStateProvider+Spider.swift
[55/56] Compiling HiveEngineTestUtilities GameStateProvider.swift
[56/56] Compiling HiveEngineTestUtilities HiveEngineTestCase.swift
/host/spi-builder-workspace/Sources/HiveEngineTestUtilities/HiveEngineTestCase.swift:122:60: warning: passing non-Sendable parameter 'testcase' to function expecting a '@Sendable' closure
110 | 	}
111 |
112 | 	public func XCTAssertFatalError(expectedMessage: String, testcase: @escaping () -> Void) {
    |                                                           `- note: parameter 'testcase' is implicitly non-Sendable
113 | 		let expectation = self.expectation(description: "expectingFatalError")
114 | 		var assertionMessage: String?
    :
120 | 		}
121 |
122 | 		DispatchQueue.global(qos: .userInitiated).async(execute: testcase)
    |                                                            `- warning: passing non-Sendable parameter 'testcase' to function expecting a '@Sendable' closure
123 |
124 | 		waitForExpectations(timeout: 2) { _ in
Build complete! (19.05s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "regex",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.1.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sharplet/Regex.git"
    }
  ],
  "manifest_display_name" : "HiveEngine",
  "name" : "HiveEngine",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.4"
    }
  ],
  "products" : [
    {
      "name" : "HiveEngine",
      "targets" : [
        "HiveEngine"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "HiveEngineTestUtilities",
      "targets" : [
        "HiveEngineTestUtilities"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HiveEngineTests",
      "module_type" : "SwiftTarget",
      "name" : "HiveEngineTests",
      "path" : "Tests/HiveEngineTests",
      "sources" : [
        "Engine/Commands/BestMoveCommandTests.swift",
        "Engine/Commands/InfoCommandTests.swift",
        "Engine/Commands/NewGameCommandTests.swift",
        "Engine/Commands/OptionsCommandTests.swift",
        "Engine/Commands/PlayCommandTests.swift",
        "Engine/Commands/UHPCommandParserTests.swift",
        "Engine/Commands/UndoCommandTests.swift",
        "Engine/Commands/ValidMovesCommandTests.swift",
        "Engine/EngineTests.swift",
        "Engine/Util/GameStringTests.swift",
        "Engine/Util/TurnStringTests.swift",
        "State/GameState+UHPTests.swift",
        "State/GameStateTests.swift",
        "State/MovementTests.swift",
        "State/PlayerTests.swift",
        "State/PositionTests.swift",
        "State/RelativeMovementTests.swift",
        "Unit/Unit+AntTests.swift",
        "Unit/Unit+BeetleTests.swift",
        "Unit/Unit+HopperTests.swift",
        "Unit/Unit+LadyBugTests.swift",
        "Unit/Unit+MosquitoTests.swift",
        "Unit/Unit+PillBugTests.swift",
        "Unit/Unit+QueenTests.swift",
        "Unit/Unit+SpiderTests.swift",
        "Unit/UnitTests.swift",
        "Validation/PerftTests.swift"
      ],
      "target_dependencies" : [
        "HiveEngine",
        "HiveEngineTestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HiveEngineTestUtilities",
      "module_type" : "SwiftTarget",
      "name" : "HiveEngineTestUtilities",
      "path" : "Sources/HiveEngineTestUtilities",
      "product_memberships" : [
        "HiveEngineTestUtilities"
      ],
      "sources" : [
        "GameStateProvider/GameStateProvider+Ant.swift",
        "GameStateProvider/GameStateProvider+Beetle.swift",
        "GameStateProvider/GameStateProvider+Hopper.swift",
        "GameStateProvider/GameStateProvider+LadyBug.swift",
        "GameStateProvider/GameStateProvider+Mosquito.swift",
        "GameStateProvider/GameStateProvider+PillBug.swift",
        "GameStateProvider/GameStateProvider+Queen.swift",
        "GameStateProvider/GameStateProvider+Spider.swift",
        "GameStateProvider/GameStateProvider.swift",
        "HiveEngineTestCase.swift"
      ],
      "target_dependencies" : [
        "HiveEngine"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HiveEngineBenchmarkTests",
      "module_type" : "SwiftTarget",
      "name" : "HiveEngineBenchmarkTests",
      "path" : "Tests/HiveEngineBenchmarkTests",
      "sources" : [
        "State/GameStateBenchmarkTests.swift",
        "State/PositionBenchmarkTests.swift",
        "Unit/BeetleBenchmarkTests.swift"
      ],
      "target_dependencies" : [
        "HiveEngine",
        "HiveEngineTestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HiveEngine",
      "module_type" : "SwiftTarget",
      "name" : "HiveEngine",
      "path" : "Sources/HiveEngine",
      "product_dependencies" : [
        "Regex"
      ],
      "product_memberships" : [
        "HiveEngine",
        "HiveEngineTestUtilities"
      ],
      "sources" : [
        "Engine/Commands/BestMoveCommand.swift",
        "Engine/Commands/InfoCommand.swift",
        "Engine/Commands/NewGameCommand.swift",
        "Engine/Commands/OptionsCommand.swift",
        "Engine/Commands/PlayCommand.swift",
        "Engine/Commands/UHPCommand.swift",
        "Engine/Commands/UHPResult.swift",
        "Engine/Commands/UndoCommand.swift",
        "Engine/Commands/ValidMovesCommand.swift",
        "Engine/Engine.swift",
        "Engine/Util/GameStateString.swift",
        "Engine/Util/GameString.swift",
        "Engine/Util/GameTypeString.swift",
        "Engine/Util/MoveString.swift",
        "Engine/Util/TurnString.swift",
        "Extensions/FatalError.swift",
        "State/GameState+UHP.swift",
        "State/GameState.swift",
        "State/Movement.swift",
        "State/Player.swift",
        "State/Position.swift",
        "State/RelativeMovement.swift",
        "Unit/Unit+Ant.swift",
        "Unit/Unit+Beetle.swift",
        "Unit/Unit+Hopper.swift",
        "Unit/Unit+LadyBug.swift",
        "Unit/Unit+Mosquito.swift",
        "Unit/Unit+PillBug.swift",
        "Unit/Unit+Queen.swift",
        "Unit/Unit+Spider.swift",
        "Unit/Unit.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.