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 OperationPlus, reference 1.6.0 (1340f9), with Swift 6.2 (beta) for Linux on 20 Jun 2025 10:00:48 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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/ChimeHQ/OperationPlus.git
Reference: 1.6.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/ChimeHQ/OperationPlus
 * tag               1.6.0      -> FETCH_HEAD
HEAD is now at 1340f95 availability annotation for tests
Cloned https://github.com/ChimeHQ/OperationPlus.git
Revision (git rev-parse @):
1340f95dce3e93d742497d88db18f8676f4badf4
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ChimeHQ/OperationPlus.git at 1.6.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/ChimeHQ/OperationPlus.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/25] Emitting module OperationPlus
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
/host/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
/host/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
/host/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
/host/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
[5/25] Compiling OperationPlus AsyncBlockConsumerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[6/25] Compiling OperationPlus AsyncBlockConsumerProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[7/25] Compiling OperationPlus AsyncBlockOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerOperation.swift:12:14: warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerOperation
12 | public class AsyncBlockConsumerOperation<Input>: AsyncConsumerOperation<Input> {
   |              `- warning: class 'AsyncBlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping () -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockConsumerProducerOperation.swift:12:14: warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockConsumerProducerOperation
12 | public class AsyncBlockConsumerProducerOperation<Input, Output>: AsyncConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'AsyncBlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (Input, @escaping (Output?) -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockOperation.swift:12:14: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An operation for enqueuing inline work that can be completed with a callback
12 | public class AsyncBlockOperation: AsyncOperation {
   |              `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping () -> Void) -> Void
14 |
[8/27] Compiling OperationPlus AsyncBlockProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[9/27] Compiling OperationPlus AsyncConsumerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[10/27] Compiling OperationPlus AsyncConsumerProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncBlockProducerOperation.swift:12:14: warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of BlockProducerOperation
12 | public class AsyncBlockProducerOperation<Output>: AsyncProducerOperation<Output> {
   |              `- warning: class 'AsyncBlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias CompletionHandler = (@escaping (Output?) -> Void) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerOperation.swift:12:12: warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerOperation
12 | open class AsyncConsumerOperation<Input>: ConsumerOperation<Input> {
   |            `- warning: class 'AsyncConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncConsumerProducerOperation.swift:12:12: warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous variant of ConsumerProducerOperation
12 | open class AsyncConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |            `- warning: class 'AsyncConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     override open var isAsynchronous: Bool {
14 |         return true
[11/27] Compiling OperationPlus Operation+Dependencies.swift
[12/27] Compiling OperationPlus OperationQueue+Creation.swift
[13/27] Compiling OperationPlus OperationQueue+Dependencies.swift
[14/27] Compiling OperationPlus BlockProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
/host/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
[15/27] Compiling OperationPlus ConsumerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
/host/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
[16/27] Compiling OperationPlus ConsumerProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/BlockProducerOperation.swift:12:14: warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ProducerOperation
12 | public class BlockProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'BlockProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: () -> Output?
14 |
/host/spi-builder-workspace/Sources/OperationPlus/ConsumerProducerOperation.swift:13:12: warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// An operation that depends on and uses the value of a ProducerOperation, and also
12 | /// itself produces a value
13 | open class ConsumerProducerOperation<Input, Output>: ProducerOperation<Output> {
   |            `- warning: class 'ConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let producerOp: ProducerOperation<Input>
15 |
[17/27] Compiling OperationPlus AsyncOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[18/27] Compiling OperationPlus AsyncProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[19/27] Compiling OperationPlus BaseOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/AsyncOperation.swift:11:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncOperation : BaseOperation {
   |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/AsyncProducerOperation.swift:11:12: warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class AsyncProducerOperation<Output> : ProducerOperation<Output> {
   |            `- warning: class 'AsyncProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     override open var isAsynchronous: Bool {
13 |         return true
/host/spi-builder-workspace/Sources/OperationPlus/BaseOperation.swift:11:12: warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
  9 | import Foundation
 10 |
 11 | open class BaseOperation : Operation {
    |            `- warning: class 'BaseOperation' must restate inherited '@unchecked Sendable' conformance
 12 |     public enum State {
 13 |         case notStarted
[20/27] Compiling OperationPlus BaseOperationError.swift
/host/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
[21/27] Compiling OperationPlus BlockConsumerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
[22/27] Compiling OperationPlus BlockConsumerProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/BlockConsumerOperation.swift:12:14: warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerOperation
12 | public class BlockConsumerOperation<Input>: ConsumerOperation<Input> {
   |              `- warning: class 'BlockConsumerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     private let block: (Input) -> Void
14 |
/host/spi-builder-workspace/Sources/OperationPlus/BlockConsumerProducerOperation.swift:12:14: warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A block-based version of ConsumerProducerOperation
12 | public class BlockConsumerProducerOperation<Input, Output>: ConsumerProducerOperation<Input, Output> {
   |              `- warning: class 'BlockConsumerProducerOperation' must restate inherited '@unchecked Sendable' conformance
13 |     public typealias Block = (Input) -> Output?
14 |
[23/27] Compiling OperationPlus OperationQueue+Emptied.swift
/host/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Emptied.swift:14:40: warning: passing non-Sendable parameter 'completionBlock' to function expecting a '@Sendable' closure
11 | extension OperationQueue {
12 |     @discardableResult
13 |     public func currentOperationsFinished(completionBlock: @escaping () -> Void) -> Operation {
   |                                           `- note: parameter 'completionBlock' is implicitly non-Sendable
14 |         let op = BlockOperation(block: completionBlock)
   |                                        `- warning: passing non-Sendable parameter 'completionBlock' to function expecting a '@Sendable' closure
15 |
16 |         addOperation(op, dependencies: self.operations)
/host/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Enqueuing.swift:58:44: warning: passing non-Sendable parameter 'block' to function expecting a '@Sendable' closure
 55 |     /// - Parameter delay: The amount of time to wait before scheduling op.
 56 |     /// - Parameter block: The block to be invoked on the queue.
 57 |     public func addOperation(afterDelay delay: TimeInterval, block: @escaping () -> Void) {
    |                                                              `- note: parameter 'block' is implicitly non-Sendable
 58 |         addOperation(BlockOperation(block: block), afterDelay: delay)
    |                                            `- warning: passing non-Sendable parameter 'block' to function expecting a '@Sendable' closure
 59 |     }
 60 | }
[24/27] Compiling OperationPlus OperationQueue+Enqueuing.swift
/host/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Emptied.swift:14:40: warning: passing non-Sendable parameter 'completionBlock' to function expecting a '@Sendable' closure
11 | extension OperationQueue {
12 |     @discardableResult
13 |     public func currentOperationsFinished(completionBlock: @escaping () -> Void) -> Operation {
   |                                           `- note: parameter 'completionBlock' is implicitly non-Sendable
14 |         let op = BlockOperation(block: completionBlock)
   |                                        `- warning: passing non-Sendable parameter 'completionBlock' to function expecting a '@Sendable' closure
15 |
16 |         addOperation(op, dependencies: self.operations)
/host/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Enqueuing.swift:58:44: warning: passing non-Sendable parameter 'block' to function expecting a '@Sendable' closure
 55 |     /// - Parameter delay: The amount of time to wait before scheduling op.
 56 |     /// - Parameter block: The block to be invoked on the queue.
 57 |     public func addOperation(afterDelay delay: TimeInterval, block: @escaping () -> Void) {
    |                                                              `- note: parameter 'block' is implicitly non-Sendable
 58 |         addOperation(BlockOperation(block: block), afterDelay: delay)
    |                                            `- warning: passing non-Sendable parameter 'block' to function expecting a '@Sendable' closure
 59 |     }
 60 | }
[25/27] Compiling OperationPlus OperationQueue+Preconditions.swift
/host/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Emptied.swift:14:40: warning: passing non-Sendable parameter 'completionBlock' to function expecting a '@Sendable' closure
11 | extension OperationQueue {
12 |     @discardableResult
13 |     public func currentOperationsFinished(completionBlock: @escaping () -> Void) -> Operation {
   |                                           `- note: parameter 'completionBlock' is implicitly non-Sendable
14 |         let op = BlockOperation(block: completionBlock)
   |                                        `- warning: passing non-Sendable parameter 'completionBlock' to function expecting a '@Sendable' closure
15 |
16 |         addOperation(op, dependencies: self.operations)
/host/spi-builder-workspace/Sources/OperationPlus/Extensions/OperationQueue+Enqueuing.swift:58:44: warning: passing non-Sendable parameter 'block' to function expecting a '@Sendable' closure
 55 |     /// - Parameter delay: The amount of time to wait before scheduling op.
 56 |     /// - Parameter block: The block to be invoked on the queue.
 57 |     public func addOperation(afterDelay delay: TimeInterval, block: @escaping () -> Void) {
    |                                                              `- note: parameter 'block' is implicitly non-Sendable
 58 |         addOperation(BlockOperation(block: block), afterDelay: delay)
    |                                            `- warning: passing non-Sendable parameter 'block' to function expecting a '@Sendable' closure
 59 |     }
 60 | }
[26/27] Compiling OperationPlus Publishers.swift
/host/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
[27/27] Compiling OperationPlus ProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationPlus/ProducerOperation.swift:11:12: warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | open class ProducerOperation<Output> : BaseOperation {
   |            `- warning: class 'ProducerOperation' must restate inherited '@unchecked Sendable' conformance
12 |     public enum OutputCompletionBlockBehavior {
13 |         case onCompletionOnly
[29/33] Emitting module OperationTestingPlus
/host/spi-builder-workspace/Sources/OperationTestingPlus/FulfillExpectationOperation.swift:13:14: warning: class 'FulfillExpectationOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// This Operation subclass will fulfill an `XCTestExpectation` when it
12 | /// completes.
13 | public class FulfillExpectationOperation: Operation {
   |              `- warning: class 'FulfillExpectationOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let expectation: XCTestExpectation
15 |
/host/spi-builder-workspace/Sources/OperationTestingPlus/NeverFinishingOperation.swift:16:14: warning: class 'NeverFinishingOperation' must restate inherited '@unchecked Sendable' conformance
14 | ///
15 | /// Warning: This operation will completely block a serial queue forever
16 | public class NeverFinishingOperation: BaseOperation {
   |              `- warning: class 'NeverFinishingOperation' must restate inherited '@unchecked Sendable' conformance
17 |     public override func main() {
18 |     }
/host/spi-builder-workspace/Sources/OperationTestingPlus/NeverFinishingProducerOperation.swift:16:14: warning: class 'NeverFinishingProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 | ///
15 | /// Warning: This operation will completely block a serial queue forever
16 | public class NeverFinishingProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'NeverFinishingProducerOperation' must restate inherited '@unchecked Sendable' conformance
17 |     public override func main() {
18 |     }
/host/spi-builder-workspace/Sources/OperationTestingPlus/OperationExpectation.swift:14:14: warning: class 'OperationExpectation' must restate inherited '@unchecked Sendable' conformance
12 | /// An expectation that is fulfilled when an operation
13 | /// has finished execution.
14 | public class OperationExpectation: XCTestExpectation {
   |              `- warning: class 'OperationExpectation' must restate inherited '@unchecked Sendable' conformance
15 |     public var queue: OperationQueue
16 |
[30/33] Compiling OperationTestingPlus NeverFinishingOperation.swift
/host/spi-builder-workspace/Sources/OperationTestingPlus/NeverFinishingOperation.swift:16:14: warning: class 'NeverFinishingOperation' must restate inherited '@unchecked Sendable' conformance
14 | ///
15 | /// Warning: This operation will completely block a serial queue forever
16 | public class NeverFinishingOperation: BaseOperation {
   |              `- warning: class 'NeverFinishingOperation' must restate inherited '@unchecked Sendable' conformance
17 |     public override func main() {
18 |     }
[31/33] Compiling OperationTestingPlus NeverFinishingProducerOperation.swift
/host/spi-builder-workspace/Sources/OperationTestingPlus/NeverFinishingProducerOperation.swift:16:14: warning: class 'NeverFinishingProducerOperation' must restate inherited '@unchecked Sendable' conformance
14 | ///
15 | /// Warning: This operation will completely block a serial queue forever
16 | public class NeverFinishingProducerOperation<Output>: ProducerOperation<Output> {
   |              `- warning: class 'NeverFinishingProducerOperation' must restate inherited '@unchecked Sendable' conformance
17 |     public override func main() {
18 |     }
[32/33] Compiling OperationTestingPlus FulfillExpectationOperation.swift
/host/spi-builder-workspace/Sources/OperationTestingPlus/FulfillExpectationOperation.swift:13:14: warning: class 'FulfillExpectationOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// This Operation subclass will fulfill an `XCTestExpectation` when it
12 | /// completes.
13 | public class FulfillExpectationOperation: Operation {
   |              `- warning: class 'FulfillExpectationOperation' must restate inherited '@unchecked Sendable' conformance
14 |     private let expectation: XCTestExpectation
15 |
[33/33] Compiling OperationTestingPlus OperationExpectation.swift
/host/spi-builder-workspace/Sources/OperationTestingPlus/OperationExpectation.swift:14:14: warning: class 'OperationExpectation' must restate inherited '@unchecked Sendable' conformance
12 | /// An expectation that is fulfilled when an operation
13 | /// has finished execution.
14 | public class OperationExpectation: XCTestExpectation {
   |              `- warning: class 'OperationExpectation' must restate inherited '@unchecked Sendable' conformance
15 |     public var queue: OperationQueue
16 |
Build complete! (23.35s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "OperationPlus",
  "name" : "OperationPlus",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "OperationPlus",
      "targets" : [
        "OperationPlus"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "OperationTestingPlus",
      "targets" : [
        "OperationTestingPlus"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "OperationTestingPlus",
      "module_type" : "SwiftTarget",
      "name" : "OperationTestingPlus",
      "path" : "Sources/OperationTestingPlus",
      "product_memberships" : [
        "OperationTestingPlus"
      ],
      "sources" : [
        "FulfillExpectationOperation.swift",
        "NeverFinishingOperation.swift",
        "NeverFinishingProducerOperation.swift",
        "OperationExpectation.swift"
      ],
      "target_dependencies" : [
        "OperationPlus"
      ],
      "type" : "library"
    },
    {
      "c99name" : "OperationPlusTests",
      "module_type" : "SwiftTarget",
      "name" : "OperationPlusTests",
      "path" : "Tests/OperationPlusTests",
      "sources" : [
        "AsyncBlockOperationTests.swift",
        "BaseOperationTests.swift",
        "CombineTests.swift",
        "OperationQueueTests.swift",
        "ProducerConsumerTests.swift",
        "TestHelpers.swift"
      ],
      "target_dependencies" : [
        "OperationPlus",
        "OperationTestingPlus"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OperationPlus",
      "module_type" : "SwiftTarget",
      "name" : "OperationPlus",
      "path" : "Sources/OperationPlus",
      "product_memberships" : [
        "OperationPlus",
        "OperationTestingPlus"
      ],
      "sources" : [
        "AsyncBlockConsumerOperation.swift",
        "AsyncBlockConsumerProducerOperation.swift",
        "AsyncBlockOperation.swift",
        "AsyncBlockProducerOperation.swift",
        "AsyncConsumerOperation.swift",
        "AsyncConsumerProducerOperation.swift",
        "AsyncOperation.swift",
        "AsyncProducerOperation.swift",
        "BaseOperation.swift",
        "BaseOperationError.swift",
        "BlockConsumerOperation.swift",
        "BlockConsumerProducerOperation.swift",
        "BlockProducerOperation.swift",
        "ConsumerOperation.swift",
        "ConsumerProducerOperation.swift",
        "Extensions/Operation+Dependencies.swift",
        "Extensions/OperationQueue+Creation.swift",
        "Extensions/OperationQueue+Dependencies.swift",
        "Extensions/OperationQueue+Emptied.swift",
        "Extensions/OperationQueue+Enqueuing.swift",
        "Extensions/OperationQueue+Preconditions.swift",
        "Extensions/Publishers.swift",
        "ProducerOperation.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.