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 ReactiveStreams, reference 0.4.2 (b66ce5), with Swift 6.2 (beta) for Linux on 18 Jun 2025 19:27:06 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/glessard/swift-reactive-streams.git
Reference: 0.4.2
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/glessard/swift-reactive-streams
 * tag               0.4.2      -> FETCH_HEAD
HEAD is now at b66ce52 update dependencies
Cloned https://github.com/glessard/swift-reactive-streams.git
Revision (git rev-parse @):
b66ce52b4b043b3ac49e35b6ecfa93e6f394f284
SUCCESS checkout https://github.com/glessard/swift-reactive-streams.git at 0.4.2
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/glessard/swift-reactive-streams.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/glessard/deferred.git
Fetching https://github.com/glessard/CurrentQoS.git
Fetching https://github.com/glessard/CAtomics.git
[1/7501] Fetching deferred
[827/7651] Fetching deferred, currentqos
[2327/10788] Fetching deferred, currentqos, catomics
Fetched https://github.com/glessard/CAtomics.git from cache (0.40s)
Fetched https://github.com/glessard/CurrentQoS.git from cache (0.45s)
Fetched https://github.com/glessard/deferred.git from cache (0.45s)
Computing version for https://github.com/glessard/deferred.git
Computed https://github.com/glessard/deferred.git at 6.7.1 (1.03s)
Computing version for https://github.com/glessard/CAtomics.git
Computed https://github.com/glessard/CAtomics.git at 6.5.1 (2.90s)
Computing version for https://github.com/glessard/CurrentQoS.git
Computed https://github.com/glessard/CurrentQoS.git at 1.2.2 (0.80s)
Creating working copy for https://github.com/glessard/CurrentQoS.git
Working copy of https://github.com/glessard/CurrentQoS.git resolved at 1.2.2
Creating working copy for https://github.com/glessard/deferred.git
Working copy of https://github.com/glessard/deferred.git resolved at 6.7.1
Creating working copy for https://github.com/glessard/CAtomics.git
Working copy of https://github.com/glessard/CAtomics.git resolved at 6.5.1
Building for debugging...
[0/5] Write sources
[3/5] Write swift-version-24593BA9C3E375BF.txt
[4/8] Compiling CAtomics CAtomics.c
[6/8] Compiling CurrentQoS CurrentQoS.swift
[7/8] Compiling CurrentQoS BetterQoS.swift
[8/8] Emitting module CurrentQoS
[10/22] Compiling deferred dispatch-utilities.swift
[11/22] Compiling deferred result-extensions.swift
[12/23] Emitting module deferred
[13/23] Compiling deferred deferred-combine.swift
[14/23] Compiling deferred deferred-delay.swift
[15/23] Compiling deferred waiter.swift
[16/23] Compiling deferred deferred-error.swift
[17/23] Compiling deferred deferred-extras.swift
[18/23] Compiling deferred deferred-timeout.swift
[19/23] Compiling deferred deferred.swift
[20/23] Compiling deferred deferred-first.swift
[21/23] Compiling deferred deferred-parallelize.swift
[22/23] Compiling deferred deferred-split.swift
[23/23] Compiling deferred deferred-state.swift
[25/48] Emitting module ReactiveStreams
/host/spi-builder-workspace/Sources/ReactiveStreams/publisher.swift:9:30: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol EventSource: class
   |                              `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   func updateRequest(_ requested: Int64)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-limited.swift:18:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
16 |   public var count: Int64 { return CAtomicsLoad(counter, .relaxed) }
17 |
18 |   public convenience init(qos: DispatchQoS = .current, count: Int64)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
19 |   {
20 |     self.init(validated: ValidatedQueue(label: "limitedstream", qos: qos), count: max(count,0))
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:233:61: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
231 |   }
232 |
233 |   static public func merge<S: Sequence>(qos: DispatchQoS = .current, streams: S, delayingErrors delay: Bool = false) -> EventStream<Value>
    |                                                             |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
    |                                                             `- note: The missing import of module 'CurrentQoS' will be added implicitly
234 |     where S.Iterator.Element: EventStream<Value>
235 |   {
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:19:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
17 |   private let task: (Int) throws -> Value
18 |
19 |   public convenience init(qos: DispatchQoS = .current, autostart: Bool = true, task: @escaping (Int) throws -> Value)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
20 |   {
21 |     self.init(validated: ValidatedQueue(label: "onrequeststream", qos: qos), autostart: autostart, task: task)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:84:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
82 | extension OnRequestStream where Value == Int
83 | {
84 |   public convenience init(qos: DispatchQoS = .current, autostart: Bool = true)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
85 |   {
86 |     self.init(qos: qos, autostart: autostart, task: { $0 })
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-timer.swift:23:35: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
21 |   private let timingLeeway: DispatchTimeInterval
22 |
23 |   public init(qos: DispatchQoS = .current, interval: TimeInterval, tolerance: DispatchTimeInterval? = nil)
   |                                   |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                   `- note: The missing import of module 'CurrentQoS' will be added implicitly
24 |   {
25 |     let queue = ValidatedQueue(label: "timerstream", qos: qos)
/host/spi-builder-workspace/Sources/ReactiveStreams/subscriber.swift:9:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol Subscriber: class
   |                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   associatedtype Value
/host/spi-builder-workspace/Sources/ReactiveStreams/validated-queue.swift:15:50: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
13 |   let queue: DispatchQueue
14 |
15 |   public init(label: String, qos: DispatchQoS = .current)
   |                                                  |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                                  `- note: The missing import of module 'CurrentQoS' will be added implicitly
16 |   {
17 |     self.queue = DispatchQueue(label: label+"-\(qos.qosClass)", qos: qos)
[26/51] Compiling ReactiveStreams event.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/publisher.swift:9:30: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol EventSource: class
   |                              `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   func updateRequest(_ requested: Int64)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-final.swift:25:11: warning: reference to captured var 'latest' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
23 |       {
24 |         mapped.queue.async {
25 |           latest.map({ mapped.dispatch($0) })
   |           `- warning: reference to captured var 'latest' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
26 |           mapped.dispatch(event)
27 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[27/51] Compiling ReactiveStreams publisher.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/publisher.swift:9:30: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol EventSource: class
   |                              `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   func updateRequest(_ requested: Int64)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-final.swift:25:11: warning: reference to captured var 'latest' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
23 |       {
24 |         mapped.queue.async {
25 |           latest.map({ mapped.dispatch($0) })
   |           `- warning: reference to captured var 'latest' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
26 |           mapped.dispatch(event)
27 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[28/51] Compiling ReactiveStreams stream-filter.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/publisher.swift:9:30: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol EventSource: class
   |                              `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   func updateRequest(_ requested: Int64)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-final.swift:25:11: warning: reference to captured var 'latest' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
23 |       {
24 |         mapped.queue.async {
25 |           latest.map({ mapped.dispatch($0) })
   |           `- warning: reference to captured var 'latest' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
26 |           mapped.dispatch(event)
27 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[29/51] Compiling ReactiveStreams stream-final.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/publisher.swift:9:30: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol EventSource: class
   |                              `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   func updateRequest(_ requested: Int64)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-final.swift:25:11: warning: reference to captured var 'latest' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
23 |       {
24 |         mapped.queue.async {
25 |           latest.map({ mapped.dispatch($0) })
   |           `- warning: reference to captured var 'latest' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
26 |           mapped.dispatch(event)
27 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[30/51] Compiling ReactiveStreams deferred-final.swift
[31/51] Compiling ReactiveStreams deferred-next.swift
[32/51] Compiling ReactiveStreams deferred-stream.swift
[33/51] Compiling ReactiveStreams deferred-subscriber.swift
[34/51] Compiling ReactiveStreams stream-next.swift
[35/51] Compiling ReactiveStreams stream-notifications.swift
[36/51] Compiling ReactiveStreams stream-notifier.swift
[37/51] Compiling ReactiveStreams stream-onrequest.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:19:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
17 |   private let task: (Int) throws -> Value
18 |
19 |   public convenience init(qos: DispatchQoS = .current, autostart: Bool = true, task: @escaping (Int) throws -> Value)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
20 |   {
21 |     self.init(validated: ValidatedQueue(label: "onrequeststream", qos: qos), autostart: autostart, task: task)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:84:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
82 | extension OnRequestStream where Value == Int
83 | {
84 |   public convenience init(qos: DispatchQoS = .current, autostart: Bool = true)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
85 |   {
86 |     self.init(qos: qos, autostart: autostart, task: { $0 })
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:69:31: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
67 |     } while !CAtomicsCompareAndExchangeWeak(started, &streaming, true, .relaxed, .relaxed)
68 |
69 |     queue.async(execute: self.processNext)
   |                               `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
70 |   }
71 |
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:77:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
75 |     if CAtomicsLoad(started, .relaxed)
76 |     { // enqueue some event processing in case stream had been paused
77 |       queue.async(execute: self.processNext)
   |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
78 |     }
79 |   }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:90:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
 88 |     { // the queue had been empty or blocked
 89 |       // resume processing enqueued events
 90 |       queue.async(execute: self.processNext)
    |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
 91 |     }
 92 |   }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:132:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
130 |
131 |       dispatch(event)
132 |       queue.async(execute: self.processNext)
    |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
133 |       return
134 |     }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:145:31: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
143 |     super.processAdditionalRequest(additional)
144 |     // enqueue some event processing, in case stream had been paused
145 |     queue.async(execute: self.processNext)
    |                               `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
146 |   }
147 | }
[38/51] Compiling ReactiveStreams stream-paused.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:19:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
17 |   private let task: (Int) throws -> Value
18 |
19 |   public convenience init(qos: DispatchQoS = .current, autostart: Bool = true, task: @escaping (Int) throws -> Value)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
20 |   {
21 |     self.init(validated: ValidatedQueue(label: "onrequeststream", qos: qos), autostart: autostart, task: task)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:84:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
82 | extension OnRequestStream where Value == Int
83 | {
84 |   public convenience init(qos: DispatchQoS = .current, autostart: Bool = true)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
85 |   {
86 |     self.init(qos: qos, autostart: autostart, task: { $0 })
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:69:31: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
67 |     } while !CAtomicsCompareAndExchangeWeak(started, &streaming, true, .relaxed, .relaxed)
68 |
69 |     queue.async(execute: self.processNext)
   |                               `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
70 |   }
71 |
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:77:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
75 |     if CAtomicsLoad(started, .relaxed)
76 |     { // enqueue some event processing in case stream had been paused
77 |       queue.async(execute: self.processNext)
   |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
78 |     }
79 |   }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:90:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
 88 |     { // the queue had been empty or blocked
 89 |       // resume processing enqueued events
 90 |       queue.async(execute: self.processNext)
    |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
 91 |     }
 92 |   }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:132:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
130 |
131 |       dispatch(event)
132 |       queue.async(execute: self.processNext)
    |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
133 |       return
134 |     }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:145:31: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
143 |     super.processAdditionalRequest(additional)
144 |     // enqueue some event processing, in case stream had been paused
145 |     queue.async(execute: self.processNext)
    |                               `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
146 |   }
147 | }
[39/51] Compiling ReactiveStreams stream-post.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:19:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
17 |   private let task: (Int) throws -> Value
18 |
19 |   public convenience init(qos: DispatchQoS = .current, autostart: Bool = true, task: @escaping (Int) throws -> Value)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
20 |   {
21 |     self.init(validated: ValidatedQueue(label: "onrequeststream", qos: qos), autostart: autostart, task: task)
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:84:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
82 | extension OnRequestStream where Value == Int
83 | {
84 |   public convenience init(qos: DispatchQoS = .current, autostart: Bool = true)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
85 |   {
86 |     self.init(qos: qos, autostart: autostart, task: { $0 })
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:69:31: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
67 |     } while !CAtomicsCompareAndExchangeWeak(started, &streaming, true, .relaxed, .relaxed)
68 |
69 |     queue.async(execute: self.processNext)
   |                               `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
70 |   }
71 |
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-onrequest.swift:77:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
75 |     if CAtomicsLoad(started, .relaxed)
76 |     { // enqueue some event processing in case stream had been paused
77 |       queue.async(execute: self.processNext)
   |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
78 |     }
79 |   }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:90:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
 88 |     { // the queue had been empty or blocked
 89 |       // resume processing enqueued events
 90 |       queue.async(execute: self.processNext)
    |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
 91 |     }
 92 |   }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:132:33: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
130 |
131 |       dispatch(event)
132 |       queue.async(execute: self.processNext)
    |                                 `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
133 |       return
134 |     }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-post.swift:145:31: warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
143 |     super.processAdditionalRequest(additional)
144 |     // enqueue some event processing, in case stream had been paused
145 |     queue.async(execute: self.processNext)
    |                               `- warning: converting non-Sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
146 |   }
147 | }
[40/51] Compiling ReactiveStreams stream-limited.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-limited.swift:18:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
16 |   public var count: Int64 { return CAtomicsLoad(counter, .relaxed) }
17 |
18 |   public convenience init(qos: DispatchQoS = .current, count: Int64)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
19 |   {
20 |     self.init(validated: ValidatedQueue(label: "limitedstream", qos: qos), count: max(count,0))
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:233:61: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
231 |   }
232 |
233 |   static public func merge<S: Sequence>(qos: DispatchQoS = .current, streams: S, delayingErrors delay: Bool = false) -> EventStream<Value>
    |                                                             |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
    |                                                             `- note: The missing import of module 'CurrentQoS' will be added implicitly
234 |     where S.Iterator.Element: EventStream<Value>
235 |   {
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:76:41: warning: reference to captured var 'subscription' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 74 |           if event.isValue == false
 75 |           { // event terminates merged stream; remove it from sources
 76 |             merged.subscriptions.remove(subscription)
    |                                         `- warning: reference to captured var 'subscription' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 77 |             if event.completedNormally || (event.error is StreamCompleted) // for .lateSubscription
 78 |             { // merged stream completed normally
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:227:7: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
225 |   {
226 |     merged.queue.async {
227 |       streams.forEach {
    |       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
228 |         merged.performMerge($0)
229 |       }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:223:42: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
221 |   }
222 |
223 |   static private func merge<S: Sequence>(streams: S, into merged: MergeStream<Value>)
    |                                          `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
224 |     where S.Iterator.Element: EventStream<Value>
225 |   {
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:260:7: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
258 |     merged.queue.async {
259 |       merged.performMerge(self)
260 |       others.forEach { merged.performMerge($0) }
    |       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
261 |     }
262 |     return merged
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:254:39: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
252 |   }
253 |
254 |   public func merge<S: Sequence>(with others: S) -> EventStream<Value>
    |                                       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
255 |     where S.Iterator.Element: EventStream<Value>
256 |   {
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[41/51] Compiling ReactiveStreams stream-map.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-limited.swift:18:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
16 |   public var count: Int64 { return CAtomicsLoad(counter, .relaxed) }
17 |
18 |   public convenience init(qos: DispatchQoS = .current, count: Int64)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
19 |   {
20 |     self.init(validated: ValidatedQueue(label: "limitedstream", qos: qos), count: max(count,0))
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:233:61: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
231 |   }
232 |
233 |   static public func merge<S: Sequence>(qos: DispatchQoS = .current, streams: S, delayingErrors delay: Bool = false) -> EventStream<Value>
    |                                                             |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
    |                                                             `- note: The missing import of module 'CurrentQoS' will be added implicitly
234 |     where S.Iterator.Element: EventStream<Value>
235 |   {
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:76:41: warning: reference to captured var 'subscription' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 74 |           if event.isValue == false
 75 |           { // event terminates merged stream; remove it from sources
 76 |             merged.subscriptions.remove(subscription)
    |                                         `- warning: reference to captured var 'subscription' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 77 |             if event.completedNormally || (event.error is StreamCompleted) // for .lateSubscription
 78 |             { // merged stream completed normally
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:227:7: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
225 |   {
226 |     merged.queue.async {
227 |       streams.forEach {
    |       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
228 |         merged.performMerge($0)
229 |       }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:223:42: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
221 |   }
222 |
223 |   static private func merge<S: Sequence>(streams: S, into merged: MergeStream<Value>)
    |                                          `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
224 |     where S.Iterator.Element: EventStream<Value>
225 |   {
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:260:7: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
258 |     merged.queue.async {
259 |       merged.performMerge(self)
260 |       others.forEach { merged.performMerge($0) }
    |       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
261 |     }
262 |     return merged
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:254:39: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
252 |   }
253 |
254 |   public func merge<S: Sequence>(with others: S) -> EventStream<Value>
    |                                       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
255 |     where S.Iterator.Element: EventStream<Value>
256 |   {
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[42/51] Compiling ReactiveStreams stream-merge.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-limited.swift:18:47: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
16 |   public var count: Int64 { return CAtomicsLoad(counter, .relaxed) }
17 |
18 |   public convenience init(qos: DispatchQoS = .current, count: Int64)
   |                                               |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                               `- note: The missing import of module 'CurrentQoS' will be added implicitly
19 |   {
20 |     self.init(validated: ValidatedQueue(label: "limitedstream", qos: qos), count: max(count,0))
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:233:61: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
231 |   }
232 |
233 |   static public func merge<S: Sequence>(qos: DispatchQoS = .current, streams: S, delayingErrors delay: Bool = false) -> EventStream<Value>
    |                                                             |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
    |                                                             `- note: The missing import of module 'CurrentQoS' will be added implicitly
234 |     where S.Iterator.Element: EventStream<Value>
235 |   {
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:76:41: warning: reference to captured var 'subscription' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 74 |           if event.isValue == false
 75 |           { // event terminates merged stream; remove it from sources
 76 |             merged.subscriptions.remove(subscription)
    |                                         `- warning: reference to captured var 'subscription' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 77 |             if event.completedNormally || (event.error is StreamCompleted) // for .lateSubscription
 78 |             { // merged stream completed normally
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:227:7: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
225 |   {
226 |     merged.queue.async {
227 |       streams.forEach {
    |       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
228 |         merged.performMerge($0)
229 |       }
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:223:42: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
221 |   }
222 |
223 |   static private func merge<S: Sequence>(streams: S, into merged: MergeStream<Value>)
    |                                          `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
224 |     where S.Iterator.Element: EventStream<Value>
225 |   {
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:260:7: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
258 |     merged.queue.async {
259 |       merged.performMerge(self)
260 |       others.forEach { merged.performMerge($0) }
    |       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
261 |     }
262 |     return merged
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-merge.swift:254:39: warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
252 |   }
253 |
254 |   public func merge<S: Sequence>(with others: S) -> EventStream<Value>
    |                                       `- warning: capture of non-Sendable type 'S.Type' in an isolated closure; this is an error in the Swift 6 language mode
255 |     where S.Iterator.Element: EventStream<Value>
256 |   {
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[43/51] Compiling ReactiveStreams stream-substream.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-timer.swift:23:35: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
21 |   private let timingLeeway: DispatchTimeInterval
22 |
23 |   public init(qos: DispatchQoS = .current, interval: TimeInterval, tolerance: DispatchTimeInterval? = nil)
   |                                   |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                   `- note: The missing import of module 'CurrentQoS' will be added implicitly
24 |   {
25 |     let queue = ValidatedQueue(label: "timerstream", qos: qos)
[44/51] Compiling ReactiveStreams stream-timer.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-timer.swift:23:35: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
21 |   private let timingLeeway: DispatchTimeInterval
22 |
23 |   public init(qos: DispatchQoS = .current, interval: TimeInterval, tolerance: DispatchTimeInterval? = nil)
   |                                   |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                   `- note: The missing import of module 'CurrentQoS' will be added implicitly
24 |   {
25 |     let queue = ValidatedQueue(label: "timerstream", qos: qos)
[45/51] Compiling ReactiveStreams stream.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/stream-timer.swift:23:35: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
21 |   private let timingLeeway: DispatchTimeInterval
22 |
23 |   public init(qos: DispatchQoS = .current, interval: TimeInterval, tolerance: DispatchTimeInterval? = nil)
   |                                   |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                   `- note: The missing import of module 'CurrentQoS' will be added implicitly
24 |   {
25 |     let queue = ValidatedQueue(label: "timerstream", qos: qos)
[46/51] Compiling ReactiveStreams stream-reduce.swift
[47/51] Compiling ReactiveStreams stream-skip.swift
[48/51] Compiling ReactiveStreams stream-split.swift
[49/51] Compiling ReactiveStreams subscriber.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/subscriber.swift:9:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol Subscriber: class
   |                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   associatedtype Value
/host/spi-builder-workspace/Sources/ReactiveStreams/validated-queue.swift:15:50: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
13 |   let queue: DispatchQueue
14 |
15 |   public init(label: String, qos: DispatchQoS = .current)
   |                                                  |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                                  `- note: The missing import of module 'CurrentQoS' will be added implicitly
16 |   {
17 |     self.queue = DispatchQueue(label: label+"-\(qos.qosClass)", qos: qos)
[50/51] Compiling ReactiveStreams subscription.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/subscriber.swift:9:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol Subscriber: class
   |                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   associatedtype Value
/host/spi-builder-workspace/Sources/ReactiveStreams/validated-queue.swift:15:50: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
13 |   let queue: DispatchQueue
14 |
15 |   public init(label: String, qos: DispatchQoS = .current)
   |                                                  |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                                  `- note: The missing import of module 'CurrentQoS' will be added implicitly
16 |   {
17 |     self.queue = DispatchQueue(label: label+"-\(qos.qosClass)", qos: qos)
[51/51] Compiling ReactiveStreams validated-queue.swift
/host/spi-builder-workspace/Sources/ReactiveStreams/subscriber.swift:9:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 7 | //
 8 |
 9 | public protocol Subscriber: class
   |                             `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
10 | {
11 |   associatedtype Value
/host/spi-builder-workspace/Sources/ReactiveStreams/validated-queue.swift:15:50: warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
13 |   let queue: DispatchQueue
14 |
15 |   public init(label: String, qos: DispatchQoS = .current)
   |                                                  |- warning: static property 'current' cannot be used in a default argument value because 'CurrentQoS' was not imported by this file; this is an error in the Swift 6 language mode
   |                                                  `- note: The missing import of module 'CurrentQoS' will be added implicitly
16 |   {
17 |     self.queue = DispatchQueue(label: label+"-\(qos.qosClass)", qos: qos)
Build complete! (24.66s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "catomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.5.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/glessard/CAtomics.git"
    },
    {
      "identity" : "currentqos",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/glessard/CurrentQoS.git"
    },
    {
      "identity" : "deferred",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.7.1",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/glessard/deferred.git"
    }
  ],
  "manifest_display_name" : "ReactiveStreams",
  "name" : "ReactiveStreams",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ReactiveStreams",
      "targets" : [
        "ReactiveStreams"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "4.2",
    "5"
  ],
  "targets" : [
    {
      "c99name" : "ReactiveStreamsTests",
      "module_type" : "SwiftTarget",
      "name" : "ReactiveStreamsTests",
      "path" : "Tests/ReactiveStreamsTests",
      "sources" : [
        "TestError.swift",
        "XCTestManifests.swift",
        "deferredTests.swift",
        "eventTests.swift",
        "filterTests.swift",
        "flatMapTests.swift",
        "mapTests.swift",
        "mergeTests.swift",
        "notificationTests.swift",
        "nzRandom.swift",
        "onRequestTests.swift",
        "postBoxTests.swift",
        "reduceTests.swift",
        "streamTests.swift",
        "subscriberTests.swift",
        "timerTests.swift"
      ],
      "target_dependencies" : [
        "ReactiveStreams"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ReactiveStreams",
      "module_type" : "SwiftTarget",
      "name" : "ReactiveStreams",
      "path" : "Sources/ReactiveStreams",
      "product_dependencies" : [
        "CAtomics",
        "CurrentQoS",
        "deferred"
      ],
      "product_memberships" : [
        "ReactiveStreams"
      ],
      "sources" : [
        "deferred-final.swift",
        "deferred-next.swift",
        "deferred-stream.swift",
        "deferred-subscriber.swift",
        "event.swift",
        "publisher.swift",
        "stream-filter.swift",
        "stream-final.swift",
        "stream-limited.swift",
        "stream-map.swift",
        "stream-merge.swift",
        "stream-next.swift",
        "stream-notifications.swift",
        "stream-notifier.swift",
        "stream-onrequest.swift",
        "stream-paused.swift",
        "stream-post.swift",
        "stream-reduce.swift",
        "stream-skip.swift",
        "stream-split.swift",
        "stream-substream.swift",
        "stream-timer.swift",
        "stream.swift",
        "subscriber.swift",
        "subscription.swift",
        "validated-queue.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.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.