The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Regulate, reference 0.2.0 (3dbaf3), with Swift 6.1 for Linux on 27 Apr 2025 08:23:35 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sideeffect-io/Regulate.git
Reference: 0.2.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/sideeffect-io/Regulate
 * tag               0.2.0      -> FETCH_HEAD
HEAD is now at 3dbaf34 Merge pull request #1 from sideeffect-io/feature/task-extensions
Cloned https://github.com/sideeffect-io/Regulate.git
Revision (git rev-parse @):
3dbaf34cf489792e9b944be5a3aaa31e20ff5b03
SUCCESS checkout https://github.com/sideeffect-io/Regulate.git at 0.2.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/sideeffect-io/Regulate.git
https://github.com/sideeffect-io/Regulate.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Regulate",
  "name" : "Regulate",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Regulate",
      "targets" : [
        "Regulate"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RegulateTests",
      "module_type" : "SwiftTarget",
      "name" : "RegulateTests",
      "path" : "Tests",
      "sources" : [
        "DebouncerTests.swift",
        "Supporting/Spy.swift",
        "ThrottlerTests.swift"
      ],
      "target_dependencies" : [
        "Regulate"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Regulate",
      "module_type" : "SwiftTarget",
      "name" : "Regulate",
      "path" : "Sources",
      "product_memberships" : [
        "Regulate"
      ],
      "sources" : [
        "Debouncer.swift",
        "Regulator.swift",
        "Supporting/DispatchTimeInterval+Nanoseconds.swift",
        "SwiftUI/Binding+Regulate.swift",
        "SwiftUI/Button+Regulated.swift",
        "SwiftUI/RegulatedButtonStyle.swift",
        "Throttler.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/10] Compiling Regulate RegulatedButtonStyle.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/10] Emitting module Regulate
/host/spi-builder-workspace/Sources/Regulator.swift:10:46: error: cannot find type 'ObservableObject' in scope
 8 | import Foundation
 9 |
10 | public protocol Regulator<Value>: AnyObject, ObservableObject {
   |                                              `- error: cannot find type 'ObservableObject' in scope
11 |   associatedtype Value
12 |   init()
/host/spi-builder-workspace/Sources/Debouncer.swift:85:21: error: cannot find type 'os_unfair_lock_t' in scope
 83 |   public var dueTime: DispatchTimeInterval
 84 |
 85 |   private let lock: os_unfair_lock_t = UnsafeMutablePointer<os_unfair_lock_s>.allocate(capacity: 1)
    |                     `- error: cannot find type 'os_unfair_lock_t' in scope
 86 |   private var stateMachine = StateMachine()
 87 |   private var task: Task<Void, Never>?
/host/spi-builder-workspace/Sources/Debouncer.swift:38:59: error: cannot find type 'ObservableObject' in scope
 36 | /// // will only print "99" 2 seconds after the last call to `push(_:)`
 37 | /// ```
 38 | public final class Debouncer<Value>: @unchecked Sendable, ObservableObject, Regulator {
    |                                                           `- error: cannot find type 'ObservableObject' in scope
 39 |   struct DueValue {
 40 |     let value: Value
/host/spi-builder-workspace/Sources/Throttler.swift:91:21: error: cannot find type 'os_unfair_lock_t' in scope
 89 |
 90 |   private let latest: Bool
 91 |   private let lock: os_unfair_lock_t = UnsafeMutablePointer<os_unfair_lock_s>.allocate(capacity: 1)
    |                     `- error: cannot find type 'os_unfair_lock_t' in scope
 92 |   private var stateMachine = StateMachine()
 93 |   private var task: Task<Void, Never>?
/host/spi-builder-workspace/Sources/Throttler.swift:40:59: error: cannot find type 'ObservableObject' in scope
 38 | /// // will only print an index once every 2 seconds (the latest received index before the `tick`)
 39 | /// ```
 40 | public final class Throttler<Value>: @unchecked Sendable, ObservableObject, Regulator {
    |                                                           `- error: cannot find type 'ObservableObject' in scope
 41 |   struct StateMachine {
 42 |     enum State {
[5/10] Compiling Regulate Debouncer.swift
/host/spi-builder-workspace/Sources/Regulator.swift:10:46: error: cannot find type 'ObservableObject' in scope
 8 | import Foundation
 9 |
10 | public protocol Regulator<Value>: AnyObject, ObservableObject {
   |                                              `- error: cannot find type 'ObservableObject' in scope
11 |   associatedtype Value
12 |   init()
/host/spi-builder-workspace/Sources/Debouncer.swift:85:21: error: cannot find type 'os_unfair_lock_t' in scope
 83 |   public var dueTime: DispatchTimeInterval
 84 |
 85 |   private let lock: os_unfair_lock_t = UnsafeMutablePointer<os_unfair_lock_s>.allocate(capacity: 1)
    |                     `- error: cannot find type 'os_unfair_lock_t' in scope
 86 |   private var stateMachine = StateMachine()
 87 |   private var task: Task<Void, Never>?
/host/spi-builder-workspace/Sources/Debouncer.swift:38:59: error: cannot find type 'ObservableObject' in scope
 36 | /// // will only print "99" 2 seconds after the last call to `push(_:)`
 37 | /// ```
 38 | public final class Debouncer<Value>: @unchecked Sendable, ObservableObject, Regulator {
    |                                                           `- error: cannot find type 'ObservableObject' in scope
 39 |   struct DueValue {
 40 |     let value: Value
/host/spi-builder-workspace/Sources/Debouncer.swift:101:30: error: cannot find 'os_unfair_lock' in scope
 99 |     output: (@Sendable (Value) async -> Void)? = nil
100 |   ) {
101 |     self.lock.initialize(to: os_unfair_lock())
    |                              `- error: cannot find 'os_unfair_lock' in scope
102 |     self.dueTime = dueTime
103 |     self.output = output
/host/spi-builder-workspace/Sources/Debouncer.swift:107:71: error: value of type 'DispatchTime' has no member 'advanced'
105 |
106 |   public func push(_ value: Value) {
107 |     let newValue = DueValue(value: value, dueTime: DispatchTime.now().advanced(by: dueTime))
    |                                                                       `- error: value of type 'DispatchTime' has no member 'advanced'
108 |     var shouldStartADebounce = false
109 |
/host/spi-builder-workspace/Sources/Debouncer.swift:110:5: error: cannot find 'os_unfair_lock_lock' in scope
108 |     var shouldStartADebounce = false
109 |
110 |     os_unfair_lock_lock(self.lock)
    |     `- error: cannot find 'os_unfair_lock_lock' in scope
111 |     shouldStartADebounce = self.stateMachine.newValue(newValue)
112 |     os_unfair_lock_unlock(self.lock)
/host/spi-builder-workspace/Sources/Debouncer.swift:112:5: error: cannot find 'os_unfair_lock_unlock' in scope
110 |     os_unfair_lock_lock(self.lock)
111 |     shouldStartADebounce = self.stateMachine.newValue(newValue)
112 |     os_unfair_lock_unlock(self.lock)
    |     `- error: cannot find 'os_unfair_lock_unlock' in scope
113 |
114 |     if shouldStartADebounce {
/host/spi-builder-workspace/Sources/Debouncer.swift:125:9: error: cannot find 'os_unfair_lock_lock' in scope
123 |
124 |         var output: StateMachine.HasDebouncedOutput
125 |         os_unfair_lock_lock(self.lock)
    |         `- error: cannot find 'os_unfair_lock_lock' in scope
126 |         output = self.stateMachine.hasDebouncedCurrentValue()
127 |         os_unfair_lock_unlock(self.lock)
/host/spi-builder-workspace/Sources/Debouncer.swift:127:9: error: cannot find 'os_unfair_lock_unlock' in scope
125 |         os_unfair_lock_lock(self.lock)
126 |         output = self.stateMachine.hasDebouncedCurrentValue()
127 |         os_unfair_lock_unlock(self.lock)
    |         `- error: cannot find 'os_unfair_lock_unlock' in scope
128 |
129 |         switch output {
[6/10] Compiling Regulate DispatchTimeInterval+Nanoseconds.swift
[7/10] Compiling Regulate Binding+Regulate.swift
[8/10] Compiling Regulate Regulator.swift
/host/spi-builder-workspace/Sources/Regulator.swift:10:46: error: cannot find type 'ObservableObject' in scope
 8 | import Foundation
 9 |
10 | public protocol Regulator<Value>: AnyObject, ObservableObject {
   |                                              `- error: cannot find type 'ObservableObject' in scope
11 |   associatedtype Value
12 |   init()
[9/10] Compiling Regulate Button+Regulated.swift
[10/10] Compiling Regulate Throttler.swift
/host/spi-builder-workspace/Sources/Regulator.swift:10:46: error: cannot find type 'ObservableObject' in scope
 8 | import Foundation
 9 |
10 | public protocol Regulator<Value>: AnyObject, ObservableObject {
   |                                              `- error: cannot find type 'ObservableObject' in scope
11 |   associatedtype Value
12 |   init()
/host/spi-builder-workspace/Sources/Throttler.swift:91:21: error: cannot find type 'os_unfair_lock_t' in scope
 89 |
 90 |   private let latest: Bool
 91 |   private let lock: os_unfair_lock_t = UnsafeMutablePointer<os_unfair_lock_s>.allocate(capacity: 1)
    |                     `- error: cannot find type 'os_unfair_lock_t' in scope
 92 |   private var stateMachine = StateMachine()
 93 |   private var task: Task<Void, Never>?
/host/spi-builder-workspace/Sources/Throttler.swift:40:59: error: cannot find type 'ObservableObject' in scope
 38 | /// // will only print an index once every 2 seconds (the latest received index before the `tick`)
 39 | /// ```
 40 | public final class Throttler<Value>: @unchecked Sendable, ObservableObject, Regulator {
    |                                                           `- error: cannot find type 'ObservableObject' in scope
 41 |   struct StateMachine {
 42 |     enum State {
/host/spi-builder-workspace/Sources/Throttler.swift:109:30: error: cannot find 'os_unfair_lock' in scope
107 |     output: (@Sendable (Value) async -> Void)? = nil
108 |   ) {
109 |     self.lock.initialize(to: os_unfair_lock())
    |                              `- error: cannot find 'os_unfair_lock' in scope
110 |     self.dueTime = dueTime
111 |     self.latest = latest
/host/spi-builder-workspace/Sources/Throttler.swift:118:5: error: cannot find 'os_unfair_lock_lock' in scope
116 |     var shouldStartAThrottle = false
117 |
118 |     os_unfair_lock_lock(self.lock)
    |     `- error: cannot find 'os_unfair_lock_lock' in scope
119 |     shouldStartAThrottle = self.stateMachine.newValue(value)
120 |     os_unfair_lock_unlock(self.lock)
/host/spi-builder-workspace/Sources/Throttler.swift:120:5: error: cannot find 'os_unfair_lock_unlock' in scope
118 |     os_unfair_lock_lock(self.lock)
119 |     shouldStartAThrottle = self.stateMachine.newValue(value)
120 |     os_unfair_lock_unlock(self.lock)
    |     `- error: cannot find 'os_unfair_lock_unlock' in scope
121 |
122 |     if shouldStartAThrottle {
/host/spi-builder-workspace/Sources/Throttler.swift:132:13: error: cannot find 'os_unfair_lock_lock' in scope
130 |             var hasTickedOutput: StateMachine.HasTickedOutput
131 |
132 |             os_unfair_lock_lock(self.lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
133 |             hasTickedOutput = self.stateMachine.hasTicked()
134 |             os_unfair_lock_unlock(self.lock)
/host/spi-builder-workspace/Sources/Throttler.swift:134:13: error: cannot find 'os_unfair_lock_unlock' in scope
132 |             os_unfair_lock_lock(self.lock)
133 |             hasTickedOutput = self.stateMachine.hasTicked()
134 |             os_unfair_lock_unlock(self.lock)
    |             `- error: cannot find 'os_unfair_lock_unlock' in scope
135 |
136 |             switch hasTickedOutput {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/9] Compiling Regulate Throttler.swift
/host/spi-builder-workspace/Sources/Regulator.swift:10:46: error: cannot find type 'ObservableObject' in scope
 8 | import Foundation
 9 |
10 | public protocol Regulator<Value>: AnyObject, ObservableObject {
   |                                              `- error: cannot find type 'ObservableObject' in scope
11 |   associatedtype Value
12 |   init()
/host/spi-builder-workspace/Sources/Throttler.swift:91:21: error: cannot find type 'os_unfair_lock_t' in scope
 89 |
 90 |   private let latest: Bool
 91 |   private let lock: os_unfair_lock_t = UnsafeMutablePointer<os_unfair_lock_s>.allocate(capacity: 1)
    |                     `- error: cannot find type 'os_unfair_lock_t' in scope
 92 |   private var stateMachine = StateMachine()
 93 |   private var task: Task<Void, Never>?
/host/spi-builder-workspace/Sources/Throttler.swift:40:59: error: cannot find type 'ObservableObject' in scope
 38 | /// // will only print an index once every 2 seconds (the latest received index before the `tick`)
 39 | /// ```
 40 | public final class Throttler<Value>: @unchecked Sendable, ObservableObject, Regulator {
    |                                                           `- error: cannot find type 'ObservableObject' in scope
 41 |   struct StateMachine {
 42 |     enum State {
/host/spi-builder-workspace/Sources/Throttler.swift:109:30: error: cannot find 'os_unfair_lock' in scope
107 |     output: (@Sendable (Value) async -> Void)? = nil
108 |   ) {
109 |     self.lock.initialize(to: os_unfair_lock())
    |                              `- error: cannot find 'os_unfair_lock' in scope
110 |     self.dueTime = dueTime
111 |     self.latest = latest
/host/spi-builder-workspace/Sources/Throttler.swift:118:5: error: cannot find 'os_unfair_lock_lock' in scope
116 |     var shouldStartAThrottle = false
117 |
118 |     os_unfair_lock_lock(self.lock)
    |     `- error: cannot find 'os_unfair_lock_lock' in scope
119 |     shouldStartAThrottle = self.stateMachine.newValue(value)
120 |     os_unfair_lock_unlock(self.lock)
/host/spi-builder-workspace/Sources/Throttler.swift:120:5: error: cannot find 'os_unfair_lock_unlock' in scope
118 |     os_unfair_lock_lock(self.lock)
119 |     shouldStartAThrottle = self.stateMachine.newValue(value)
120 |     os_unfair_lock_unlock(self.lock)
    |     `- error: cannot find 'os_unfair_lock_unlock' in scope
121 |
122 |     if shouldStartAThrottle {
/host/spi-builder-workspace/Sources/Throttler.swift:132:13: error: cannot find 'os_unfair_lock_lock' in scope
130 |             var hasTickedOutput: StateMachine.HasTickedOutput
131 |
132 |             os_unfair_lock_lock(self.lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
133 |             hasTickedOutput = self.stateMachine.hasTicked()
134 |             os_unfair_lock_unlock(self.lock)
/host/spi-builder-workspace/Sources/Throttler.swift:134:13: error: cannot find 'os_unfair_lock_unlock' in scope
132 |             os_unfair_lock_lock(self.lock)
133 |             hasTickedOutput = self.stateMachine.hasTicked()
134 |             os_unfair_lock_unlock(self.lock)
    |             `- error: cannot find 'os_unfair_lock_unlock' in scope
135 |
136 |             switch hasTickedOutput {
[3/9] Compiling Regulate RegulatedButtonStyle.swift
[4/9] Compiling Regulate Binding+Regulate.swift
[5/9] Compiling Regulate Button+Regulated.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/9] Compiling Regulate Regulator.swift
/host/spi-builder-workspace/Sources/Regulator.swift:10:46: error: cannot find type 'ObservableObject' in scope
 8 | import Foundation
 9 |
10 | public protocol Regulator<Value>: AnyObject, ObservableObject {
   |                                              `- error: cannot find type 'ObservableObject' in scope
11 |   associatedtype Value
12 |   init()
[7/9] Emitting module Regulate
/host/spi-builder-workspace/Sources/Regulator.swift:10:46: error: cannot find type 'ObservableObject' in scope
 8 | import Foundation
 9 |
10 | public protocol Regulator<Value>: AnyObject, ObservableObject {
   |                                              `- error: cannot find type 'ObservableObject' in scope
11 |   associatedtype Value
12 |   init()
/host/spi-builder-workspace/Sources/Debouncer.swift:85:21: error: cannot find type 'os_unfair_lock_t' in scope
 83 |   public var dueTime: DispatchTimeInterval
 84 |
 85 |   private let lock: os_unfair_lock_t = UnsafeMutablePointer<os_unfair_lock_s>.allocate(capacity: 1)
    |                     `- error: cannot find type 'os_unfair_lock_t' in scope
 86 |   private var stateMachine = StateMachine()
 87 |   private var task: Task<Void, Never>?
/host/spi-builder-workspace/Sources/Debouncer.swift:38:59: error: cannot find type 'ObservableObject' in scope
 36 | /// // will only print "99" 2 seconds after the last call to `push(_:)`
 37 | /// ```
 38 | public final class Debouncer<Value>: @unchecked Sendable, ObservableObject, Regulator {
    |                                                           `- error: cannot find type 'ObservableObject' in scope
 39 |   struct DueValue {
 40 |     let value: Value
/host/spi-builder-workspace/Sources/Throttler.swift:91:21: error: cannot find type 'os_unfair_lock_t' in scope
 89 |
 90 |   private let latest: Bool
 91 |   private let lock: os_unfair_lock_t = UnsafeMutablePointer<os_unfair_lock_s>.allocate(capacity: 1)
    |                     `- error: cannot find type 'os_unfair_lock_t' in scope
 92 |   private var stateMachine = StateMachine()
 93 |   private var task: Task<Void, Never>?
/host/spi-builder-workspace/Sources/Throttler.swift:40:59: error: cannot find type 'ObservableObject' in scope
 38 | /// // will only print an index once every 2 seconds (the latest received index before the `tick`)
 39 | /// ```
 40 | public final class Throttler<Value>: @unchecked Sendable, ObservableObject, Regulator {
    |                                                           `- error: cannot find type 'ObservableObject' in scope
 41 |   struct StateMachine {
 42 |     enum State {
[8/9] Compiling Regulate DispatchTimeInterval+Nanoseconds.swift
[9/9] Compiling Regulate Debouncer.swift
/host/spi-builder-workspace/Sources/Regulator.swift:10:46: error: cannot find type 'ObservableObject' in scope
 8 | import Foundation
 9 |
10 | public protocol Regulator<Value>: AnyObject, ObservableObject {
   |                                              `- error: cannot find type 'ObservableObject' in scope
11 |   associatedtype Value
12 |   init()
/host/spi-builder-workspace/Sources/Debouncer.swift:85:21: error: cannot find type 'os_unfair_lock_t' in scope
 83 |   public var dueTime: DispatchTimeInterval
 84 |
 85 |   private let lock: os_unfair_lock_t = UnsafeMutablePointer<os_unfair_lock_s>.allocate(capacity: 1)
    |                     `- error: cannot find type 'os_unfair_lock_t' in scope
 86 |   private var stateMachine = StateMachine()
 87 |   private var task: Task<Void, Never>?
/host/spi-builder-workspace/Sources/Debouncer.swift:38:59: error: cannot find type 'ObservableObject' in scope
 36 | /// // will only print "99" 2 seconds after the last call to `push(_:)`
 37 | /// ```
 38 | public final class Debouncer<Value>: @unchecked Sendable, ObservableObject, Regulator {
    |                                                           `- error: cannot find type 'ObservableObject' in scope
 39 |   struct DueValue {
 40 |     let value: Value
/host/spi-builder-workspace/Sources/Debouncer.swift:101:30: error: cannot find 'os_unfair_lock' in scope
 99 |     output: (@Sendable (Value) async -> Void)? = nil
100 |   ) {
101 |     self.lock.initialize(to: os_unfair_lock())
    |                              `- error: cannot find 'os_unfair_lock' in scope
102 |     self.dueTime = dueTime
103 |     self.output = output
/host/spi-builder-workspace/Sources/Debouncer.swift:107:71: error: value of type 'DispatchTime' has no member 'advanced'
105 |
106 |   public func push(_ value: Value) {
107 |     let newValue = DueValue(value: value, dueTime: DispatchTime.now().advanced(by: dueTime))
    |                                                                       `- error: value of type 'DispatchTime' has no member 'advanced'
108 |     var shouldStartADebounce = false
109 |
/host/spi-builder-workspace/Sources/Debouncer.swift:110:5: error: cannot find 'os_unfair_lock_lock' in scope
108 |     var shouldStartADebounce = false
109 |
110 |     os_unfair_lock_lock(self.lock)
    |     `- error: cannot find 'os_unfair_lock_lock' in scope
111 |     shouldStartADebounce = self.stateMachine.newValue(newValue)
112 |     os_unfair_lock_unlock(self.lock)
/host/spi-builder-workspace/Sources/Debouncer.swift:112:5: error: cannot find 'os_unfair_lock_unlock' in scope
110 |     os_unfair_lock_lock(self.lock)
111 |     shouldStartADebounce = self.stateMachine.newValue(newValue)
112 |     os_unfair_lock_unlock(self.lock)
    |     `- error: cannot find 'os_unfair_lock_unlock' in scope
113 |
114 |     if shouldStartADebounce {
/host/spi-builder-workspace/Sources/Debouncer.swift:125:9: error: cannot find 'os_unfair_lock_lock' in scope
123 |
124 |         var output: StateMachine.HasDebouncedOutput
125 |         os_unfair_lock_lock(self.lock)
    |         `- error: cannot find 'os_unfair_lock_lock' in scope
126 |         output = self.stateMachine.hasDebouncedCurrentValue()
127 |         os_unfair_lock_unlock(self.lock)
/host/spi-builder-workspace/Sources/Debouncer.swift:127:9: error: cannot find 'os_unfair_lock_unlock' in scope
125 |         os_unfair_lock_lock(self.lock)
126 |         output = self.stateMachine.hasDebouncedCurrentValue()
127 |         os_unfair_lock_unlock(self.lock)
    |         `- error: cannot find 'os_unfair_lock_unlock' in scope
128 |
129 |         switch output {
BUILD FAILURE 6.1 linux