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 HandySwiftUI, reference main (d8a4f8), with Swift 6.2 (beta) for Android on 22 Jun 2025 09:57:18 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/HandySwiftUI.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/FlineDev/HandySwiftUI
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d8a4f8e Add String title overloads for HPicker and VPicker convenienct methods
Cloned https://github.com/FlineDev/HandySwiftUI.git
Revision (git rev-parse @):
d8a4f8e3d3148ea85c379d804e6ad2199b93b5ec
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/FlineDev/HandySwiftUI.git at main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/FlineDev/HandySwiftUI.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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
Fetching https://github.com/FlineDev/HandySwift.git
[1/3374] Fetching handyswift
Fetched https://github.com/FlineDev/HandySwift.git from cache (0.34s)
Computing version for https://github.com/FlineDev/HandySwift.git
Computed https://github.com/FlineDev/HandySwift.git at 4.3.0 (0.66s)
Creating working copy for https://github.com/FlineDev/HandySwift.git
Working copy of https://github.com/FlineDev/HandySwift.git resolved at 4.3.0
Building for debugging...
[0/5] Write sources
[0/5] Copying Info.plist
[3/5] Copying Localizable.xcstrings
[4/5] Write swift-version-8C5A4AE7A8CE2BA.txt
[6/33] Compiling HandySwift StringProtocolExt.swift
[7/33] Compiling HandySwift SymmetricKeyExt.swift
[8/33] Compiling HandySwift TimeIntervalExt.swift
[9/33] Compiling HandySwift Globals.swift
[10/36] Compiling HandySwift DataExt.swift
[11/36] Compiling HandySwift DateExt.swift
[12/36] Compiling HandySwift DictionaryExt.swift
[13/36] Compiling HandySwift DispatchTimeIntervalExt.swift
[14/36] Compiling HandySwift DoubleExt.swift
/host/spi-builder-workspace/.build/checkouts/HandySwift/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/.build/checkouts/HandySwift/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/36] Compiling HandySwift DurationExt.swift
/host/spi-builder-workspace/.build/checkouts/HandySwift/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/.build/checkouts/HandySwift/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/36] Compiling HandySwift FloatExt.swift
/host/spi-builder-workspace/.build/checkouts/HandySwift/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/.build/checkouts/HandySwift/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/36] Compiling HandySwift IntExt.swift
/host/spi-builder-workspace/.build/checkouts/HandySwift/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/.build/checkouts/HandySwift/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/36] Emitting module HandySwift
[19/36] Compiling HandySwift ArrayExt.swift
[20/36] Compiling HandySwift CaseIterableExt.swift
[21/36] Compiling HandySwift CollectionExt.swift
[22/36] Compiling HandySwift ComparableExt.swift
[23/36] Compiling HandySwift NSRangeExt.swift
[24/36] Compiling HandySwift RandomAccessCollectionExt.swift
[25/36] Compiling HandySwift SequenceExt.swift
[26/36] Compiling HandySwift StringExt.swift
[27/36] Compiling HandySwift AutoConforming.swift
[28/36] Compiling HandySwift DivisibleArithmetic.swift
[29/36] Compiling HandySwift Withable.swift
[30/36] Compiling HandySwift Debouncer.swift
[31/36] Compiling HandySwift FrequencyTable.swift
[32/36] Compiling HandySwift GregorianDay.swift
[33/36] Compiling HandySwift GregorianTimeOfDay.swift
[34/36] Compiling HandySwift HandyRegex.swift
[35/36] Compiling HandySwift OperatingSystem.swift
[36/36] Compiling HandySwift SortedArray.swift
BUILD FAILURE 6.2 android