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 Futures, reference 0.1.2 (374088), with Swift 6.2 (beta) for Linux on 17 Jun 2025 16:33:47 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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/dfunckt/swift-futures.git
Reference: 0.1.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/dfunckt/swift-futures
 * tag               0.1.2      -> FETCH_HEAD
HEAD is now at 374088d Revert "Simplify ReadyQueue node implementation"
Cloned https://github.com/dfunckt/swift-futures.git
Revision (git rev-parse @):
374088daeb749d19b89f81955984e2230bcbeaad
SUCCESS checkout https://github.com/dfunckt/swift-futures.git at 0.1.2
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/dfunckt/swift-futures.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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/5] Write sources
[3/5] Compiling FuturesPrivate Private.c
[4/5] Write swift-version-24593BA9C3E375BF.txt
[6/22] Compiling FuturesSync AtomicUnboundedMPSCQueue.swift
[7/22] Compiling FuturesSync AtomicUnboundedSPSCQueue.swift
[8/24] Compiling FuturesSync UnfairLock.swift
[9/24] Compiling FuturesSync Private.swift
[10/24] Emitting module FuturesSync
[11/24] Compiling FuturesSync AtomicSPMCQueue.swift
[12/24] Compiling FuturesSync AtomicSPSCQueue.swift
[13/24] Compiling FuturesSync AtomicMPSCQueue.swift
[14/24] Compiling FuturesSync AtomicQueueBuffer.swift
[15/24] Compiling FuturesSync Backoff.swift
[16/24] Compiling FuturesSync Locking.swift
[17/24] Compiling FuturesSync AtomicValue.swift
[18/24] Compiling FuturesSync AtomicQueue.swift
[19/24] Compiling FuturesSync AtomicMPMCQueue.swift
[20/24] Compiling FuturesSync PosixLock.swift
[21/24] Compiling FuturesSync SpinLock.swift
[22/24] Compiling FuturesSync Atomic.swift
[23/24] Compiling FuturesSync AtomicEnum.swift
[24/24] Compiling FuturesSync AtomicRef.swift
[26/157] Compiling Futures GenerateStream.swift
[27/157] Compiling Futures HandleEventsStream.swift
[28/157] Compiling Futures JoinStream+Arity.swift
[29/157] Compiling Futures JoinStream.swift
[30/157] Compiling Futures JustStream.swift
[31/157] Compiling Futures LatestStream.swift
[32/157] Compiling Futures LazyStream.swift
[33/157] Compiling Futures MapKeyPathStream+Arity.swift
[34/157] Compiling Futures MapKeyPathStream.swift
[35/157] Compiling Futures MapResultStream.swift
[36/157] Compiling Futures MapStream.swift
[37/157] Compiling Futures MatchEitherStream.swift
[38/157] Compiling Futures MatchOptionalStream.swift
[39/157] Compiling Futures MatchResultStream.swift
[40/157] Compiling Futures MergeAllStream.swift
[41/157] Compiling Futures MergeStream+Arity.swift
[42/157] Compiling Futures MergeStream.swift
[43/157] Compiling Futures MulticastStream.swift
[44/175] Compiling Futures Cancellable.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[45/175] Compiling Futures Channel.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[46/175] Compiling Futures ChannelImpl.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[47/175] Compiling Futures ChannelMPSCBufferBounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[48/175] Compiling Futures ChannelMPSCBufferUnbounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[49/175] Compiling Futures ChannelMPSCPark.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[50/175] Compiling Futures ChannelSPSCBufferBounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[51/175] Compiling Futures ChannelSPSCBufferUnbounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[52/175] Compiling Futures ChannelSPSCPark.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[53/175] Compiling Futures ChannelSlotBounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[54/175] Compiling Futures ChannelSlotUnbounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[55/175] Compiling Futures Either.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[56/175] Compiling Futures Executor.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[57/175] Compiling Futures QueueExecutor.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[58/175] Compiling Futures RunLoopExecutor.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[59/175] Compiling Futures ThreadExecutor.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[60/175] Compiling Futures Extensions.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[61/175] Compiling Futures Future.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[62/175] Compiling Futures AbortFuture.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
[63/175] Compiling Futures AssertNoErrorFuture.swift
[64/175] Compiling Futures BreakpointFuture.swift
[65/175] Compiling Futures CatchErrorFuture.swift
[66/175] Compiling Futures FlatMapFuture.swift
[67/175] Compiling Futures FlattenFuture.swift
[68/175] Compiling Futures FlattenResultFuture.swift
[69/175] Compiling Futures FutureStream.swift
[70/175] Compiling Futures HandleEventsFuture.swift
[71/175] Compiling Futures IgnoreOutputFuture.swift
[72/175] Compiling Futures JoinAllFuture.swift
[73/175] Compiling Futures JoinFuture+Arity.swift
[74/175] Compiling Futures JoinFuture.swift
[75/175] Compiling Futures LazyFuture.swift
[76/175] Compiling Futures MapFuture.swift
[77/175] Compiling Futures MapKeyPathFuture+Arity.swift
[78/175] Compiling Futures MapKeyPathFuture.swift
[79/175] Compiling Futures MapResultFuture.swift
[80/175] Compiling Futures MatchEitherFuture.swift
[81/175] Compiling Futures MatchOptionalFuture.swift
[82/175] Compiling Futures TaskRunner.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[83/175] Compiling Futures TaskScheduler.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[84/175] Compiling Futures ThreadLocal.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[85/175] Compiling Futures Poll.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[86/175] Compiling Futures Promise.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[87/175] Compiling Futures Result.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[88/175] Compiling Futures Sink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[89/175] Compiling Futures AssertNoErrorSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[90/175] Compiling Futures BlockingSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[91/175] Compiling Futures BufferSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[92/175] Compiling Futures CollectSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[93/175] Compiling Futures FlatMapSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[94/175] Compiling Futures MapErrorSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[95/175] Compiling Futures MapSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[96/175] Compiling Futures SetFailureTypeSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[97/175] Compiling Futures SinkCloseFuture.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[98/175] Compiling Futures SinkFlushFuture.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[99/175] Compiling Futures SinkSendAllFuture.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[100/175] Compiling Futures SinkSendFuture.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
[101/175] Compiling Futures NeverStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[102/175] Compiling Futures OptionalStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[103/175] Compiling Futures OutputStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[104/175] Compiling Futures PollOnStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[105/175] Compiling Futures PrefixStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[106/175] Compiling Futures PrefixUntilOutputStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[107/175] Compiling Futures PrefixWhileStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[108/175] Compiling Futures PrintStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[109/175] Compiling Futures ReferenceStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[110/175] Compiling Futures RemoveDuplicatesStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[111/175] Compiling Futures RepeatStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[112/175] Compiling Futures ReplaceEmptyStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[113/175] Compiling Futures ReplaceErrorStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[114/175] Compiling Futures ScanStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[115/175] Compiling Futures SequenceStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[116/175] Compiling Futures SetFailureTypeStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[117/175] Compiling Futures ShareStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[118/175] Compiling Futures StreamAllSatisfyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[119/175] Compiling Futures Stream.swift
[120/175] Compiling Futures AbortStream.swift
[121/175] Compiling Futures AssertNoErrorStream.swift
[122/175] Compiling Futures BreakpointStream.swift
[123/175] Compiling Futures BufferStream.swift
[124/175] Compiling Futures CatchErrorStream.swift
[125/175] Compiling Futures CompactMapStream.swift
[126/175] Compiling Futures CompleteOnErrorStream.swift
[127/175] Compiling Futures ConcatenateStream.swift
[128/175] Compiling Futures DropStream.swift
[129/175] Compiling Futures DropUntilOutputStream.swift
[130/175] Compiling Futures DropWhileStream.swift
[131/175] Compiling Futures EmptyStream.swift
[132/175] Compiling Futures EnumerateStream.swift
[133/175] Compiling Futures FilterStream.swift
[134/175] Compiling Futures FlatMapStream.swift
[135/175] Compiling Futures FlattenResultStream.swift
[136/175] Compiling Futures FlattenStream.swift
[137/175] Compiling Futures ForEachStream.swift
[138/175] Compiling Futures MatchResultFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[139/175] Compiling Futures NeverFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[140/175] Compiling Futures PeekFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[141/175] Compiling Futures PollOnFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[142/175] Compiling Futures PrintFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[143/175] Compiling Futures ReadyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[144/175] Compiling Futures ReferenceFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[145/175] Compiling Futures ReplaceErrorFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[146/175] Compiling Futures ReplaceOutputFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[147/175] Compiling Futures SelectAnyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[148/175] Compiling Futures SelectFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[149/175] Compiling Futures SetFailureTypeFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[150/175] Compiling Futures ThenFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[151/175] Compiling Futures TryLazyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[152/175] Compiling Futures TryMapFuture.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[153/175] Compiling Futures AdaptiveQueue.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[154/175] Compiling Futures AtomicWaker.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[155/175] Compiling Futures CircularBuffer.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[156/175] Compiling Futures Private.swift
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[157/175] Emitting module Futures
/host/spi-builder-workspace/Sources/Futures/Executor.swift:166:9: warning: no calls to throwing functions occur within 'try' expression
164 |     @inlinable
165 |     public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Failure> {
166 |         try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
167 |     }
168 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:171:9: warning: no calls to throwing functions occur within 'try' expression
169 |     @inlinable
170 |     public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Failure> {
171 |         try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
    |         `- warning: no calls to throwing functions occur within 'try' expression
172 |     }
173 | }
/host/spi-builder-workspace/Sources/Futures/Internal/AtomicWaker.swift:20:20: warning: static property 'waiting' produces an empty option set
 18 |         var rawValue: AtomicUInt.RawValue
 19 |
 20 |         static let waiting = State(rawValue: 0)
    |                    |- warning: static property 'waiting' produces an empty option set
    |                    `- note: use [] to silence this warning
 21 |         static let registering = State(rawValue: 1)
 22 |         static let notifying = State(rawValue: 2)
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:35: warning: will never be executed
23 |                 $0.mapError {
24 |                     // swiftlint:disable:next force_cast
25 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
26 |                 }
27 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:35:35: warning: will never be executed
33 |                 $0.mapError {
34 |                     // swiftlint:disable:next force_cast
35 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |                 }
37 |             }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:45:35: warning: will never be executed
43 |                 $0.mapError {
44 |                     // swiftlint:disable:next force_cast
45 |                     $0.mapError { $0 as! Failure }
   |                                 | `- warning: will never be executed
   |                                 `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
46 |                 }
47 |             }
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:41: warning: will never be executed
33 |         _base = .init(base: base) {
34 |             // swiftlint:disable:next force_cast
35 |             $0._makeResult().mapError { $0 as! Failure }
   |                                       | `- warning: will never be executed
   |                                       `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 |         }
37 |     }
[158/175] Compiling Futures StreamContainsFuture.swift
[159/175] Compiling Futures StreamContainsWhereFuture.swift
[160/175] Compiling Futures StreamFirstFuture.swift
[161/175] Compiling Futures StreamFirstWhereFuture.swift
[162/175] Compiling Futures StreamForwardFuture.swift
[163/175] Compiling Futures StreamFuture.swift
[164/175] Compiling Futures StreamLastFuture.swift
[165/175] Compiling Futures StreamLastWhereFuture.swift
[166/175] Compiling Futures StreamReduceFuture.swift
[167/175] Compiling Futures StreamReduceIntoFuture.swift
[168/175] Compiling Futures StreamReplayBuffer.swift
[169/175] Compiling Futures SwitchToLatestStream.swift
[170/175] Compiling Futures TryMapStream.swift
[171/175] Compiling Futures UnfoldStream.swift
[172/175] Compiling Futures YieldStream.swift
[173/175] Compiling Futures ZipStream+Arity.swift
[174/175] Compiling Futures ZipStream.swift
[175/175] Compiling Futures Task.swift
[177/183] Compiling FuturesTestSupport TestError.swift
[178/183] Compiling FuturesTestSupport Stream.swift
[179/183] Emitting module FuturesTestSupport
[180/183] Compiling FuturesTestSupport Assert.swift
[181/183] Compiling FuturesTestSupport TestCase.swift
[182/183] Compiling FuturesTestSupport Future.swift
[183/183] Compiling FuturesTestSupport Module.swift
Build complete! (22.59s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Futures",
  "name" : "Futures",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "Futures",
      "targets" : [
        "Futures"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "FuturesSync",
      "targets" : [
        "FuturesSync"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FuturesTests",
      "module_type" : "SwiftTarget",
      "name" : "FuturesTests",
      "path" : "Tests/FuturesTests",
      "sources" : [
        "ChannelTests.swift",
        "ExecutorTests.swift",
        "FutureTests.swift",
        "ReadmeTests.swift",
        "StreamTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Futures",
        "FuturesTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FuturesTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "FuturesTestSupport",
      "path" : "Sources/FuturesTestSupport",
      "sources" : [
        "Assert.swift",
        "Future.swift",
        "Module.swift",
        "Stream.swift",
        "TestCase.swift",
        "TestError.swift"
      ],
      "target_dependencies" : [
        "Futures",
        "FuturesSync"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FuturesSyncTests",
      "module_type" : "SwiftTarget",
      "name" : "FuturesSyncTests",
      "path" : "Tests/FuturesSyncTests",
      "sources" : [
        "AtomicQueueTests.swift",
        "AtomicRefTests.swift",
        "AtomicValueTests.swift",
        "LockingTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "FuturesSync",
        "FuturesTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FuturesSync",
      "module_type" : "SwiftTarget",
      "name" : "FuturesSync",
      "path" : "Sources/FuturesSync",
      "product_memberships" : [
        "Futures",
        "FuturesSync"
      ],
      "sources" : [
        "Atomic.swift",
        "Atomic/AtomicEnum.swift",
        "Atomic/AtomicRef.swift",
        "Atomic/AtomicValue.swift",
        "AtomicQueue.swift",
        "AtomicQueue/AtomicMPMCQueue.swift",
        "AtomicQueue/AtomicMPSCQueue.swift",
        "AtomicQueue/AtomicQueueBuffer.swift",
        "AtomicQueue/AtomicSPMCQueue.swift",
        "AtomicQueue/AtomicSPSCQueue.swift",
        "AtomicQueue/AtomicUnboundedMPSCQueue.swift",
        "AtomicQueue/AtomicUnboundedSPSCQueue.swift",
        "Backoff.swift",
        "Locking.swift",
        "Locking/PosixLock.swift",
        "Locking/SpinLock.swift",
        "Locking/UnfairLock.swift",
        "Private.swift"
      ],
      "target_dependencies" : [
        "FuturesPrivate"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FuturesPrivate",
      "module_type" : "ClangTarget",
      "name" : "FuturesPrivate",
      "path" : "Sources/FuturesPrivate",
      "product_memberships" : [
        "Futures",
        "FuturesSync"
      ],
      "sources" : [
        "Private.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Futures",
      "module_type" : "SwiftTarget",
      "name" : "Futures",
      "path" : "Sources/Futures",
      "product_memberships" : [
        "Futures"
      ],
      "sources" : [
        "Cancellable.swift",
        "Channel.swift",
        "Channel/ChannelImpl.swift",
        "Channel/ChannelMPSCBufferBounded.swift",
        "Channel/ChannelMPSCBufferUnbounded.swift",
        "Channel/ChannelMPSCPark.swift",
        "Channel/ChannelSPSCBufferBounded.swift",
        "Channel/ChannelSPSCBufferUnbounded.swift",
        "Channel/ChannelSPSCPark.swift",
        "Channel/ChannelSlotBounded.swift",
        "Channel/ChannelSlotUnbounded.swift",
        "Either.swift",
        "Executor.swift",
        "Executor/QueueExecutor.swift",
        "Executor/RunLoopExecutor.swift",
        "Executor/ThreadExecutor.swift",
        "Extensions.swift",
        "Future.swift",
        "Future/AbortFuture.swift",
        "Future/AssertNoErrorFuture.swift",
        "Future/BreakpointFuture.swift",
        "Future/CatchErrorFuture.swift",
        "Future/FlatMapFuture.swift",
        "Future/FlattenFuture.swift",
        "Future/FlattenResultFuture.swift",
        "Future/FutureStream.swift",
        "Future/HandleEventsFuture.swift",
        "Future/IgnoreOutputFuture.swift",
        "Future/JoinAllFuture.swift",
        "Future/JoinFuture+Arity.swift",
        "Future/JoinFuture.swift",
        "Future/LazyFuture.swift",
        "Future/MapFuture.swift",
        "Future/MapKeyPathFuture+Arity.swift",
        "Future/MapKeyPathFuture.swift",
        "Future/MapResultFuture.swift",
        "Future/MatchEitherFuture.swift",
        "Future/MatchOptionalFuture.swift",
        "Future/MatchResultFuture.swift",
        "Future/NeverFuture.swift",
        "Future/PeekFuture.swift",
        "Future/PollOnFuture.swift",
        "Future/PrintFuture.swift",
        "Future/ReadyFuture.swift",
        "Future/ReferenceFuture.swift",
        "Future/ReplaceErrorFuture.swift",
        "Future/ReplaceOutputFuture.swift",
        "Future/SelectAnyFuture.swift",
        "Future/SelectFuture.swift",
        "Future/SetFailureTypeFuture.swift",
        "Future/ThenFuture.swift",
        "Future/TryLazyFuture.swift",
        "Future/TryMapFuture.swift",
        "Internal/AdaptiveQueue.swift",
        "Internal/AtomicWaker.swift",
        "Internal/CircularBuffer.swift",
        "Internal/Private.swift",
        "Internal/TaskRunner.swift",
        "Internal/TaskScheduler.swift",
        "Internal/ThreadLocal.swift",
        "Poll.swift",
        "Promise.swift",
        "Result.swift",
        "Sink.swift",
        "Sink/AssertNoErrorSink.swift",
        "Sink/BlockingSink.swift",
        "Sink/BufferSink.swift",
        "Sink/CollectSink.swift",
        "Sink/FlatMapSink.swift",
        "Sink/MapErrorSink.swift",
        "Sink/MapSink.swift",
        "Sink/SetFailureTypeSink.swift",
        "Sink/SinkCloseFuture.swift",
        "Sink/SinkFlushFuture.swift",
        "Sink/SinkSendAllFuture.swift",
        "Sink/SinkSendFuture.swift",
        "Stream.swift",
        "Stream/AbortStream.swift",
        "Stream/AssertNoErrorStream.swift",
        "Stream/BreakpointStream.swift",
        "Stream/BufferStream.swift",
        "Stream/CatchErrorStream.swift",
        "Stream/CompactMapStream.swift",
        "Stream/CompleteOnErrorStream.swift",
        "Stream/ConcatenateStream.swift",
        "Stream/DropStream.swift",
        "Stream/DropUntilOutputStream.swift",
        "Stream/DropWhileStream.swift",
        "Stream/EmptyStream.swift",
        "Stream/EnumerateStream.swift",
        "Stream/FilterStream.swift",
        "Stream/FlatMapStream.swift",
        "Stream/FlattenResultStream.swift",
        "Stream/FlattenStream.swift",
        "Stream/ForEachStream.swift",
        "Stream/GenerateStream.swift",
        "Stream/HandleEventsStream.swift",
        "Stream/JoinStream+Arity.swift",
        "Stream/JoinStream.swift",
        "Stream/JustStream.swift",
        "Stream/LatestStream.swift",
        "Stream/LazyStream.swift",
        "Stream/MapKeyPathStream+Arity.swift",
        "Stream/MapKeyPathStream.swift",
        "Stream/MapResultStream.swift",
        "Stream/MapStream.swift",
        "Stream/MatchEitherStream.swift",
        "Stream/MatchOptionalStream.swift",
        "Stream/MatchResultStream.swift",
        "Stream/MergeAllStream.swift",
        "Stream/MergeStream+Arity.swift",
        "Stream/MergeStream.swift",
        "Stream/MulticastStream.swift",
        "Stream/NeverStream.swift",
        "Stream/OptionalStream.swift",
        "Stream/OutputStream.swift",
        "Stream/PollOnStream.swift",
        "Stream/PrefixStream.swift",
        "Stream/PrefixUntilOutputStream.swift",
        "Stream/PrefixWhileStream.swift",
        "Stream/PrintStream.swift",
        "Stream/ReferenceStream.swift",
        "Stream/RemoveDuplicatesStream.swift",
        "Stream/RepeatStream.swift",
        "Stream/ReplaceEmptyStream.swift",
        "Stream/ReplaceErrorStream.swift",
        "Stream/ScanStream.swift",
        "Stream/SequenceStream.swift",
        "Stream/SetFailureTypeStream.swift",
        "Stream/ShareStream.swift",
        "Stream/StreamAllSatisfyFuture.swift",
        "Stream/StreamContainsFuture.swift",
        "Stream/StreamContainsWhereFuture.swift",
        "Stream/StreamFirstFuture.swift",
        "Stream/StreamFirstWhereFuture.swift",
        "Stream/StreamForwardFuture.swift",
        "Stream/StreamFuture.swift",
        "Stream/StreamLastFuture.swift",
        "Stream/StreamLastWhereFuture.swift",
        "Stream/StreamReduceFuture.swift",
        "Stream/StreamReduceIntoFuture.swift",
        "Stream/StreamReplayBuffer.swift",
        "Stream/SwitchToLatestStream.swift",
        "Stream/TryMapStream.swift",
        "Stream/UnfoldStream.swift",
        "Stream/YieldStream.swift",
        "Stream/ZipStream+Arity.swift",
        "Stream/ZipStream.swift",
        "Task.swift"
      ],
      "target_dependencies" : [
        "FuturesSync"
      ],
      "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.