Build Information
Failed to build Coercion, reference v1.1.3 (df699e
), with Swift 6.1 for Android on 28 May 2025 03:40:12 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/elegantchaos/Coercion.git
Reference: v1.1.3
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/elegantchaos/Coercion
* tag v1.1.3 -> FETCH_HEAD
HEAD is now at df699eb Fixed NSDate date coercion
Cloned https://github.com/elegantchaos/Coercion.git
Revision (git rev-parse @):
df699ebd4707bcfd99fcad4b9f6c09ddc1208af9
SUCCESS checkout https://github.com/elegantchaos/Coercion.git at v1.1.3
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/elegantchaos/Coercion.git
https://github.com/elegantchaos/Coercion.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "Coercion",
"name" : "Coercion",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.12"
},
{
"name" : "ios",
"version" : "10.0"
},
{
"name" : "tvos",
"version" : "10.0"
},
{
"name" : "watchos",
"version" : "3.0"
}
],
"products" : [
{
"name" : "Coercion",
"targets" : [
"Coercion"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CoercionTests",
"module_type" : "SwiftTarget",
"name" : "CoercionTests",
"path" : "Tests/CoercionTests",
"sources" : [
"CoercionTests.swift",
"ConverterProtocolTests.swift",
"ConverterTests.swift",
"DictionaryCoercionTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"Coercion"
],
"type" : "test"
},
{
"c99name" : "Coercion",
"module_type" : "SwiftTarget",
"name" : "Coercion",
"path" : "Sources/Coercion",
"product_memberships" : [
"Coercion"
],
"sources" : [
"BinaryInteger+Coercion.swift",
"Bool+Coercion.swift",
"Converter.swift",
"Date+Coercion.swift",
"Dictionary+Coercion.swift",
"Double+Coercion.swift",
"Protocols/BoolConvertible.swift",
"Protocols/DataConvertible.swift",
"Protocols/DateConvertible.swift",
"Protocols/DoubleConvertible.swift",
"Protocols/IntConvertible.swift",
"Protocols/StandardConvertible.swift",
"Protocols/StringConvertible.swift",
"Protocols/UIntConvertible.swift",
"String+Coercion.swift"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/17] Compiling Coercion IntConvertible.swift
[4/17] Compiling Coercion StandardConvertible.swift
[5/17] Compiling Coercion StringConvertible.swift
[6/17] Compiling Coercion UIntConvertible.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/18] Compiling Coercion Converter.swift
/host/spi-builder-workspace/Sources/Coercion/Converter.swift:29:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'StandardConverter' may have shared mutable state; this is an error in the Swift 6 language mode
26 | }
27 |
28 | public struct StandardConverter: Converter {
| `- note: consider making struct 'StandardConverter' conform to the 'Sendable' protocol
29 | public static let shared = StandardConverter()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'StandardConverter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | var dateFormatter = ISO8601DateFormatter()
31 |
[8/18] Compiling Coercion Date+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/Converter.swift:29:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'StandardConverter' may have shared mutable state; this is an error in the Swift 6 language mode
26 | }
27 |
28 | public struct StandardConverter: Converter {
| `- note: consider making struct 'StandardConverter' conform to the 'Sendable' protocol
29 | public static let shared = StandardConverter()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'StandardConverter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | var dateFormatter = ISO8601DateFormatter()
31 |
[9/18] Emitting module Coercion
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:39:11: error: cannot find type 'CFBoolean' in scope
37 |
38 | #if !os(Linux)
39 | extension CFBoolean: IntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
40 | public var asInt: Int? { self == kCFBooleanTrue ? 1 : 0 }
41 | }
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:43:11: error: cannot find type 'CFBoolean' in scope
41 | }
42 |
43 | extension CFBoolean: UIntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
44 | public var asUInt: UInt? { self == kCFBooleanTrue ? 1 : 0 }
45 | }
/host/spi-builder-workspace/Sources/Coercion/Bool+Coercion.swift:33:11: error: cannot find type 'CFBoolean' in scope
31 |
32 | #if !os(Linux)
33 | extension CFBoolean: BoolConvertible {
| `- error: cannot find type 'CFBoolean' in scope
34 | public var asBool: Bool? { self == kCFBooleanTrue }
35 | }
/host/spi-builder-workspace/Sources/Coercion/Converter.swift:29:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'StandardConverter' may have shared mutable state; this is an error in the Swift 6 language mode
26 | }
27 |
28 | public struct StandardConverter: Converter {
| `- note: consider making struct 'StandardConverter' conform to the 'Sendable' protocol
29 | public static let shared = StandardConverter()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'StandardConverter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | var dateFormatter = ISO8601DateFormatter()
31 |
/host/spi-builder-workspace/Sources/Coercion/Double+Coercion.swift:35:11: error: cannot find type 'CFBoolean' in scope
33 |
34 | #if !os(Linux)
35 | extension CFBoolean: DoubleConvertible {
| `- error: cannot find type 'CFBoolean' in scope
36 | public var asDouble: Double? { self == kCFBooleanTrue ? 1.0 : 0.0 }
37 | }
/host/spi-builder-workspace/Sources/Coercion/String+Coercion.swift:46:11: error: cannot find type 'CFBoolean' in scope
44 |
45 | #if !os(Linux)
46 | extension CFBoolean: StringConvertible {
| `- error: cannot find type 'CFBoolean' in scope
47 | public var asString: String? { self == kCFBooleanTrue ? "true" : "false" }
48 | }
[10/18] Compiling Coercion BinaryInteger+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:39:11: error: cannot find type 'CFBoolean' in scope
37 |
38 | #if !os(Linux)
39 | extension CFBoolean: IntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
40 | public var asInt: Int? { self == kCFBooleanTrue ? 1 : 0 }
41 | }
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:43:11: error: cannot find type 'CFBoolean' in scope
41 | }
42 |
43 | extension CFBoolean: UIntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
44 | public var asUInt: UInt? { self == kCFBooleanTrue ? 1 : 0 }
45 | }
/host/spi-builder-workspace/Sources/Coercion/Bool+Coercion.swift:33:11: error: cannot find type 'CFBoolean' in scope
31 |
32 | #if !os(Linux)
33 | extension CFBoolean: BoolConvertible {
| `- error: cannot find type 'CFBoolean' in scope
34 | public var asBool: Bool? { self == kCFBooleanTrue }
35 | }
[11/18] Compiling Coercion Bool+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:39:11: error: cannot find type 'CFBoolean' in scope
37 |
38 | #if !os(Linux)
39 | extension CFBoolean: IntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
40 | public var asInt: Int? { self == kCFBooleanTrue ? 1 : 0 }
41 | }
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:43:11: error: cannot find type 'CFBoolean' in scope
41 | }
42 |
43 | extension CFBoolean: UIntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
44 | public var asUInt: UInt? { self == kCFBooleanTrue ? 1 : 0 }
45 | }
/host/spi-builder-workspace/Sources/Coercion/Bool+Coercion.swift:33:11: error: cannot find type 'CFBoolean' in scope
31 |
32 | #if !os(Linux)
33 | extension CFBoolean: BoolConvertible {
| `- error: cannot find type 'CFBoolean' in scope
34 | public var asBool: Bool? { self == kCFBooleanTrue }
35 | }
[12/18] Compiling Coercion String+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/String+Coercion.swift:46:11: error: cannot find type 'CFBoolean' in scope
44 |
45 | #if !os(Linux)
46 | extension CFBoolean: StringConvertible {
| `- error: cannot find type 'CFBoolean' in scope
47 | public var asString: String? { self == kCFBooleanTrue ? "true" : "false" }
48 | }
[13/18] Compiling Coercion DateConvertible.swift
[14/18] Compiling Coercion DoubleConvertible.swift
[15/18] Compiling Coercion BoolConvertible.swift
[16/18] Compiling Coercion DataConvertible.swift
[17/18] Compiling Coercion Dictionary+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/Double+Coercion.swift:35:11: error: cannot find type 'CFBoolean' in scope
33 |
34 | #if !os(Linux)
35 | extension CFBoolean: DoubleConvertible {
| `- error: cannot find type 'CFBoolean' in scope
36 | public var asDouble: Double? { self == kCFBooleanTrue ? 1.0 : 0.0 }
37 | }
[18/18] Compiling Coercion Double+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/Double+Coercion.swift:35:11: error: cannot find type 'CFBoolean' in scope
33 |
34 | #if !os(Linux)
35 | extension CFBoolean: DoubleConvertible {
| `- error: cannot find type 'CFBoolean' in scope
36 | public var asDouble: Double? { self == kCFBooleanTrue ? 1.0 : 0.0 }
37 | }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/16] Compiling Coercion BoolConvertible.swift
[3/16] Compiling Coercion DataConvertible.swift
[4/17] Compiling Coercion Dictionary+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/Double+Coercion.swift:35:11: error: cannot find type 'CFBoolean' in scope
33 |
34 | #if !os(Linux)
35 | extension CFBoolean: DoubleConvertible {
| `- error: cannot find type 'CFBoolean' in scope
36 | public var asDouble: Double? { self == kCFBooleanTrue ? 1.0 : 0.0 }
37 | }
[5/17] Compiling Coercion Double+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/Double+Coercion.swift:35:11: error: cannot find type 'CFBoolean' in scope
33 |
34 | #if !os(Linux)
35 | extension CFBoolean: DoubleConvertible {
| `- error: cannot find type 'CFBoolean' in scope
36 | public var asDouble: Double? { self == kCFBooleanTrue ? 1.0 : 0.0 }
37 | }
[6/17] Compiling Coercion IntConvertible.swift
[7/17] Compiling Coercion StandardConvertible.swift
[8/17] Compiling Coercion StringConvertible.swift
[9/17] Compiling Coercion UIntConvertible.swift
[10/17] Compiling Coercion DateConvertible.swift
[11/17] Compiling Coercion DoubleConvertible.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/17] Compiling Coercion Converter.swift
[13/17] Compiling Coercion Date+Coercion.swift
[14/17] Emitting module Coercion
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:39:11: error: cannot find type 'CFBoolean' in scope
37 |
38 | #if !os(Linux)
39 | extension CFBoolean: IntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
40 | public var asInt: Int? { self == kCFBooleanTrue ? 1 : 0 }
41 | }
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:43:11: error: cannot find type 'CFBoolean' in scope
41 | }
42 |
43 | extension CFBoolean: UIntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
44 | public var asUInt: UInt? { self == kCFBooleanTrue ? 1 : 0 }
45 | }
/host/spi-builder-workspace/Sources/Coercion/Bool+Coercion.swift:33:11: error: cannot find type 'CFBoolean' in scope
31 |
32 | #if !os(Linux)
33 | extension CFBoolean: BoolConvertible {
| `- error: cannot find type 'CFBoolean' in scope
34 | public var asBool: Bool? { self == kCFBooleanTrue }
35 | }
/host/spi-builder-workspace/Sources/Coercion/Double+Coercion.swift:35:11: error: cannot find type 'CFBoolean' in scope
33 |
34 | #if !os(Linux)
35 | extension CFBoolean: DoubleConvertible {
| `- error: cannot find type 'CFBoolean' in scope
36 | public var asDouble: Double? { self == kCFBooleanTrue ? 1.0 : 0.0 }
37 | }
/host/spi-builder-workspace/Sources/Coercion/String+Coercion.swift:46:11: error: cannot find type 'CFBoolean' in scope
44 |
45 | #if !os(Linux)
46 | extension CFBoolean: StringConvertible {
| `- error: cannot find type 'CFBoolean' in scope
47 | public var asString: String? { self == kCFBooleanTrue ? "true" : "false" }
48 | }
[15/17] Compiling Coercion BinaryInteger+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:39:11: error: cannot find type 'CFBoolean' in scope
37 |
38 | #if !os(Linux)
39 | extension CFBoolean: IntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
40 | public var asInt: Int? { self == kCFBooleanTrue ? 1 : 0 }
41 | }
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:43:11: error: cannot find type 'CFBoolean' in scope
41 | }
42 |
43 | extension CFBoolean: UIntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
44 | public var asUInt: UInt? { self == kCFBooleanTrue ? 1 : 0 }
45 | }
/host/spi-builder-workspace/Sources/Coercion/Bool+Coercion.swift:33:11: error: cannot find type 'CFBoolean' in scope
31 |
32 | #if !os(Linux)
33 | extension CFBoolean: BoolConvertible {
| `- error: cannot find type 'CFBoolean' in scope
34 | public var asBool: Bool? { self == kCFBooleanTrue }
35 | }
[16/17] Compiling Coercion Bool+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:39:11: error: cannot find type 'CFBoolean' in scope
37 |
38 | #if !os(Linux)
39 | extension CFBoolean: IntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
40 | public var asInt: Int? { self == kCFBooleanTrue ? 1 : 0 }
41 | }
/host/spi-builder-workspace/Sources/Coercion/BinaryInteger+Coercion.swift:43:11: error: cannot find type 'CFBoolean' in scope
41 | }
42 |
43 | extension CFBoolean: UIntConvertible {
| `- error: cannot find type 'CFBoolean' in scope
44 | public var asUInt: UInt? { self == kCFBooleanTrue ? 1 : 0 }
45 | }
/host/spi-builder-workspace/Sources/Coercion/Bool+Coercion.swift:33:11: error: cannot find type 'CFBoolean' in scope
31 |
32 | #if !os(Linux)
33 | extension CFBoolean: BoolConvertible {
| `- error: cannot find type 'CFBoolean' in scope
34 | public var asBool: Bool? { self == kCFBooleanTrue }
35 | }
[17/17] Compiling Coercion String+Coercion.swift
/host/spi-builder-workspace/Sources/Coercion/String+Coercion.swift:46:11: error: cannot find type 'CFBoolean' in scope
44 |
45 | #if !os(Linux)
46 | extension CFBoolean: StringConvertible {
| `- error: cannot find type 'CFBoolean' in scope
47 | public var asString: String? { self == kCFBooleanTrue ? "true" : "false" }
48 | }
BUILD FAILURE 6.1 android