The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Regulate, reference main (3dbaf3), with Swift 6.2 for Android on 19 Jun 2025 23:00:11 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sideeffect-io/Regulate.git
Reference: main
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
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
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 main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/sideeffect-io/Regulate.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/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 {
[4/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 {
[5/10] Compiling Regulate RegulatedButtonStyle.swift
[6/10] Compiling Regulate Button+Regulated.swift
[7/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 {
[8/10] Compiling Regulate DispatchTimeInterval+Nanoseconds.swift
[9/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()
[10/10] Compiling Regulate Binding+Regulate.swift
BUILD FAILURE 6.2 android