The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Trellis, reference v0.2.1 (17d110), with Swift 6.2 (beta) for Linux on 19 Jun 2025 10:43:01 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 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.2.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/valentinradu/Trellis
 * tag               v0.2.1     -> FETCH_HEAD
HEAD is now at 17d1104 Updated README.md
Cloned https://github.com/valentinradu/Trellis.git
Revision (git rev-parse @):
17d11044b66b2f6b9bf8036e00e26388f39c027d
SUCCESS checkout https://github.com/valentinradu/Trellis.git at v0.2.1
========================================
Build
========================================
Selected platform:         linux
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-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/wickwirew/Runtime.git
[1/1966] Fetching runtime
Fetched https://github.com/wickwirew/Runtime.git from cache (0.34s)
Computing version for https://github.com/wickwirew/Runtime.git
Computed https://github.com/wickwirew/Runtime.git at 2.2.7 (0.86s)
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-24593BA9C3E375BF.txt
[5/45] Emitting module Runtime
[6/50] Compiling Runtime Vector.swift
[7/50] Compiling Runtime GettersSetters.swift
[8/50] Compiling Runtime Pointer+Extensions.swift
[9/50] Compiling Runtime RetainCounts.swift
[10/50] Compiling Runtime String+Extensions.swift
[11/50] Compiling Runtime ProtocolMetadataLayout.swift
[12/50] Compiling Runtime ProtocolTypeContainer.swift
[13/50] Compiling Runtime StructMetadataLayout.swift
[14/50] Compiling Runtime StructTypeDescriptor.swift
[15/50] Compiling Runtime TargetTypeGenericContextDescriptorHeader.swift
[16/50] Compiling Runtime TupleMetadataLayout.swift
[17/50] Compiling Runtime TypeInfoConvertible.swift
[18/50] Compiling Runtime Pointers.swift
[19/50] Compiling Runtime RelativePointer.swift
[20/50] Compiling Runtime RelativeVectorPointer.swift
[21/50] Compiling Runtime Union.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 MetadataType.swift
[34/50] Compiling Runtime NominalMetadataType.swift
[35/50] Compiling Runtime ProtocolMetadata.swift
[36/50] Compiling Runtime StructMetadata.swift
[37/50] Compiling Runtime TupleMetadata.swift
[38/50] Compiling Runtime Case.swift
[39/50] Compiling Runtime EnumTypeDescriptor.swift
[40/50] Compiling Runtime ExistentialContainter.swift
[41/50] Compiling Runtime FieldDescriptor.swift
[42/50] Compiling Runtime FunctionMetadataLayout.swift
[43/50] Compiling Runtime MetadataLayoutType.swift
[44/50] Compiling Runtime ProtocolDescriptor.swift
[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/60] Compiling Trellis Environment.swift
[53/60] Emitting module Trellis
/host/spi-builder-workspace/Sources/Trellis/Reducer.swift:27:33: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 24 | public struct EmptyReducerState {}
 25 |
 26 | public struct Reducer<S, C, A>: Service where A: Action {
    |                          `- note: 'C' previously declared here
 27 |     public typealias SideEffect<C> = (Dispatch, C) async throws -> Void
    |                                 `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 28 |     public typealias Reduce = (inout S, A) -> SideEffect<C>?
 29 |     private let _store: Store<S>
[54/60] Compiling Trellis Bootstrap.swift
/host/spi-builder-workspace/Sources/Trellis/Emitter.swift:37:41: warning: capture of non-Sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
35 |             .bootstrap {
36 |                 let task = Task {
37 |                     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
38 |                         try await send(action: action,
39 |                                        from: _id)
/host/spi-builder-workspace/Sources/Trellis/Emitter.swift:33:35: warning: capture of non-Sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     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
34 |         _items
35 |             .bootstrap {
[55/60] Compiling Trellis Emitter.swift
/host/spi-builder-workspace/Sources/Trellis/Emitter.swift:37:41: warning: capture of non-Sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
35 |             .bootstrap {
36 |                 let task = Task {
37 |                     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
38 |                         try await send(action: action,
39 |                                        from: _id)
/host/spi-builder-workspace/Sources/Trellis/Emitter.swift:33:35: warning: capture of non-Sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     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
34 |         _items
35 |             .bootstrap {
[56/61] Compiling Trellis Service+Environment.swift
[57/61] Compiling Trellis Service+Tuple.swift
[58/61] Compiling Trellis Group.swift
[59/61] Compiling Trellis Service+Builder.swift
[60/61] Compiling Trellis Reducer.swift
/host/spi-builder-workspace/Sources/Trellis/Reducer.swift:27:33: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 24 | public struct EmptyReducerState {}
 25 |
 26 | public struct Reducer<S, C, A>: Service where A: Action {
    |                          `- note: 'C' previously declared here
 27 |     public typealias SideEffect<C> = (Dispatch, C) async throws -> Void
    |                                 `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 28 |     public typealias Reduce = (inout S, A) -> SideEffect<C>?
 29 |     private let _store: Store<S>
[61/61] Compiling Trellis Service.swift
Build complete! (15.84s)
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",
        "Emitter.swift",
        "Environment.swift",
        "Group.swift",
        "Reducer.swift",
        "Service+Builder.swift",
        "Service+Environment.swift",
        "Service+Tuple.swift",
        "Service.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.