The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Macaroni, reference main (015ba4), with Swift 6.3 for macOS (SPM) on 21 Apr 2026 19:26:59 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/bealex/Macaroni.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/bealex/Macaroni
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 015ba44 Added information about locking in the README
Cloned https://github.com/bealex/Macaroni.git
Revision (git rev-parse @):
015ba440cca1842e653b3b14d108738fb0caff2d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/bealex/Macaroni.git at main
========================================
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": "macaroni",
      "name": "Macaroni",
      "url": "https://github.com/bealex/Macaroni.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Macaroni",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/bealex/Macaroni.git
[1/812] Fetching macaroni
Fetched https://github.com/bealex/Macaroni.git from cache (0.84s)
Creating working copy for https://github.com/bealex/Macaroni.git
Working copy of https://github.com/bealex/Macaroni.git resolved at main (015ba44)
warning: '.resolve-product-dependencies': dependency 'macaroni' 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/bealex/Macaroni.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/12] Compiling Macaroni Macaroni.swift
[4/12] Compiling Macaroni ContainerableLookupPolicy.swift
[5/12] Compiling Macaroni InjectedWeakly.swift
[6/12] Compiling Macaroni Injected.swift
[7/12] Compiling Macaroni MacaroniLogger.swift
[8/13] Compiling Macaroni SingletonContainerLookupPolicy.swift
[9/13] Compiling Macaroni ContainerLookupPolicy.swift
[10/13] Compiling Macaroni ContainerLookupPolicy+Resolve.swift
[11/13] Emitting module Macaroni
[12/13] Compiling Macaroni Container.swift
/Users/admin/builder/spi-builder-workspace/Sources/Container.swift:106:17: warning: initialization of immutable value 'objectId' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
104 |     public func isResolvable<D>(_ type: D.Type, alternative: String? = nil) -> Bool {
105 |         queue.sync {
106 |             let objectId = ObjectIdentifier(type)
    |                 `- warning: initialization of immutable value 'objectId' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
107 |             return parametrizedResolver(ObjectIdentifier(type), alternative: alternative) != nil ||
108 |                     resolver(ObjectIdentifier(type), alternative: alternative) != nil || (parent?.isResolvable(type) ?? false)
[13/13] Compiling Macaroni RegistrationAlternative.swift
Build complete! (4.82s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Macaroni",
  "name" : "Macaroni",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    }
  ],
  "products" : [
    {
      "name" : "Macaroni",
      "targets" : [
        "Macaroni"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "MacaroniTests",
      "module_type" : "SwiftTarget",
      "name" : "MacaroniTests",
      "path" : "Tests/MacaroniTests",
      "sources" : [
        "Tests/AlternativeTests.swift",
        "Tests/ContainerFindPolicyTests.swift",
        "Tests/ContainerResolveSpeedTests.swift",
        "Tests/ContainerSelectorTests.swift",
        "Tests/InjectedAsParameterTests.swift",
        "Tests/InjectedEagerTests.swift",
        "Tests/InjectedLazyTests.swift",
        "Tests/InjectedMultithreadedProblemsTests.swift",
        "Tests/InjectedTests.swift",
        "Tests/InjectedWeaklyTests.swift",
        "Tests/ParentContainerTests.swift",
        "Tests/SimpleContainerTests.swift",
        "Tests/SimpleContainerWithParameterTests.swift",
        "WaitForDeathTrap.swift"
      ],
      "target_dependencies" : [
        "Macaroni"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Macaroni",
      "module_type" : "SwiftTarget",
      "name" : "Macaroni",
      "path" : "Sources",
      "product_memberships" : [
        "Macaroni"
      ],
      "sources" : [
        "Container.swift",
        "ContainerLookupPolicies/ContainerLookupPolicy+Resolve.swift",
        "ContainerLookupPolicies/ContainerableLookupPolicy.swift",
        "ContainerLookupPolicies/SingletonContainerLookupPolicy.swift",
        "ContainerLookupPolicy.swift",
        "Logging/MacaroniLogger.swift",
        "Macaroni.swift",
        "PropertyWrappers/Injected.swift",
        "PropertyWrappers/InjectedWeakly.swift",
        "RegistrationAlternative.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Done.