Build Information
Successful build of ReactiveEmitter, reference 0.2.9 (eb544c), with Swift 6.2 for Linux on 17 Jun 2025 20:55:53 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:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/omochi/reactiveemitter.git
Reference: 0.2.9
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/omochi/reactiveemitter
* tag 0.2.9 -> FETCH_HEAD
HEAD is now at eb544ca ArrayProperty EditEvent
Cloned https://github.com/omochi/reactiveemitter.git
Revision (git rev-parse @):
eb544cab3cbca07f6293a202aa19bffba1d0d4fd
SUCCESS checkout https://github.com/omochi/reactiveemitter.git at 0.2.9
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/omochi/reactiveemitter.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/29] Emitting module ReactiveEmitter
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
[4/32] Compiling ReactiveEmitter Box.swift
[5/32] Compiling ReactiveEmitter LinkedList.swift
[6/32] Compiling ReactiveEmitter WeakBox.swift
[7/32] Compiling ReactiveEmitter EventSink.swift
[8/32] Compiling ReactiveEmitter EventSource.swift
[9/32] Compiling ReactiveEmitter RangeReplaceableCollectionClass.swift
[10/32] Compiling ReactiveEmitter ZipArray.swift
[11/32] Compiling ReactiveEmitter Disposer.swift
[12/32] Compiling ReactiveEmitter DisposerProtocol.swift
[13/32] Compiling ReactiveEmitter FlatMapLatest.swift
[14/32] Compiling ReactiveEmitter Map.swift
[15/32] Compiling ReactiveEmitter Merge.swift
[16/32] Compiling ReactiveEmitter Never.swift
[17/32] Compiling ReactiveEmitter CompositeDisposer.swift
[18/32] Compiling ReactiveEmitter DisposerBag.swift
[19/32] Compiling ReactiveEmitter FuncDisposer.swift
[20/32] Compiling ReactiveEmitter NopDisposer.swift
[21/32] Compiling ReactiveEmitter ObserveOn.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:43:17: warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | public func send(event t: T) {
42 | observeQueue.async {
43 | self._send(event: t)
| `- warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:41:21: warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | }
40 |
41 | public func send(event t: T) {
| `- warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
42 | observeQueue.async {
43 | self._send(event: t)
[22/32] Compiling ReactiveEmitter Sequence.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:43:17: warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | public func send(event t: T) {
42 | observeQueue.async {
43 | self._send(event: t)
| `- warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:41:21: warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | }
40 |
41 | public func send(event t: T) {
| `- warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
42 | observeQueue.async {
43 | self._send(event: t)
[23/32] Compiling ReactiveEmitter SubscribeOnce.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:43:17: warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | public func send(event t: T) {
42 | observeQueue.async {
43 | self._send(event: t)
| `- warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:41:21: warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | }
40 |
41 | public func send(event t: T) {
| `- warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
42 | observeQueue.async {
43 | self._send(event: t)
[24/32] Compiling ReactiveEmitter ValueOf.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:43:17: warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 | public func send(event t: T) {
42 | observeQueue.async {
43 | self._send(event: t)
| `- warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | }
45 | }
/host/spi-builder-workspace/Sources/ReactiveEmitter/Operator/ObserveOn.swift:41:21: warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 | }
40 |
41 | public func send(event t: T) {
| `- warning: capture of non-Sendable type 'TSource.Type' in an isolated closure; this is an error in the Swift 6 language mode
42 | observeQueue.async {
43 | self._send(event: t)
[25/32] Compiling ReactiveEmitter WeakProperty.swift
[26/32] Compiling ReactiveEmitter Bind.swift
[27/32] Compiling ReactiveEmitter Combine.swift
[28/32] Compiling ReactiveEmitter Debug.swift
[29/32] Compiling ReactiveEmitter ArrayProperty.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
[30/32] Compiling ReactiveEmitter EventEmitter.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
[31/32] Compiling ReactiveEmitter LateInitProperty.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
[32/32] Compiling ReactiveEmitter Property.swift
/host/spi-builder-workspace/Sources/ReactiveEmitter/EventSource/EventEmitter.swift:54:24: warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public class EventEmitter<Event> : EventSourceProtocol, EventSinkConvertible {
| `- note: 'Event' previously declared here
4 | public init() {
5 | syncQueue = DispatchQueue.init(label: "\(type(of: self)).syncQueue")
:
52 | }
53 |
54 | private class Sink<Event> : EventSinkProtocol {
| `- warning: generic parameter 'Event' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
55 | public init(_ base: EventEmitter<Event>) {
56 | self.emitter = base
Build complete! (9.81s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ReactiveEmitter",
"name" : "ReactiveEmitter",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ReactiveEmitter",
"targets" : [
"ReactiveEmitter"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ReactiveEmitterTests",
"module_type" : "SwiftTarget",
"name" : "ReactiveEmitterTests",
"path" : "Tests/ReactiveEmitterTests",
"sources" : [
"LinkedListTests.swift"
],
"target_dependencies" : [
"ReactiveEmitter"
],
"type" : "test"
},
{
"c99name" : "ReactiveEmitter",
"module_type" : "SwiftTarget",
"name" : "ReactiveEmitter",
"path" : "Sources/ReactiveEmitter",
"product_memberships" : [
"ReactiveEmitter"
],
"sources" : [
"Disposer/CompositeDisposer.swift",
"Disposer/DisposerBag.swift",
"Disposer/FuncDisposer.swift",
"Disposer/NopDisposer.swift",
"EventSource/ArrayProperty.swift",
"EventSource/EventEmitter.swift",
"EventSource/LateInitProperty.swift",
"EventSource/Property.swift",
"EventSource/WeakProperty.swift",
"Operator/Bind.swift",
"Operator/Combine.swift",
"Operator/Debug.swift",
"Operator/FlatMapLatest.swift",
"Operator/Map.swift",
"Operator/Merge.swift",
"Operator/Never.swift",
"Operator/ObserveOn.swift",
"Operator/Sequence.swift",
"Operator/SubscribeOnce.swift",
"Operator/ValueOf.swift",
"Operator/ZipArray.swift",
"Type/Disposer.swift",
"Type/DisposerProtocol.swift",
"Type/EventSink.swift",
"Type/EventSource.swift",
"Type/RangeReplaceableCollectionClass.swift",
"Util/Box.swift",
"Util/LinkedList.swift",
"Util/WeakBox.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
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.