The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Trellis, reference v0.4.2-beta (cb3a67), with Swift 6.2 for Android on 19 Jun 2025 10:42:50 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>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/valentinradu/Trellis.git
Reference: v0.4.2-beta
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/valentinradu/Trellis
 * tag               v0.4.2-beta -> FETCH_HEAD
HEAD is now at cb3a675 Bootstrap is a main actor now
Cloned https://github.com/valentinradu/Trellis.git
Revision (git rev-parse @):
cb3a67537a39565c623efb891b451c82f8390298
SUCCESS checkout https://github.com/valentinradu/Trellis.git at v0.4.2-beta
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/valentinradu/Trellis.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
Fetching https://github.com/wickwirew/Runtime.git
[1/1966] Fetching runtime
Fetched https://github.com/wickwirew/Runtime.git from cache (0.23s)
Computing version for https://github.com/wickwirew/Runtime.git
Computed https://github.com/wickwirew/Runtime.git at 2.2.7 (0.60s)
Creating working copy for https://github.com/wickwirew/Runtime.git
Working copy of https://github.com/wickwirew/Runtime.git resolved at 2.2.7
Building for debugging...
[0/4] Write sources
[2/4] Compiling CRuntime dummy.c
[3/4] Write swift-version-8C5A4AE7A8CE2BA.txt
[5/45] Compiling Runtime ProtocolMetadataLayout.swift
[6/45] Compiling Runtime ProtocolTypeContainer.swift
[7/45] Compiling Runtime StructMetadataLayout.swift
[8/45] Compiling Runtime StructTypeDescriptor.swift
[9/45] Compiling Runtime TargetTypeGenericContextDescriptorHeader.swift
[10/45] Compiling Runtime TupleMetadataLayout.swift
[11/50] Compiling Runtime MetadataType.swift
[12/50] Compiling Runtime NominalMetadataType.swift
[13/50] Compiling Runtime ProtocolMetadata.swift
[14/50] Compiling Runtime StructMetadata.swift
[15/50] Compiling Runtime TupleMetadata.swift
[16/50] Compiling Runtime Case.swift
[17/50] Compiling Runtime Vector.swift
[18/50] Compiling Runtime GettersSetters.swift
[19/50] Compiling Runtime Pointer+Extensions.swift
[20/50] Compiling Runtime RetainCounts.swift
[21/50] Compiling Runtime String+Extensions.swift
[22/50] Compiling Runtime TypeDescriptor.swift
[23/50] Compiling Runtime ValueWitnessTable.swift
[24/50] Compiling Runtime ClassMetadata.swift
[25/50] Compiling Runtime EnumMetadata.swift
[26/50] Compiling Runtime FuntionMetadata.swift
[27/50] Compiling Runtime Metadata.swift
[28/50] Compiling Runtime Errors.swift
[29/50] Compiling Runtime FunctionInfo.swift
[30/50] Compiling Runtime Kind.swift
[31/50] Compiling Runtime PropertyInfo.swift
[32/50] Compiling Runtime TypeInfo.swift
[33/50] Compiling Runtime TypeInfoConvertible.swift
[34/50] Compiling Runtime Pointers.swift
[35/50] Compiling Runtime RelativePointer.swift
[36/50] Compiling Runtime RelativeVectorPointer.swift
[37/50] Compiling Runtime Union.swift
[38/50] Compiling Runtime EnumTypeDescriptor.swift
[39/50] Compiling Runtime ExistentialContainter.swift
[40/50] Compiling Runtime FieldDescriptor.swift
[41/50] Compiling Runtime FunctionMetadataLayout.swift
[42/50] Compiling Runtime MetadataLayoutType.swift
[43/50] Compiling Runtime ProtocolDescriptor.swift
[44/50] Emitting module Runtime
[45/50] Compiling Runtime DefaultValue.swift
[46/50] Compiling Runtime Factory.swift
[47/50] Compiling Runtime ClassHeader.swift
[48/50] Compiling Runtime ClassMetadataLayout.swift
[49/50] Compiling Runtime ClassTypeDescriptor.swift
[50/50] Compiling Runtime EnumMetadataLayout.swift
[52/62] Compiling Trellis Service+Environment.swift
[53/62] Compiling Trellis Service.swift
[54/63] Compiling Trellis Environment.swift
[55/63] Compiling Trellis Group.swift
[56/63] Compiling Trellis Bootstrap.swift
/host/spi-builder-workspace/Sources/Trellis/Bootstrap.swift:43:37: warning: non-sendable type 'AnyHashable' of property 'rootHashValue' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
41 |     public nonisolated func send(action: any Action) async throws {
42 |         try await _items.send(action: action,
43 |                               from: rootHashValue)
   |                                     `- warning: non-sendable type 'AnyHashable' of property 'rootHashValue' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
44 |     }
45 | }
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
  |                       `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 |     public init<H>(_ base: H) where H : Hashable
3 |     public var base: Any { get }
[57/63] Compiling Trellis Builder.swift
/host/spi-builder-workspace/Sources/Trellis/Bootstrap.swift:43:37: warning: non-sendable type 'AnyHashable' of property 'rootHashValue' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
41 |     public nonisolated func send(action: any Action) async throws {
42 |         try await _items.send(action: action,
43 |                               from: rootHashValue)
   |                                     `- warning: non-sendable type 'AnyHashable' of property 'rootHashValue' cannot exit main actor-isolated context; this is an error in the Swift 6 language mode
44 |     }
45 | }
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
  |                       `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 |     public init<H>(_ base: H) where H : Hashable
3 |     public var base: Any { get }
[58/63] Compiling Trellis Service+Bootstrap.swift
/host/spi-builder-workspace/Sources/Trellis/Service+Emitter.swift:34:41: warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             .bootstrap {
33 |                 let task = Task {
34 |                     for await action in _stream {
   |                                         `- warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
35 |                         try await _send(action)
36 |                     }
/host/spi-builder-workspace/Sources/Trellis/Service+Emitter.swift:30:35: warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |     }
29 |
30 |     public var body: some Service {
   |                                   `- warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |         _items
32 |             .bootstrap {
[59/63] Compiling Trellis Service+Emitter.swift
/host/spi-builder-workspace/Sources/Trellis/Service+Emitter.swift:34:41: warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
32 |             .bootstrap {
33 |                 let task = Task {
34 |                     for await action in _stream {
   |                                         `- warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
35 |                         try await _send(action)
36 |                     }
/host/spi-builder-workspace/Sources/Trellis/Service+Emitter.swift:30:35: warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |     }
29 |
30 |     public var body: some Service {
   |                                   `- warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |         _items
32 |             .bootstrap {
[60/63] Emitting module Trellis
[61/63] Compiling Trellis Service+Middleware.swift
[62/63] Compiling Trellis Service+Tuple.swift
/host/spi-builder-workspace/Sources/Trellis/Service+Tuple.swift:149:45: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 |                     for child in _children {
148 |                         group.addTask {
149 |                             try await child.send(action: action,
    |                                             `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |                                                  from: id)
151 |                         }
/host/spi-builder-workspace/Sources/Trellis/Service+Tuple.swift:137:13: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 |         where ID: Identity
136 |     {
137 |         let id = identity(from: parentId)
    |             `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |         if let environment = EnvironmentValues.all[id] {
139 |             try write(environment: environment, id: id)
/host/spi-builder-workspace/Sources/Trellis/Service+Tuple.swift:160:45: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
158 |                     for child in _children {
159 |                         group.addTask {
160 |                             try await child.send(action: action,
    |                                             `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
161 |                                                  from: id)
162 |                         }
/host/spi-builder-workspace/Sources/Trellis/Service+Tuple.swift:137:13: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 |         where ID: Identity
136 |     {
137 |         let id = identity(from: parentId)
    |             `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |         if let environment = EnvironmentValues.all[id] {
139 |             try write(environment: environment, id: id)
[63/63] Compiling Trellis Store.swift
Build complete! (17.57s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "runtime",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.2.4",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/wickwirew/Runtime.git"
    }
  ],
  "manifest_display_name" : "Trellis",
  "name" : "Trellis",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "driverkit",
      "version" : "20.0"
    }
  ],
  "products" : [
    {
      "name" : "Trellis",
      "targets" : [
        "Trellis"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TrellisTests",
      "module_type" : "SwiftTarget",
      "name" : "TrellisTests",
      "path" : "Tests/TrellisTests",
      "sources" : [
        "Fixtures.swift",
        "ServiceTests.swift"
      ],
      "target_dependencies" : [
        "Trellis"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Trellis",
      "module_type" : "SwiftTarget",
      "name" : "Trellis",
      "path" : "Sources/Trellis",
      "product_dependencies" : [
        "Runtime"
      ],
      "product_memberships" : [
        "Trellis"
      ],
      "sources" : [
        "Bootstrap.swift",
        "Builder.swift",
        "Environment.swift",
        "Group.swift",
        "Service+Bootstrap.swift",
        "Service+Emitter.swift",
        "Service+Environment.swift",
        "Service+Middleware.swift",
        "Service+Tuple.swift",
        "Service.swift",
        "Store.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
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.