Build Information
Failed to build HandySwiftUI, reference main (dab4cd), with Swift 6.3 for Android on 18 Apr 2026 01:58:10 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.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 dab4cdd Remove ContextKit artifacts during Indie workspace cleanup in favor of shared skills
Cloned https://github.com/FlineDev/HandySwiftUI.git
Revision (git rev-parse @):
dab4cdd53fa3c221e5c3f9ce9ff72775deb9d17a
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/FlineDev/HandySwiftUI.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/FlineDev/HandySwiftUI.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Fetching https://github.com/FlineDev/HandySwift.git
[1/3483] Fetching handyswift
Fetched https://github.com/FlineDev/HandySwift.git from cache (0.36s)
Computing version for https://github.com/FlineDev/HandySwift.git
Computed https://github.com/FlineDev/HandySwift.git at 4.4.0 (0.75s)
Creating working copy for https://github.com/FlineDev/HandySwift.git
Working copy of https://github.com/FlineDev/HandySwift.git resolved at 4.4.0
Building for debugging...
[0/5] Copying Info.plist
[1/5] Copying Localizable.xcstrings
[2/5] Write sources
[4/5] Write swift-version--4F562202D5529B1.txt
[6/39] Emitting module HandySwift
[7/43] Compiling HandySwift RandomAccessCollectionExt.swift
[8/43] Compiling HandySwift SequenceExt.swift
[9/43] Compiling HandySwift StringExt.swift
[10/43] Compiling HandySwift StringProtocolExt.swift
[11/43] Compiling HandySwift SymmetricKeyExt.swift
[12/43] Compiling HandySwift ArrayExt.swift
[13/43] Compiling HandySwift CaseIterableExt.swift
[14/43] Compiling HandySwift CollectionExt.swift
[15/43] Compiling HandySwift ComparableExt.swift
[16/43] Compiling HandySwift DataExt.swift
[17/43] Compiling HandySwift TimeIntervalExt.swift
[18/43] Compiling HandySwift Globals.swift
[19/43] Compiling HandySwift AutoConforming.swift
[20/43] Compiling HandySwift DivisibleArithmetic.swift
[21/43] Compiling HandySwift Withable.swift
[22/43] Compiling HandySwift HandyRegex.swift
[23/43] Compiling HandySwift LogRequestPlugin.swift
[24/43] Compiling HandySwift LogResponsePlugin.swift
[25/43] Compiling HandySwift OperatingSystem.swift
[26/43] 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 | }
[27/43] 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 | }
[28/43] Compiling HandySwift JSONDecoderExt.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 | }
[29/43] Compiling HandySwift JSONEncoderExt.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 | }
[30/43] Compiling HandySwift NSRangeExt.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 | }
[31/43] Compiling HandySwift DateExt.swift
[32/43] Compiling HandySwift DictionaryExt.swift
[33/43] Compiling HandySwift DispatchTimeIntervalExt.swift
[34/43] Compiling HandySwift DoubleExt.swift
[35/43] Compiling HandySwift DurationExt.swift
[36/43] Compiling HandySwift Debouncer.swift
[37/43] Compiling HandySwift FrequencyTable.swift
[38/43] Compiling HandySwift GregorianDay.swift
[39/43] Compiling HandySwift GregorianTime.swift
[40/43] Compiling HandySwift PrintRequestPlugin.swift
[41/43] Compiling HandySwift PrintResponsePlugin.swift
[42/43] Compiling HandySwift RESTClient.swift
[43/43] Compiling HandySwift SortedArray.swift
BUILD FAILURE 6.3 android