The Swift Package Index logo.Swift Package Index

Build Information

Failed to build CustomOperation, reference master (ad390a), with Swift 6.1 for Wasm on 30 May 2025 01:37:04 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Cozmonat/CustomOperation.git
Reference: master
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/Cozmonat/CustomOperation
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at ad390aa Refactoring
Cloned https://github.com/Cozmonat/CustomOperation.git
Revision (git rev-parse @):
ad390aa08e7177243ea093677179d39d8060c31c
SUCCESS checkout https://github.com/Cozmonat/CustomOperation.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/Cozmonat/CustomOperation.git
https://github.com/Cozmonat/CustomOperation.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CustomOperation",
  "name" : "CustomOperation",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "CustomOperation",
      "targets" : [
        "CustomOperation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CustomOperation",
      "module_type" : "SwiftTarget",
      "name" : "CustomOperation",
      "path" : "CustomOperation",
      "product_memberships" : [
        "CustomOperation"
      ],
      "sources" : [
        "AsyncOperation.swift",
        "CustomOperation.swift",
        "OperationQueue+AsyncOperation.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/6] Emitting module CustomOperation
/host/spi-builder-workspace/CustomOperation/AsyncOperation.swift:39:25: error: property does not override any property from its superclass
37 |     public typealias Action = (@escaping Done) -> Void
38 |
39 |     override public var isAsynchronous: Bool { return true }
   |                         `- error: property does not override any property from its superclass
40 |
41 |     private var action: Action
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:43:23: error: property does not override any property from its superclass
 41 |     }
 42 |
 43 |     override open var isReady: Bool {
    |                       `- error: property does not override any property from its superclass
 44 |         return isReadyValue
 45 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:47:23: error: property does not override any property from its superclass
 45 |     }
 46 |
 47 |     override open var isExecuting: Bool {
    |                       `- error: property does not override any property from its superclass
 48 |         return isExecutingValue
 49 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:51:23: error: property does not override any property from its superclass
 49 |     }
 50 |
 51 |     override open var isFinished: Bool {
    |                       `- error: property does not override any property from its superclass
 52 |         return isFinishedValue
 53 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:82:47: error: cannot find 'didChangeValue' in scope
 80 |     private var isExecutingValue: Bool = false {
 81 |         willSet { if isExecuting != newValue { willChangeValue(forKey: "isExecuting") } }
 82 |         didSet { if isExecuting != oldValue { didChangeValue(forKey: "isExecuting") } }
    |                                               `- error: cannot find 'didChangeValue' in scope
 83 |     }
 84 |     private var isFinishedValue: Bool = false {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:86:46: error: cannot find 'didChangeValue' in scope
 84 |     private var isFinishedValue: Bool = false {
 85 |         willSet { if isFinished != newValue { willChangeValue(forKey: "isFinished") } }
 86 |         didSet { if isFinished != oldValue { didChangeValue(forKey: "isFinished") } }
    |                                              `- error: cannot find 'didChangeValue' in scope
 87 |     }
 88 |     private var isReadyValue: Bool = false {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:90:43: error: cannot find 'didChangeValue' in scope
 88 |     private var isReadyValue: Bool = false {
 89 |         willSet { if isReady != newValue { willChangeValue(forKey: "isReady") } }
 90 |         didSet { if isReady != oldValue { didChangeValue(forKey: "isReady") } }
    |                                           `- error: cannot find 'didChangeValue' in scope
 91 |     }
 92 |
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:93:24: error: method does not override any method from its superclass
 91 |     }
 92 |
 93 |     override open func main() {
    |                        `- error: method does not override any method from its superclass
 94 |         guard !isCancelled else { return }
 95 |
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:34:29: error: cannot find type 'Operation' in scope
 32 | import Foundation
 33 |
 34 | open class CustomOperation: Operation {
    |                             `- error: cannot find type 'Operation' in scope
 35 |
 36 |     public enum State {
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:34:11: error: cannot find type 'OperationQueue' in scope
 32 | import Foundation
 33 |
 34 | extension OperationQueue {
    |           `- error: cannot find type 'OperationQueue' in scope
 35 |
 36 |     /// Add opertaion to queue that reports finished when called provided completion block
[4/6] Compiling CustomOperation AsyncOperation.swift
/host/spi-builder-workspace/CustomOperation/AsyncOperation.swift:39:25: error: property does not override any property from its superclass
37 |     public typealias Action = (@escaping Done) -> Void
38 |
39 |     override public var isAsynchronous: Bool { return true }
   |                         `- error: property does not override any property from its superclass
40 |
41 |     private var action: Action
[5/6] Compiling CustomOperation OperationQueue+AsyncOperation.swift
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:34:11: error: cannot find type 'OperationQueue' in scope
 32 | import Foundation
 33 |
 34 | extension OperationQueue {
    |           `- error: cannot find type 'OperationQueue' in scope
 35 |
 36 |     /// Add opertaion to queue that reports finished when called provided completion block
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:39:74: error: cannot find type 'Operation' in scope
 37 |     /// - Parameter action: An action with completion
 38 |     @discardableResult
 39 |     public func addOperation(action: @escaping AsyncOperation.Action) -> Operation {
    |                                                                          `- error: cannot find type 'Operation' in scope
 40 |
 41 |         let operation = AsyncOperation(execute: action)
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:51:93: error: cannot find type 'Operation' in scope
 49 |     /// - Parameter action: An action to execute
 50 |     @discardableResult
 51 |     public func addOperation(asyncOn queue: DispatchQueue, action: @escaping () -> Void) -> Operation {
    |                                                                                             `- error: cannot find type 'Operation' in scope
 52 |
 53 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:51:45: error: cannot find type 'DispatchQueue' in scope
 49 |     /// - Parameter action: An action to execute
 50 |     @discardableResult
 51 |     public func addOperation(asyncOn queue: DispatchQueue, action: @escaping () -> Void) -> Operation {
    |                                             `- error: cannot find type 'DispatchQueue' in scope
 52 |
 53 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:69:104: error: cannot find type 'Operation' in scope
 67 |     /// - Parameter action: An action to execute
 68 |     @discardableResult
 69 |     public func addOperation(asyncOn queue: DispatchQueue, action: @escaping AsyncOperation.Action) -> Operation {
    |                                                                                                        `- error: cannot find type 'Operation' in scope
 70 |
 71 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:69:45: error: cannot find type 'DispatchQueue' in scope
 67 |     /// - Parameter action: An action to execute
 68 |     @discardableResult
 69 |     public func addOperation(asyncOn queue: DispatchQueue, action: @escaping AsyncOperation.Action) -> Operation {
    |                                             `- error: cannot find type 'DispatchQueue' in scope
 70 |
 71 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:83:92: error: cannot find type 'Operation' in scope
 81 |     /// - Parameter action: An action to execute
 82 |     @discardableResult
 83 |     public func addOperation(syncOn queue: DispatchQueue, action: @escaping () -> Void) -> Operation {
    |                                                                                            `- error: cannot find type 'Operation' in scope
 84 |
 85 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:83:44: error: cannot find type 'DispatchQueue' in scope
 81 |     /// - Parameter action: An action to execute
 82 |     @discardableResult
 83 |     public func addOperation(syncOn queue: DispatchQueue, action: @escaping () -> Void) -> Operation {
    |                                            `- error: cannot find type 'DispatchQueue' in scope
 84 |
 85 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:101:103: error: cannot find type 'Operation' in scope
 99 |     /// - Parameter action: An action to execute
100 |     @discardableResult
101 |     public func addOperation(syncOn queue: DispatchQueue, action: @escaping AsyncOperation.Action) -> Operation {
    |                                                                                                       `- error: cannot find type 'Operation' in scope
102 |
103 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:101:44: error: cannot find type 'DispatchQueue' in scope
 99 |     /// - Parameter action: An action to execute
100 |     @discardableResult
101 |     public func addOperation(syncOn queue: DispatchQueue, action: @escaping AsyncOperation.Action) -> Operation {
    |                                            `- error: cannot find type 'DispatchQueue' in scope
102 |
103 |         let operation = AsyncOperation { completion in
[6/6] Compiling CustomOperation CustomOperation.swift
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:43:23: error: property does not override any property from its superclass
 41 |     }
 42 |
 43 |     override open var isReady: Bool {
    |                       `- error: property does not override any property from its superclass
 44 |         return isReadyValue
 45 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:47:23: error: property does not override any property from its superclass
 45 |     }
 46 |
 47 |     override open var isExecuting: Bool {
    |                       `- error: property does not override any property from its superclass
 48 |         return isExecutingValue
 49 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:51:23: error: property does not override any property from its superclass
 49 |     }
 50 |
 51 |     override open var isFinished: Bool {
    |                       `- error: property does not override any property from its superclass
 52 |         return isFinishedValue
 53 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:82:47: error: cannot find 'didChangeValue' in scope
 80 |     private var isExecutingValue: Bool = false {
 81 |         willSet { if isExecuting != newValue { willChangeValue(forKey: "isExecuting") } }
 82 |         didSet { if isExecuting != oldValue { didChangeValue(forKey: "isExecuting") } }
    |                                               `- error: cannot find 'didChangeValue' in scope
 83 |     }
 84 |     private var isFinishedValue: Bool = false {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:86:46: error: cannot find 'didChangeValue' in scope
 84 |     private var isFinishedValue: Bool = false {
 85 |         willSet { if isFinished != newValue { willChangeValue(forKey: "isFinished") } }
 86 |         didSet { if isFinished != oldValue { didChangeValue(forKey: "isFinished") } }
    |                                              `- error: cannot find 'didChangeValue' in scope
 87 |     }
 88 |     private var isReadyValue: Bool = false {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:90:43: error: cannot find 'didChangeValue' in scope
 88 |     private var isReadyValue: Bool = false {
 89 |         willSet { if isReady != newValue { willChangeValue(forKey: "isReady") } }
 90 |         didSet { if isReady != oldValue { didChangeValue(forKey: "isReady") } }
    |                                           `- error: cannot find 'didChangeValue' in scope
 91 |     }
 92 |
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:93:24: error: method does not override any method from its superclass
 91 |     }
 92 |
 93 |     override open func main() {
    |                        `- error: method does not override any method from its superclass
 94 |         guard !isCancelled else { return }
 95 |
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:34:29: error: cannot find type 'Operation' in scope
 32 | import Foundation
 33 |
 34 | open class CustomOperation: Operation {
    |                             `- error: cannot find type 'Operation' in scope
 35 |
 36 |     public enum State {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:81:48: error: cannot find 'willChangeValue' in scope
 79 |
 80 |     private var isExecutingValue: Bool = false {
 81 |         willSet { if isExecuting != newValue { willChangeValue(forKey: "isExecuting") } }
    |                                                `- error: cannot find 'willChangeValue' in scope
 82 |         didSet { if isExecuting != oldValue { didChangeValue(forKey: "isExecuting") } }
 83 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:85:47: error: cannot find 'willChangeValue' in scope
 83 |     }
 84 |     private var isFinishedValue: Bool = false {
 85 |         willSet { if isFinished != newValue { willChangeValue(forKey: "isFinished") } }
    |                                               `- error: cannot find 'willChangeValue' in scope
 86 |         didSet { if isFinished != oldValue { didChangeValue(forKey: "isFinished") } }
 87 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:89:44: error: cannot find 'willChangeValue' in scope
 87 |     }
 88 |     private var isReadyValue: Bool = false {
 89 |         willSet { if isReady != newValue { willChangeValue(forKey: "isReady") } }
    |                                            `- error: cannot find 'willChangeValue' in scope
 90 |         didSet { if isReady != oldValue { didChangeValue(forKey: "isReady") } }
 91 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:94:16: error: cannot find 'isCancelled' in scope
 92 |
 93 |     override open func main() {
 94 |         guard !isCancelled else { return }
    |                `- error: cannot find 'isCancelled' in scope
 95 |
 96 |         state = .executing
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/5] Compiling CustomOperation OperationQueue+AsyncOperation.swift
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:34:11: error: cannot find type 'OperationQueue' in scope
 32 | import Foundation
 33 |
 34 | extension OperationQueue {
    |           `- error: cannot find type 'OperationQueue' in scope
 35 |
 36 |     /// Add opertaion to queue that reports finished when called provided completion block
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:39:74: error: cannot find type 'Operation' in scope
 37 |     /// - Parameter action: An action with completion
 38 |     @discardableResult
 39 |     public func addOperation(action: @escaping AsyncOperation.Action) -> Operation {
    |                                                                          `- error: cannot find type 'Operation' in scope
 40 |
 41 |         let operation = AsyncOperation(execute: action)
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:51:93: error: cannot find type 'Operation' in scope
 49 |     /// - Parameter action: An action to execute
 50 |     @discardableResult
 51 |     public func addOperation(asyncOn queue: DispatchQueue, action: @escaping () -> Void) -> Operation {
    |                                                                                             `- error: cannot find type 'Operation' in scope
 52 |
 53 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:51:45: error: cannot find type 'DispatchQueue' in scope
 49 |     /// - Parameter action: An action to execute
 50 |     @discardableResult
 51 |     public func addOperation(asyncOn queue: DispatchQueue, action: @escaping () -> Void) -> Operation {
    |                                             `- error: cannot find type 'DispatchQueue' in scope
 52 |
 53 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:69:104: error: cannot find type 'Operation' in scope
 67 |     /// - Parameter action: An action to execute
 68 |     @discardableResult
 69 |     public func addOperation(asyncOn queue: DispatchQueue, action: @escaping AsyncOperation.Action) -> Operation {
    |                                                                                                        `- error: cannot find type 'Operation' in scope
 70 |
 71 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:69:45: error: cannot find type 'DispatchQueue' in scope
 67 |     /// - Parameter action: An action to execute
 68 |     @discardableResult
 69 |     public func addOperation(asyncOn queue: DispatchQueue, action: @escaping AsyncOperation.Action) -> Operation {
    |                                             `- error: cannot find type 'DispatchQueue' in scope
 70 |
 71 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:83:92: error: cannot find type 'Operation' in scope
 81 |     /// - Parameter action: An action to execute
 82 |     @discardableResult
 83 |     public func addOperation(syncOn queue: DispatchQueue, action: @escaping () -> Void) -> Operation {
    |                                                                                            `- error: cannot find type 'Operation' in scope
 84 |
 85 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:83:44: error: cannot find type 'DispatchQueue' in scope
 81 |     /// - Parameter action: An action to execute
 82 |     @discardableResult
 83 |     public func addOperation(syncOn queue: DispatchQueue, action: @escaping () -> Void) -> Operation {
    |                                            `- error: cannot find type 'DispatchQueue' in scope
 84 |
 85 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:101:103: error: cannot find type 'Operation' in scope
 99 |     /// - Parameter action: An action to execute
100 |     @discardableResult
101 |     public func addOperation(syncOn queue: DispatchQueue, action: @escaping AsyncOperation.Action) -> Operation {
    |                                                                                                       `- error: cannot find type 'Operation' in scope
102 |
103 |         let operation = AsyncOperation { completion in
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:101:44: error: cannot find type 'DispatchQueue' in scope
 99 |     /// - Parameter action: An action to execute
100 |     @discardableResult
101 |     public func addOperation(syncOn queue: DispatchQueue, action: @escaping AsyncOperation.Action) -> Operation {
    |                                            `- error: cannot find type 'DispatchQueue' in scope
102 |
103 |         let operation = AsyncOperation { completion in
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/5] Emitting module CustomOperation
/host/spi-builder-workspace/CustomOperation/AsyncOperation.swift:39:25: error: property does not override any property from its superclass
37 |     public typealias Action = (@escaping Done) -> Void
38 |
39 |     override public var isAsynchronous: Bool { return true }
   |                         `- error: property does not override any property from its superclass
40 |
41 |     private var action: Action
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:43:23: error: property does not override any property from its superclass
 41 |     }
 42 |
 43 |     override open var isReady: Bool {
    |                       `- error: property does not override any property from its superclass
 44 |         return isReadyValue
 45 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:47:23: error: property does not override any property from its superclass
 45 |     }
 46 |
 47 |     override open var isExecuting: Bool {
    |                       `- error: property does not override any property from its superclass
 48 |         return isExecutingValue
 49 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:51:23: error: property does not override any property from its superclass
 49 |     }
 50 |
 51 |     override open var isFinished: Bool {
    |                       `- error: property does not override any property from its superclass
 52 |         return isFinishedValue
 53 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:82:47: error: cannot find 'didChangeValue' in scope
 80 |     private var isExecutingValue: Bool = false {
 81 |         willSet { if isExecuting != newValue { willChangeValue(forKey: "isExecuting") } }
 82 |         didSet { if isExecuting != oldValue { didChangeValue(forKey: "isExecuting") } }
    |                                               `- error: cannot find 'didChangeValue' in scope
 83 |     }
 84 |     private var isFinishedValue: Bool = false {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:86:46: error: cannot find 'didChangeValue' in scope
 84 |     private var isFinishedValue: Bool = false {
 85 |         willSet { if isFinished != newValue { willChangeValue(forKey: "isFinished") } }
 86 |         didSet { if isFinished != oldValue { didChangeValue(forKey: "isFinished") } }
    |                                              `- error: cannot find 'didChangeValue' in scope
 87 |     }
 88 |     private var isReadyValue: Bool = false {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:90:43: error: cannot find 'didChangeValue' in scope
 88 |     private var isReadyValue: Bool = false {
 89 |         willSet { if isReady != newValue { willChangeValue(forKey: "isReady") } }
 90 |         didSet { if isReady != oldValue { didChangeValue(forKey: "isReady") } }
    |                                           `- error: cannot find 'didChangeValue' in scope
 91 |     }
 92 |
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:93:24: error: method does not override any method from its superclass
 91 |     }
 92 |
 93 |     override open func main() {
    |                        `- error: method does not override any method from its superclass
 94 |         guard !isCancelled else { return }
 95 |
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:34:29: error: cannot find type 'Operation' in scope
 32 | import Foundation
 33 |
 34 | open class CustomOperation: Operation {
    |                             `- error: cannot find type 'Operation' in scope
 35 |
 36 |     public enum State {
/host/spi-builder-workspace/CustomOperation/OperationQueue+AsyncOperation.swift:34:11: error: cannot find type 'OperationQueue' in scope
 32 | import Foundation
 33 |
 34 | extension OperationQueue {
    |           `- error: cannot find type 'OperationQueue' in scope
 35 |
 36 |     /// Add opertaion to queue that reports finished when called provided completion block
[4/5] Compiling CustomOperation CustomOperation.swift
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:43:23: error: property does not override any property from its superclass
 41 |     }
 42 |
 43 |     override open var isReady: Bool {
    |                       `- error: property does not override any property from its superclass
 44 |         return isReadyValue
 45 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:47:23: error: property does not override any property from its superclass
 45 |     }
 46 |
 47 |     override open var isExecuting: Bool {
    |                       `- error: property does not override any property from its superclass
 48 |         return isExecutingValue
 49 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:51:23: error: property does not override any property from its superclass
 49 |     }
 50 |
 51 |     override open var isFinished: Bool {
    |                       `- error: property does not override any property from its superclass
 52 |         return isFinishedValue
 53 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:82:47: error: cannot find 'didChangeValue' in scope
 80 |     private var isExecutingValue: Bool = false {
 81 |         willSet { if isExecuting != newValue { willChangeValue(forKey: "isExecuting") } }
 82 |         didSet { if isExecuting != oldValue { didChangeValue(forKey: "isExecuting") } }
    |                                               `- error: cannot find 'didChangeValue' in scope
 83 |     }
 84 |     private var isFinishedValue: Bool = false {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:86:46: error: cannot find 'didChangeValue' in scope
 84 |     private var isFinishedValue: Bool = false {
 85 |         willSet { if isFinished != newValue { willChangeValue(forKey: "isFinished") } }
 86 |         didSet { if isFinished != oldValue { didChangeValue(forKey: "isFinished") } }
    |                                              `- error: cannot find 'didChangeValue' in scope
 87 |     }
 88 |     private var isReadyValue: Bool = false {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:90:43: error: cannot find 'didChangeValue' in scope
 88 |     private var isReadyValue: Bool = false {
 89 |         willSet { if isReady != newValue { willChangeValue(forKey: "isReady") } }
 90 |         didSet { if isReady != oldValue { didChangeValue(forKey: "isReady") } }
    |                                           `- error: cannot find 'didChangeValue' in scope
 91 |     }
 92 |
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:93:24: error: method does not override any method from its superclass
 91 |     }
 92 |
 93 |     override open func main() {
    |                        `- error: method does not override any method from its superclass
 94 |         guard !isCancelled else { return }
 95 |
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:34:29: error: cannot find type 'Operation' in scope
 32 | import Foundation
 33 |
 34 | open class CustomOperation: Operation {
    |                             `- error: cannot find type 'Operation' in scope
 35 |
 36 |     public enum State {
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:81:48: error: cannot find 'willChangeValue' in scope
 79 |
 80 |     private var isExecutingValue: Bool = false {
 81 |         willSet { if isExecuting != newValue { willChangeValue(forKey: "isExecuting") } }
    |                                                `- error: cannot find 'willChangeValue' in scope
 82 |         didSet { if isExecuting != oldValue { didChangeValue(forKey: "isExecuting") } }
 83 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:85:47: error: cannot find 'willChangeValue' in scope
 83 |     }
 84 |     private var isFinishedValue: Bool = false {
 85 |         willSet { if isFinished != newValue { willChangeValue(forKey: "isFinished") } }
    |                                               `- error: cannot find 'willChangeValue' in scope
 86 |         didSet { if isFinished != oldValue { didChangeValue(forKey: "isFinished") } }
 87 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:89:44: error: cannot find 'willChangeValue' in scope
 87 |     }
 88 |     private var isReadyValue: Bool = false {
 89 |         willSet { if isReady != newValue { willChangeValue(forKey: "isReady") } }
    |                                            `- error: cannot find 'willChangeValue' in scope
 90 |         didSet { if isReady != oldValue { didChangeValue(forKey: "isReady") } }
 91 |     }
/host/spi-builder-workspace/CustomOperation/CustomOperation.swift:94:16: error: cannot find 'isCancelled' in scope
 92 |
 93 |     override open func main() {
 94 |         guard !isCancelled else { return }
    |                `- error: cannot find 'isCancelled' in scope
 95 |
 96 |         state = .executing
[5/5] Compiling CustomOperation AsyncOperation.swift
/host/spi-builder-workspace/CustomOperation/AsyncOperation.swift:39:25: error: property does not override any property from its superclass
37 |     public typealias Action = (@escaping Done) -> Void
38 |
39 |     override public var isAsynchronous: Bool { return true }
   |                         `- error: property does not override any property from its superclass
40 |
41 |     private var action: Action
BUILD FAILURE 6.1 wasm