Build Information
Failed to build CSVImporter, reference main (193aa0), with Swift 6.3 for Android on 12 Apr 2026 23:51:39 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/CSVImporter.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/CSVImporter
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 193aa03 Update code style
Cloned https://github.com/FlineDev/CSVImporter.git
Revision (git rev-parse @):
193aa03649f7fcdd1a2d9ed968885ef145e4ac18
SUCCESS checkout https://github.com/FlineDev/CSVImporter.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/FlineDev/CSVImporter.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/Flinesoft/HandySwift.git
[1/3483] Fetching handyswift
Fetched https://github.com/Flinesoft/HandySwift.git from cache (0.37s)
Fetching https://github.com/Quick/Nimble.git
Fetching https://github.com/Quick/Quick.git
[1/14896] Fetching quick
[5513/34713] Fetching quick, nimble
Fetched https://github.com/Quick/Quick.git from cache (2.07s)
Fetched https://github.com/Quick/Nimble.git from cache (2.10s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 2.2.1 (4.26s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 8.1.2 (0.94s)
Creating working copy for https://github.com/Flinesoft/HandySwift.git
Working copy of https://github.com/Flinesoft/HandySwift.git resolved at main (f30a47c)
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 2.2.1
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 8.1.2
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--4F562202D5529B1.txt
[4/37] Compiling HandySwift TimeIntervalExt.swift
[5/37] Compiling HandySwift Globals.swift
[6/37] Compiling HandySwift AutoConforming.swift
[7/37] Compiling HandySwift DivisibleArithmetic.swift
[8/37] Compiling HandySwift Withable.swift
[9/37] Compiling HandySwift DateExt.swift
[10/37] Compiling HandySwift DictionaryExt.swift
[11/37] Compiling HandySwift DispatchTimeIntervalExt.swift
[12/37] Compiling HandySwift DoubleExt.swift
[13/37] Compiling HandySwift DurationExt.swift
[14/41] Compiling HandySwift Debouncer.swift
[15/41] Compiling HandySwift FrequencyTable.swift
[16/41] Compiling HandySwift GregorianDay.swift
[17/41] Compiling HandySwift GregorianTime.swift
[18/41] Compiling HandySwift RandomAccessCollectionExt.swift
[19/41] Compiling HandySwift SequenceExt.swift
[20/41] Compiling HandySwift StringExt.swift
[21/41] Compiling HandySwift StringProtocolExt.swift
[22/41] Compiling HandySwift SymmetricKeyExt.swift
[23/41] 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 | }
[24/41] 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 | }
[25/41] 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 | }
[26/41] 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 | }
[27/41] 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 | }
[28/41] Emitting module HandySwift
[29/41] Compiling HandySwift ArrayExt.swift
[30/41] Compiling HandySwift CaseIterableExt.swift
[31/41] Compiling HandySwift CollectionExt.swift
[32/41] Compiling HandySwift ComparableExt.swift
[33/41] Compiling HandySwift DataExt.swift
[34/41] Compiling HandySwift HandyRegex.swift
[35/41] Compiling HandySwift LogRequestPlugin.swift
[36/41] Compiling HandySwift LogResponsePlugin.swift
[37/41] Compiling HandySwift OperatingSystem.swift
[38/41] Compiling HandySwift PrintRequestPlugin.swift
[39/41] Compiling HandySwift PrintResponsePlugin.swift
[40/41] Compiling HandySwift RESTClient.swift
[41/41] Compiling HandySwift SortedArray.swift
BUILD FAILURE 6.3 android