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

Failed to build HandySwift, reference 4.3.0 (20b516), with Swift 6.2 (beta) for Android on 22 Jun 2025 09:50:42 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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/FlineDev/HandySwift.git
Reference: 4.3.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/FlineDev/HandySwift
 * tag               4.3.0      -> FETCH_HEAD
HEAD is now at 20b5165 Migrate to Swift 6 & add any missing Sendable conformances
Cloned https://github.com/FlineDev/HandySwift.git
Revision (git rev-parse @):
20b51652a71eca85c6c5502aac870c6708fa148b
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/FlineDev/HandySwift.git at 4.3.0
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/FlineDev/HandySwift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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
[3/30] Compiling HandySwift NSRangeExt.swift
[4/30] Compiling HandySwift RandomAccessCollectionExt.swift
[5/30] Compiling HandySwift SequenceExt.swift
[6/30] Compiling HandySwift StringExt.swift
[7/33] Compiling HandySwift AutoConforming.swift
[8/33] Compiling HandySwift DivisibleArithmetic.swift
[9/33] Compiling HandySwift Withable.swift
[10/33] Compiling HandySwift Debouncer.swift
[11/33] Compiling HandySwift FrequencyTable.swift
[12/33] Compiling HandySwift GregorianDay.swift
[13/33] Compiling HandySwift GregorianTimeOfDay.swift
[14/33] Compiling HandySwift DoubleExt.swift
/host/spi-builder-workspace/Sources/HandySwift/Extensions/FloatExt.swift:23:31: error: cannot convert value of type 'Float' to expected argument type 'Double'
21 |    /// - Note: Dropping the `rule` parameter will default to “schoolbook rounding”.
22 |    public mutating func round(fractionDigits: Int, rule: FloatingPointRoundingRule = .toNearestOrAwayFromZero) {
23 |       let divisor = pow(10.0, Float(fractionDigits))
   |                               `- error: cannot convert value of type 'Float' to expected argument type 'Double'
24 |       self = (self * divisor).rounded(rule) / divisor
25 |    }
/host/spi-builder-workspace/Sources/HandySwift/Extensions/FloatExt.swift:46:31: error: cannot convert value of type 'Float' to expected argument type 'Double'
44 |    /// - Note: Dropping the `rule` parameter will default to “schoolbook rounding”.
45 |    public func rounded(fractionDigits: Int, rule: FloatingPointRoundingRule = .toNearestOrAwayFromZero) -> Float {
46 |       let divisor = pow(10.0, Float(fractionDigits))
   |                               `- error: cannot convert value of type 'Float' to expected argument type 'Double'
47 |       return (self * divisor).rounded(rule) / divisor
48 |    }
[15/33] Compiling HandySwift DurationExt.swift
/host/spi-builder-workspace/Sources/HandySwift/Extensions/FloatExt.swift:23:31: error: cannot convert value of type 'Float' to expected argument type 'Double'
21 |    /// - Note: Dropping the `rule` parameter will default to “schoolbook rounding”.
22 |    public mutating func round(fractionDigits: Int, rule: FloatingPointRoundingRule = .toNearestOrAwayFromZero) {
23 |       let divisor = pow(10.0, Float(fractionDigits))
   |                               `- error: cannot convert value of type 'Float' to expected argument type 'Double'
24 |       self = (self * divisor).rounded(rule) / divisor
25 |    }
/host/spi-builder-workspace/Sources/HandySwift/Extensions/FloatExt.swift:46:31: error: cannot convert value of type 'Float' to expected argument type 'Double'
44 |    /// - Note: Dropping the `rule` parameter will default to “schoolbook rounding”.
45 |    public func rounded(fractionDigits: Int, rule: FloatingPointRoundingRule = .toNearestOrAwayFromZero) -> Float {
46 |       let divisor = pow(10.0, Float(fractionDigits))
   |                               `- error: cannot convert value of type 'Float' to expected argument type 'Double'
47 |       return (self * divisor).rounded(rule) / divisor
48 |    }
[16/33] Compiling HandySwift FloatExt.swift
/host/spi-builder-workspace/Sources/HandySwift/Extensions/FloatExt.swift:23:31: error: cannot convert value of type 'Float' to expected argument type 'Double'
21 |    /// - Note: Dropping the `rule` parameter will default to “schoolbook rounding”.
22 |    public mutating func round(fractionDigits: Int, rule: FloatingPointRoundingRule = .toNearestOrAwayFromZero) {
23 |       let divisor = pow(10.0, Float(fractionDigits))
   |                               `- error: cannot convert value of type 'Float' to expected argument type 'Double'
24 |       self = (self * divisor).rounded(rule) / divisor
25 |    }
/host/spi-builder-workspace/Sources/HandySwift/Extensions/FloatExt.swift:46:31: error: cannot convert value of type 'Float' to expected argument type 'Double'
44 |    /// - Note: Dropping the `rule` parameter will default to “schoolbook rounding”.
45 |    public func rounded(fractionDigits: Int, rule: FloatingPointRoundingRule = .toNearestOrAwayFromZero) -> Float {
46 |       let divisor = pow(10.0, Float(fractionDigits))
   |                               `- error: cannot convert value of type 'Float' to expected argument type 'Double'
47 |       return (self * divisor).rounded(rule) / divisor
48 |    }
[17/33] Compiling HandySwift IntExt.swift
/host/spi-builder-workspace/Sources/HandySwift/Extensions/FloatExt.swift:23:31: error: cannot convert value of type 'Float' to expected argument type 'Double'
21 |    /// - Note: Dropping the `rule` parameter will default to “schoolbook rounding”.
22 |    public mutating func round(fractionDigits: Int, rule: FloatingPointRoundingRule = .toNearestOrAwayFromZero) {
23 |       let divisor = pow(10.0, Float(fractionDigits))
   |                               `- error: cannot convert value of type 'Float' to expected argument type 'Double'
24 |       self = (self * divisor).rounded(rule) / divisor
25 |    }
/host/spi-builder-workspace/Sources/HandySwift/Extensions/FloatExt.swift:46:31: error: cannot convert value of type 'Float' to expected argument type 'Double'
44 |    /// - Note: Dropping the `rule` parameter will default to “schoolbook rounding”.
45 |    public func rounded(fractionDigits: Int, rule: FloatingPointRoundingRule = .toNearestOrAwayFromZero) -> Float {
46 |       let divisor = pow(10.0, Float(fractionDigits))
   |                               `- error: cannot convert value of type 'Float' to expected argument type 'Double'
47 |       return (self * divisor).rounded(rule) / divisor
48 |    }
[18/33] Compiling HandySwift ArrayExt.swift
/host/spi-builder-workspace/Sources/HandySwift/Extensions/CaseIterableExt.swift:28:35: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |    /// - Returns: An array of optional values including `nil` followed by all cases of the type.
27 |    public static var allCasesPrefixedByNil: [Self?] {
28 |       [.none] + self.allCases.map(Optional.init)
   |                                   `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |    }
30 |
/host/spi-builder-workspace/Sources/HandySwift/Extensions/CaseIterableExt.swift:55:25: warning: capture of non-sendable type 'Self.Type' in an isolated closure
53 |    /// - Returns: An array of optional values including all cases of the type followed by `nil`.
54 |    public static var allCasesSuffixedByNil: [Self?] {
55 |       self.allCases.map(Optional.init) + [.none]
   |                         `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
56 |    }
57 | }
[19/33] Compiling HandySwift CaseIterableExt.swift
/host/spi-builder-workspace/Sources/HandySwift/Extensions/CaseIterableExt.swift:28:35: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |    /// - Returns: An array of optional values including `nil` followed by all cases of the type.
27 |    public static var allCasesPrefixedByNil: [Self?] {
28 |       [.none] + self.allCases.map(Optional.init)
   |                                   `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |    }
30 |
/host/spi-builder-workspace/Sources/HandySwift/Extensions/CaseIterableExt.swift:55:25: warning: capture of non-sendable type 'Self.Type' in an isolated closure
53 |    /// - Returns: An array of optional values including all cases of the type followed by `nil`.
54 |    public static var allCasesSuffixedByNil: [Self?] {
55 |       self.allCases.map(Optional.init) + [.none]
   |                         `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
56 |    }
57 | }
[20/33] Compiling HandySwift CollectionExt.swift
/host/spi-builder-workspace/Sources/HandySwift/Extensions/CaseIterableExt.swift:28:35: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |    /// - Returns: An array of optional values including `nil` followed by all cases of the type.
27 |    public static var allCasesPrefixedByNil: [Self?] {
28 |       [.none] + self.allCases.map(Optional.init)
   |                                   `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |    }
30 |
/host/spi-builder-workspace/Sources/HandySwift/Extensions/CaseIterableExt.swift:55:25: warning: capture of non-sendable type 'Self.Type' in an isolated closure
53 |    /// - Returns: An array of optional values including all cases of the type followed by `nil`.
54 |    public static var allCasesSuffixedByNil: [Self?] {
55 |       self.allCases.map(Optional.init) + [.none]
   |                         `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
56 |    }
57 | }
[21/33] Compiling HandySwift ComparableExt.swift
/host/spi-builder-workspace/Sources/HandySwift/Extensions/CaseIterableExt.swift:28:35: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |    /// - Returns: An array of optional values including `nil` followed by all cases of the type.
27 |    public static var allCasesPrefixedByNil: [Self?] {
28 |       [.none] + self.allCases.map(Optional.init)
   |                                   `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |    }
30 |
/host/spi-builder-workspace/Sources/HandySwift/Extensions/CaseIterableExt.swift:55:25: warning: capture of non-sendable type 'Self.Type' in an isolated closure
53 |    /// - Returns: An array of optional values including all cases of the type followed by `nil`.
54 |    public static var allCasesSuffixedByNil: [Self?] {
55 |       self.allCases.map(Optional.init) + [.none]
   |                         `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
56 |    }
57 | }
[22/33] Emitting module HandySwift
[23/33] Compiling HandySwift StringProtocolExt.swift
[24/33] Compiling HandySwift SymmetricKeyExt.swift
[25/33] Compiling HandySwift TimeIntervalExt.swift
[26/33] Compiling HandySwift Globals.swift
[27/33] Compiling HandySwift DataExt.swift
[28/33] Compiling HandySwift DateExt.swift
[29/33] Compiling HandySwift DictionaryExt.swift
[30/33] Compiling HandySwift DispatchTimeIntervalExt.swift
[31/33] Compiling HandySwift HandyRegex.swift
[32/33] Compiling HandySwift OperatingSystem.swift
[33/33] Compiling HandySwift SortedArray.swift
BUILD FAILURE 6.2 android