The Swift Package Index logo.Swift Package Index

Build Information

Successful build of GameCenterManager, reference main (3fabd4), with Swift 6.2 for macOS (SPM) on 24 Jun 2025 01:37:21 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Appracatappra/GameCenterManager.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Appracatappra/GameCenterManager
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 3fabd41 Updated to v6.0
Cloned https://github.com/Appracatappra/GameCenterManager.git
Revision (git rev-parse @):
3fabd415721691303a1f705ad34320b5e7d6ef0c
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Appracatappra/GameCenterManager.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/Appracatappra/GameCenterManager.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[1/7] Copying PrivacyInfo.xcprivacy
[1/7] Write sources
[3/7] Copying PrivacyInfo.xcprivacy
[3/7] Write sources
[6/7] Write swift-version-1EA4D86E10B52AF.txt
[8/11] Compiling LogManager resource_bundle_accessor.swift
[9/11] Compiling LogManager DebugLogger.swift
[10/11] Emitting module LogManager
[11/11] Compiling LogManager ReleaseLogger.swift
[12/36] Emitting module SwiftletUtilities
[13/36] Compiling SwiftletUtilities ArrayExtensions.swift
[14/36] Compiling SwiftletUtilities ColorExtentions.swift
[15/36] Compiling SwiftletUtilities DoubleExtensions.swift
[16/38] Compiling SwiftletUtilities StringExtensions.swift
[17/38] Compiling SwiftletUtilities TitleCase.swift
[18/38] Compiling SwiftletUtilities ViewExtensions.swift
[19/38] Compiling SwiftletUtilities ImageExtensions.swift
[20/38] Compiling SwiftletUtilities IntegerExtensions.swift
[21/38] Compiling SwiftletUtilities PublishedExtensions.swift
[22/38] Compiling SwiftletUtilities iOS ViewExtensions.swift
[23/38] Compiling SwiftletUtilities UIDeviceOrientation.swift
[24/38] Compiling SwiftletUtilities AppleHardwareType.swift
[25/38] Compiling SwiftletUtilities HardwareInformation.swift
[26/38] Compiling SwiftletUtilities Execute.swift
[27/38] Compiling SwiftletUtilities macOS DataExtensions.swift
[28/38] Compiling SwiftletUtilities macOS ImageExtensions.swift
[29/38] Compiling SwiftletUtilities UIApplicationExtensions.swift
[30/38] Compiling SwiftletUtilities ViewDeviceRotation.swift
[31/38] Compiling SwiftletUtilities iOS DataExtensions.swift
[32/38] Compiling SwiftletUtilities HTMLEntity.swift
[33/38] Compiling SwiftletUtilities NetworkConnection.swift
[34/38] Compiling SwiftletUtilities ObfuscationProvider.swift
[35/38] Compiling SwiftletUtilities iOS ImageExtensions.swift
[36/38] Compiling SwiftletUtilities iOS StringExtensions.swift
[37/38] Compiling SwiftletUtilities macOS StringExtensions.swift
[38/38] Compiling SwiftletUtilities resource_bundle_accessor.swift
[39/42] Compiling GameCenterManager resource_bundle_accessor.swift
[40/42] Emitting module GameCenterManager
[41/42] Compiling GameCenterManager GameCenterManager.swift
[42/42] Compiling GameCenterManager MultiplayerGameManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/GameCenterManager/MultiplayerGameManager.swift:451:19: warning: value 'encoder' was defined but never used; consider replacing with boolean test [#no-usage]
449 |
450 |         // Ensure an encoder was attached.
451 |         guard let encoder = GameCenterManager.shared.gameStateEncoder else {
    |                   `- warning: value 'encoder' was defined but never used; consider replacing with boolean test [#no-usage]
452 |             return
453 |         }
/Users/admin/builder/spi-builder-workspace/Sources/GameCenterManager/MultiplayerGameManager.swift:522:40: warning: capture of 'completed' with non-sendable type 'MultiplayerGameManager.LoadGameDataCompletionHandler?' (aka 'Optional<(Bool) -> ()>') in a '@Sendable' closure [#SendableClosureCaptures]
520 |                 if let error = error {
521 |                     Log.error(subsystem: "Game Center", category: "startNewGame", "Saving match data error: \(error)")
522 |                     if let completed = completed {
    |                                        |- warning: capture of 'completed' with non-sendable type 'MultiplayerGameManager.LoadGameDataCompletionHandler?' (aka 'Optional<(Bool) -> ()>') in a '@Sendable' closure [#SendableClosureCaptures]
    |                                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
523 |                         completed(false)
524 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/GameCenterManager/MultiplayerGameManager.swift:559:36: warning: capture of 'completed' with non-sendable type 'MultiplayerGameManager.LoadGameDataCompletionHandler?' (aka 'Optional<(Bool) -> ()>') in a '@Sendable' closure [#SendableClosureCaptures]
557 |             if let error = error {
558 |                 Log.error(subsystem: "Game Center", category: "loadMatch", "Loading match data error: \(error)")
559 |                 if let completed = completed {
    |                                    |- warning: capture of 'completed' with non-sendable type 'MultiplayerGameManager.LoadGameDataCompletionHandler?' (aka 'Optional<(Bool) -> ()>') in a '@Sendable' closure [#SendableClosureCaptures]
    |                                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
560 |                     completed(false)
561 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/GameCenterManager/MultiplayerGameManager.swift:566:20: warning: capture of 'decoder' with non-sendable type 'GameCenterManager.GameStateDecoder' (aka '(Data) -> Bool') in a '@Sendable' closure [#SendableClosureCaptures]
564 |
565 |             if let data {
566 |                 if decoder(data) {
    |                    |- warning: capture of 'decoder' with non-sendable type 'GameCenterManager.GameStateDecoder' (aka '(Data) -> Bool') in a '@Sendable' closure [#SendableClosureCaptures]
    |                    `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
567 |                     if let completed = completed {
568 |                         completed(true)
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
Build complete! (13.40s)
Fetching https://github.com/Appracatappra/SwiftletUtilities
Fetching https://github.com/Appracatappra/LogManager
[1/512] Fetching swiftletutilities
[206/596] Fetching swiftletutilities, logmanager
Fetched https://github.com/Appracatappra/LogManager from cache (0.69s)
[210/512] Fetching swiftletutilities
Fetched https://github.com/Appracatappra/SwiftletUtilities from cache (0.90s)
Computing version for https://github.com/Appracatappra/LogManager
Computed https://github.com/Appracatappra/LogManager at 2.0.4 (1.31s)
Computing version for https://github.com/Appracatappra/SwiftletUtilities
Computed https://github.com/Appracatappra/SwiftletUtilities at 2.0.6 (0.38s)
Creating working copy for https://github.com/Appracatappra/SwiftletUtilities
Working copy of https://github.com/Appracatappra/SwiftletUtilities resolved at 2.0.6
Creating working copy for https://github.com/Appracatappra/LogManager
Working copy of https://github.com/Appracatappra/LogManager resolved at 2.0.4
Build complete.
{
  "dependencies" : [
    {
      "identity" : "logmanager",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Appracatappra/LogManager"
    },
    {
      "identity" : "swiftletutilities",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Appracatappra/SwiftletUtilities"
    }
  ],
  "manifest_display_name" : "GameCenterManager",
  "name" : "GameCenterManager",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "18.0"
    },
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "18.0"
    },
    {
      "name" : "watchos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "GameCenterManager",
      "targets" : [
        "GameCenterManager"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "GameCenterManagerTests",
      "module_type" : "SwiftTarget",
      "name" : "GameCenterManagerTests",
      "path" : "Tests/GameCenterManagerTests",
      "sources" : [
        "GameCenterManagerTests.swift"
      ],
      "target_dependencies" : [
        "GameCenterManager"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GameCenterManager",
      "module_type" : "SwiftTarget",
      "name" : "GameCenterManager",
      "path" : "Sources/GameCenterManager",
      "product_dependencies" : [
        "LogManager",
        "SwiftletUtilities"
      ],
      "product_memberships" : [
        "GameCenterManager"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/GameCenterManager/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "GameCenterManager.swift",
        "MultiplayerGameManager.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
Done.