Build Information
Successful build of Cleanse, reference master (ad53ff
), with Swift 6.2 (beta) for Android on 19 Jun 2025 01:48:19 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/square/Cleanse.git
Reference: master
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/square/Cleanse
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at ad53ff6 Update README to include deprecation notice
Cloned https://github.com/square/Cleanse.git
Revision (git rev-parse @):
ad53ff66244350df042c4ffb15eb9a85462bdae8
SUCCESS checkout https://github.com/square/Cleanse.git at master
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/square/Cleanse.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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/56] Emitting module Cleanse
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[4/63] Compiling Cleanse ScopedBinder.swift
[5/63] Compiling Cleanse ScopedBindingBuilder.swift
[6/63] Compiling Cleanse ScopedBindingDecorator.swift
[7/63] Compiling Cleanse ScopedModule.swift
[8/63] Compiling Cleanse ScopedProvider.swift
[9/63] Compiling Cleanse SingularCollectionBindingBuilderDecorator.swift
[10/63] Compiling Cleanse SourceLocation.swift
[11/63] Compiling Cleanse TaggedBindingBuilderDecorator.swift
[12/63] Compiling Cleanse TaggedProvider.swift
[13/63] Compiling Cleanse Tags.swift
[14/63] Compiling Cleanse TypeKeyProtocol.swift
[15/63] Compiling Cleanse ValidationVisitor.swift
[16/63] Compiling Cleanse WeakProvider.swift
[17/63] Compiling Cleanse WrappedBinder.swift
[18/63] Compiling Cleanse PropertyInjector.swift
[19/63] Compiling Cleanse Provider.swift
[20/63] Compiling Cleanse ProviderProvider.swift
[21/63] Compiling Cleanse RawProviderBinding.swift
[22/63] Compiling Cleanse ReceiptBinder.swift
[23/63] Compiling Cleanse RootComponent.swift
[24/63] Compiling Cleanse Scope.swift
[25/63] Compiling Cleanse ComponentFactory.swift
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[26/63] Compiling Cleanse ComponentVisitor.swift
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[27/63] Compiling Cleanse DelegatedHashable.swift
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[28/63] Compiling Cleanse Errors.swift
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[29/63] Compiling Cleanse Factory.swift
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[30/63] Compiling Cleanse Finalizable.swift
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[31/63] Compiling Cleanse Graph.swift
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[32/63] Compiling Cleanse Installer.swift
/host/spi-builder-workspace/Cleanse/ComponentVisitor.swift:19:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
17 | }
18 |
19 | protocol ComponentVisitor : class, BinderBase {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
20 | /// Used to track state for binder
21 | var visitorState: VisitorState<Self> { get set }
/host/spi-builder-workspace/Cleanse/Errors.swift:57:9: warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
55 | public struct MissingProvider : CleanseError {
56 | /// The types that depend on the requested type
57 | let requests: [ProviderRequestDebugInfo]
| `- warning: stored property 'requests' of 'Sendable'-conforming struct 'MissingProvider' has non-sendable type '[ProviderRequestDebugInfo]'
58 |
59 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:107:9: warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
105 | public struct DependencyCycle : CleanseError {
106 | /// The types that depend on the requested type
107 | let requirementStack: [ProviderRequestDebugInfo]
| `- warning: stored property 'requirementStack' of 'Sendable'-conforming struct 'DependencyCycle' has non-sendable type '[ProviderRequestDebugInfo]'
108 |
109 | /// The type that was requested
/host/spi-builder-workspace/Cleanse/Errors.swift:138:9: warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
136 | /// Error used to indicate that two components contain each other that have the same scope
137 | public struct InvalidScopeNesting : CleanseError {
138 | let scope: Scope.Type
| `- warning: stored property 'scope' of 'Sendable'-conforming struct 'InvalidScopeNesting' has non-sendable type 'any Scope.Type'
139 |
140 | let innerComponent: Any.Type
[33/63] Compiling Cleanse AnyBinder.swift
[34/63] Compiling Cleanse Assisted.swift
[35/63] Compiling Cleanse AssistedFactory.swift
[36/63] Compiling Cleanse AssistedInjection.swift
[37/63] Compiling Cleanse AssistedInjectionArities.swift
[38/63] Compiling Cleanse AssistedInjectionBuilder.swift
[39/63] Compiling Cleanse AssistedInjectionSeedDecorator.swift
[40/63] Compiling Cleanse BaseBindingBuilder.swift
[41/63] Compiling Cleanse LegacyKey.swift
[42/63] Compiling Cleanse LegacyObjectGraph.swift
[43/63] Compiling Cleanse Lock.swift
[44/63] Compiling Cleanse Module.swift
[45/63] Compiling Cleanse PropertyInjection.swift
[46/63] Compiling Cleanse PropertyInjectionArities.swift
[47/63] Compiling Cleanse PropertyInjectionReceiptBinder.swift
[48/63] Compiling Cleanse BindToable.swift
[49/63] Compiling Cleanse Binder.swift
[50/63] Compiling Cleanse BinderArities.swift
[51/63] Compiling Cleanse BindingBuilder.swift
[52/63] Compiling Cleanse BindingBuilderDecorator.swift
[53/63] Compiling Cleanse BindingReceipt.swift
[54/63] Compiling Cleanse CanonicalRepresentable.swift
[55/63] Compiling Cleanse CleanseBindingPlugin.swift
[56/63] Compiling Cleanse CleanseErrorReporter.swift
[57/63] Compiling Cleanse CleanseServiceLoader.swift
[58/63] Compiling Cleanse CollectionBindingBuilderDecorator.swift
[59/63] Compiling Cleanse CombinedHashable.swift
[60/63] Compiling Cleanse Component.swift
[61/63] Compiling Cleanse ComponentBase.swift
[62/63] Compiling Cleanse ComponentBinding.swift
[63/63] Compiling Cleanse ComponentBindingBuilder.swift
Build complete! (23.00s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Cleanse",
"name" : "Cleanse",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Cleanse",
"targets" : [
"Cleanse"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Cleanse",
"module_type" : "SwiftTarget",
"name" : "Cleanse",
"path" : "Cleanse",
"product_memberships" : [
"Cleanse"
],
"sources" : [
"AnyBinder.swift",
"Assisted.swift",
"AssistedFactory.swift",
"AssistedInjection.swift",
"AssistedInjectionArities.swift",
"AssistedInjectionBuilder.swift",
"AssistedInjectionSeedDecorator.swift",
"BaseBindingBuilder.swift",
"BindToable.swift",
"Binder.swift",
"BinderArities.swift",
"BindingBuilder.swift",
"BindingBuilderDecorator.swift",
"BindingReceipt.swift",
"CanonicalRepresentable.swift",
"CleanseBindingPlugin.swift",
"CleanseErrorReporter.swift",
"CleanseServiceLoader.swift",
"CollectionBindingBuilderDecorator.swift",
"CombinedHashable.swift",
"Component.swift",
"ComponentBase.swift",
"ComponentBinding.swift",
"ComponentBindingBuilder.swift",
"ComponentFactory.swift",
"ComponentVisitor.swift",
"DelegatedHashable.swift",
"Errors.swift",
"Factory.swift",
"Finalizable.swift",
"Graph.swift",
"Installer.swift",
"LegacyKey.swift",
"LegacyObjectGraph.swift",
"Lock.swift",
"Module.swift",
"PropertyInjection.swift",
"PropertyInjectionArities.swift",
"PropertyInjectionReceiptBinder.swift",
"PropertyInjector.swift",
"Provider.swift",
"ProviderProvider.swift",
"RawProviderBinding.swift",
"ReceiptBinder.swift",
"RootComponent.swift",
"Scope.swift",
"ScopedBinder.swift",
"ScopedBindingBuilder.swift",
"ScopedBindingDecorator.swift",
"ScopedModule.swift",
"ScopedProvider.swift",
"SingularCollectionBindingBuilderDecorator.swift",
"SourceLocation.swift",
"TaggedBindingBuilderDecorator.swift",
"TaggedProvider.swift",
"Tags.swift",
"TypeKeyProtocol.swift",
"ValidationVisitor.swift",
"WeakProvider.swift",
"WrappedBinder.swift"
],
"type" : "library"
}
],
"tools_version" : "5.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
Done.