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 Coercion, reference main (d1cbf3), with Swift 6.1 for Wasm on 28 May 2025 03:40:31 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/elegantchaos/Coercion.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/elegantchaos/Coercion
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d1cbf3a Added asUInt
Cloned https://github.com/elegantchaos/Coercion.git
Revision (git rev-parse @):
d1cbf3a59358e30702748f0b1f1f877e054b8c4f
SUCCESS checkout https://github.com/elegantchaos/Coercion.git at main
========================================
Build
========================================
Selected platform:         wasm
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-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/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/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 | }
[4/18] Compiling Coercion StringConvertible.swift
[5/18] Compiling Coercion UIntConvertible.swift
[6/18] Compiling Coercion IntConvertible.swift
[7/18] Compiling Coercion StandardConvertible.swift
[8/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 | }
[9/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 |
[10/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 |
[11/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 | }
[12/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 | }
[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-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-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 StringConvertible.swift
[5/17] Compiling Coercion UIntConvertible.swift
[6/17] Compiling Coercion IntConvertible.swift
[7/17] Compiling Coercion StandardConvertible.swift
[8/17] Compiling Coercion DateConvertible.swift
[9/17] Compiling Coercion DoubleConvertible.swift
[10/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 | }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/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 | }
[12/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 | }
[13/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 | }
[14/17] Compiling Coercion Converter.swift
[15/17] Compiling Coercion Date+Coercion.swift
[16/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 | }
[17/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 | }
BUILD FAILURE 6.1 wasm