Build Information
Failed to build CSV, reference 1.1.2 (e686bb
), with Swift 6.2 (beta) for Android on 19 Jun 2025 04:39:59 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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/skelpo/csv.git
Reference: 1.1.2
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/skelpo/csv
* tag 1.1.2 -> FETCH_HEAD
HEAD is now at e686bbb Merge pull request #15 from skelpo/serializer-column-length-crash
Cloned https://github.com/skelpo/csv.git
Revision (git rev-parse @):
e686bbb1a1ccc5314e154fce3c7d48937158a07c
SUCCESS checkout https://github.com/skelpo/csv.git at 1.1.2
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/skelpo/csv.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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
[3/16] Compiling CSV AsyncKeyedDecoder.swift
[4/16] Compiling CSV AsyncSingleValueDecoder.swift
[5/17] Compiling CSV Seralizer.swift
[6/17] Compiling CSV Config.swift
[7/17] Compiling CSV Parser.swift
[8/17] Compiling CSV Utilities.swift
[9/17] Compiling CSV AsyncSingleValueEncoder.swift
[10/17] Compiling CSV AsyncUnkeyedEncoder.swift
[11/17] Compiling CSV CSVCoder.swift
[12/17] Compiling CSV CodingOptions.swift
[13/17] Emitting module CSV
[14/17] Compiling CSV AsyncEncoder.swift
[15/17] Compiling CSV AsyncKeyedEncoder.swift
[16/17] Compiling CSV Data+Number.swift
/host/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift:69:32: error: no exact matches in call to global function 'pow'
67 | case 56: result = (result &* 10) &+ 8
68 | case 57: result = (result &* 10) &+ 9
69 | case 46: decimal = pow(10, Float(count - 1 - iterator))
| `- error: no exact matches in call to global function 'pow'
70 | case 44: break
71 | default: return nil
Foundation.pow:1:13: note: candidate expects value of type 'CGFloat' for parameter #2 (got 'Float')
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #2 (got 'Float')
Foundation.pow:1:13: note: candidate expects value of type 'Int' for parameter #2 (got 'Float')
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: candidate expects value of type 'Int' for parameter #2 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/math.h:196:8: note: candidate expects value of type 'Double' for parameter #2 (got 'Float')
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate expects value of type 'Double' for parameter #2 (got 'Float')
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift:69:32: error: no 'pow' candidates produce the expected contextual result type 'Float'
67 | case 56: result = (result &* 10) &+ 8
68 | case 57: result = (result &* 10) &+ 9
69 | case 46: decimal = pow(10, Float(count - 1 - iterator))
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
70 | case 44: break
71 | default: return nil
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
[17/17] Compiling CSV AsyncDecoder.swift
/host/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift:69:32: error: no exact matches in call to global function 'pow'
67 | case 56: result = (result &* 10) &+ 8
68 | case 57: result = (result &* 10) &+ 9
69 | case 46: decimal = pow(10, Float(count - 1 - iterator))
| `- error: no exact matches in call to global function 'pow'
70 | case 44: break
71 | default: return nil
Foundation.pow:1:13: note: candidate expects value of type 'CGFloat' for parameter #2 (got 'Float')
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #2 (got 'Float')
Foundation.pow:1:13: note: candidate expects value of type 'Int' for parameter #2 (got 'Float')
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: candidate expects value of type 'Int' for parameter #2 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/math.h:196:8: note: candidate expects value of type 'Double' for parameter #2 (got 'Float')
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate expects value of type 'Double' for parameter #2 (got 'Float')
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/Sources/CSV/Coder/Data+Number.swift:69:32: error: no 'pow' candidates produce the expected contextual result type 'Float'
67 | case 56: result = (result &* 10) &+ 8
68 | case 57: result = (result &* 10) &+ 9
69 | case 46: decimal = pow(10, Float(count - 1 - iterator))
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
70 | case 44: break
71 | default: return nil
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
BUILD FAILURE 6.2 android