The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Emit, reference 2.2.0 (d08120), with Swift 6.1 for Linux on 27 Apr 2026 22:59:50 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/hootsuite/emit.git
Reference: 2.2.0
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/hootsuite/emit
 * tag               2.2.0      -> FETCH_HEAD
HEAD is now at d08120e Update Signal.swift (#17)
Cloned https://github.com/hootsuite/emit.git
Revision (git rev-parse @):
d08120ebb672f394b6d1e5bccc680925ef11a776
SUCCESS checkout https://github.com/hootsuite/emit.git at 2.2.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/hootsuite/emit.git
https://github.com/hootsuite/emit.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:a7bfd71e9384436264431030299dc8a2d42d0664a168cfa1a5dd84c9bc592ccf
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/6] Compiling Emit ObservableVariable.swift
[4/6] Compiling Emit RWLock.swift
[5/6] Emitting module Emit
[6/6] Compiling Emit Signal.swift
/host/spi-builder-workspace/Sources/Signal.swift:36:21: warning: capture of 'subscription' with non-sendable type 'OwnedSubscription<Event>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 34 |                 }
 35 |                 subscription.queue.async {
 36 |                     subscription.action(event)
    |                     `- warning: capture of 'subscription' with non-sendable type 'OwnedSubscription<Event>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 37 |                 }
 38 |             }
    :
137 | /// The subscription only holds a weak reference to its owner. When the owner is released the subscription becomes
138 | /// stale. Stale subscriptions don't get invoked and they are cleaned up periodically.
139 | private final class OwnedSubscription<T>: Subscription {
    |                     `- note: generic class 'OwnedSubscription' does not conform to the 'Sendable' protocol
140 |     typealias Event = T
141 |
/host/spi-builder-workspace/Sources/Signal.swift:36:41: warning: capture of 'event' with non-sendable type 'Event' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 16 |
 17 | /// `Signal` provides a mechanism for publishing events to subscribers.
 18 | public final class Signal<Event> {
    |                           `- note: consider making generic parameter 'Event' conform to the 'Sendable' protocol
 19 |     private var subscriptions = [OwnedSubscription<Event>]()
 20 |     private var lock = RWLock()
    :
 34 |                 }
 35 |                 subscription.queue.async {
 36 |                     subscription.action(event)
    |                                         `- warning: capture of 'event' with non-sendable type 'Event' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 37 |                 }
 38 |             }
Build complete! (8.62s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Emit",
  "name" : "Emit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Emit",
      "targets" : [
        "Emit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EmitTests",
      "module_type" : "SwiftTarget",
      "name" : "EmitTests",
      "path" : "Tests",
      "sources" : [
        "ObservableVariableTests.swift",
        "SignalTests.swift"
      ],
      "target_dependencies" : [
        "Emit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Emit",
      "module_type" : "SwiftTarget",
      "name" : "Emit",
      "path" : "Sources",
      "product_memberships" : [
        "Emit"
      ],
      "sources" : [
        "ObservableVariable.swift",
        "RWLock.swift",
        "Signal.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
basic-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:a7bfd71e9384436264431030299dc8a2d42d0664a168cfa1a5dd84c9bc592ccf
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest
Done.