Build Information
Successful build of Macaroni, reference v5.0.1 (015ba4), with Swift 6.2 for Android on 24 Jun 2025 03:19:07 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/bealex/Macaroni.git
Reference: v5.0.1
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/bealex/Macaroni
* tag v5.0.1 -> FETCH_HEAD
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 v5.0.1
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/bealex/Macaroni.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/12] Compiling Macaroni MacaroniLogger.swift
[4/13] Compiling Macaroni Injected.swift
[5/13] Compiling Macaroni InjectedWeakly.swift
[6/13] Compiling Macaroni Macaroni.swift
[7/13] Compiling Macaroni RegistrationAlternative.swift
[8/13] Compiling Macaroni ContainerableLookupPolicy.swift
[9/13] Compiling Macaroni SingletonContainerLookupPolicy.swift
[10/13] Emitting module Macaroni
[11/13] Compiling Macaroni ContainerLookupPolicy.swift
[12/13] Compiling Macaroni Container.swift
/host/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 ContainerLookupPolicy+Resolve.swift
/host/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)
Build complete! (12.09s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Macaroni",
"name" : "Macaroni",
"path" : "/host/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"
}
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Done.