The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CoreJSON, reference master (d51bf4), with Swift 6.3 for Android on 10 Apr 2026 14:06:26 UTC.

Swift 6 data race errors: 0

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>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tomquist/CoreJSON.git
Reference: master
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/tomquist/CoreJSON
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at d51bf48 Add conformance to Codable
Cloned https://github.com/tomquist/CoreJSON.git
Revision (git rev-parse @):
d51bf4881192a9325a856d81c2e2fc7a5d25bc2d
SUCCESS checkout https://github.com/tomquist/CoreJSON.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.3
Building package at path:  $PWD
https://github.com/tomquist/CoreJSON.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
Building for debugging...
[0/8] Write sources
[7/8] Write swift-version--4F562202D5529B1.txt
[9/10] Emitting module CoreJSON
[10/10] Compiling CoreJSON JSON.swift
[12/24] Emitting module CoreJSONLiterals
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:28:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
26 | #endif
27 |
28 | extension JSON: ExpressibleByIntegerLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |     public init(integerLiteral value: Int) {
30 |         self = .number(.int(value))
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:34:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByNilLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
32 | }
33 |
34 | extension JSON: ExpressibleByNilLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByNilLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |     public init(nilLiteral: ()) {
36 |         self = .null
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:40:1: warning: extension declares a conformance of imported type 'JSON' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
38 | }
39 |
40 | extension JSON: ExpressibleByStringLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
41 |     public init(unicodeScalarLiteral value: String) {
42 |         self = .string(value)
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:52:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
50 | }
51 |
52 | extension JSON: ExpressibleByFloatLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
53 |     public init(floatLiteral value: Double) {
54 |         self = .number(.double(value))
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:58:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
56 | }
57 |
58 | extension JSON: ExpressibleByBooleanLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
59 |     public init(booleanLiteral value: Bool) {
60 |         self = .bool(value)
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:64:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
62 | }
63 |
64 | extension JSON: ExpressibleByArrayLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
65 |     public init(arrayLiteral elements: JSON...) {
66 |         self = .array(elements)
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:70:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
68 | }
69 |
70 | extension JSON: ExpressibleByDictionaryLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
71 |     public init(dictionaryLiteral elements: (String, JSON)...) {
72 |         self = .object(elements.reduce([:]) { (dict, tuple) -> [String: JSON] in
[13/24] Compiling CoreJSONLiterals JSONLiterals.swift
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:28:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
26 | #endif
27 |
28 | extension JSON: ExpressibleByIntegerLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |     public init(integerLiteral value: Int) {
30 |         self = .number(.int(value))
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:34:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByNilLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
32 | }
33 |
34 | extension JSON: ExpressibleByNilLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByNilLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |     public init(nilLiteral: ()) {
36 |         self = .null
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:40:1: warning: extension declares a conformance of imported type 'JSON' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
38 | }
39 |
40 | extension JSON: ExpressibleByStringLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
41 |     public init(unicodeScalarLiteral value: String) {
42 |         self = .string(value)
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:52:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
50 | }
51 |
52 | extension JSON: ExpressibleByFloatLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
53 |     public init(floatLiteral value: Double) {
54 |         self = .number(.double(value))
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:58:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
56 | }
57 |
58 | extension JSON: ExpressibleByBooleanLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
59 |     public init(booleanLiteral value: Bool) {
60 |         self = .bool(value)
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:64:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
62 | }
63 |
64 | extension JSON: ExpressibleByArrayLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
65 |     public init(arrayLiteral elements: JSON...) {
66 |         self = .array(elements)
/host/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:70:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
68 | }
69 |
70 | extension JSON: ExpressibleByDictionaryLiteral {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
71 |     public init(dictionaryLiteral elements: (String, JSON)...) {
72 |         self = .object(elements.reduce([:]) { (dict, tuple) -> [String: JSON] in
[14/25] Emitting module CoreJSONSubscript
[15/25] Compiling CoreJSONSubscript JSONSubscript.swift
[16/26] Emitting module CoreJSONCodable
/host/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:27:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
25 | import CoreJSON
26 |
27 | extension JSON: Encodable {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |
29 |     public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:42:1: warning: extension declares a conformance of imported type 'JSONNumber' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
40 | }
41 |
42 | extension JSONNumber: Encodable {
   | |- warning: extension declares a conformance of imported type 'JSONNumber' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
43 |
44 |     public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:54:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
52 | }
53 |
54 | extension JSON: Decodable {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
55 |
56 |     public init(from decoder: Decoder) throws {
[17/26] Compiling CoreJSONCodable JSONCodable.swift
/host/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:27:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
25 | import CoreJSON
26 |
27 | extension JSON: Encodable {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |
29 |     public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:42:1: warning: extension declares a conformance of imported type 'JSONNumber' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
40 | }
41 |
42 | extension JSONNumber: Encodable {
   | |- warning: extension declares a conformance of imported type 'JSONNumber' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
43 |
44 |     public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:54:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
52 | }
53 |
54 | extension JSON: Decodable {
   | |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
55 |
56 |     public init(from decoder: Decoder) throws {
[21/27] Emitting module CoreJSONConvenience
[22/27] Compiling CoreJSONConvenience JSONConvenience.swift
[24/28] Emitting module CoreJSONFoundation
[25/28] Emitting module CoreJSONPointer
[26/28] Compiling CoreJSONPointer JSONPointer.swift
[27/29] Compiling CoreJSONFoundation FromFoundation.swift
[28/29] Compiling CoreJSONFoundation ToFoundation.swift
Build complete! (13.46s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CoreJSON",
  "name" : "CoreJSON",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CoreJSON",
      "targets" : [
        "CoreJSON",
        "CoreJSONConvenience",
        "CoreJSONFoundation",
        "CoreJSONLiterals",
        "CoreJSONSubscript",
        "CoreJSONPointer",
        "CoreJSONCodable"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CoreJSONTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONTests",
      "path" : "Tests/CoreJSONTests",
      "sources" : [
        "CoreJSONTests.swift"
      ],
      "target_dependencies" : [
        "CoreJSON"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreJSONSubscriptTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONSubscriptTests",
      "path" : "Tests/CoreJSONSubscriptTests",
      "sources" : [
        "CoreJSONSubscriptTests.swift"
      ],
      "target_dependencies" : [
        "CoreJSON",
        "CoreJSONSubscript",
        "CoreJSONConvenience",
        "CoreJSONLiterals"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreJSONSubscript",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONSubscript",
      "path" : "Sources/CoreJSONSubscript",
      "product_memberships" : [
        "CoreJSON"
      ],
      "sources" : [
        "JSONSubscript.swift"
      ],
      "target_dependencies" : [
        "CoreJSON"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreJSONPointerTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONPointerTests",
      "path" : "Tests/CoreJSONPointerTests",
      "sources" : [
        "CoreJSONPointerTests.swift"
      ],
      "target_dependencies" : [
        "CoreJSON",
        "CoreJSONPointer"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreJSONPointer",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONPointer",
      "path" : "Sources/CoreJSONPointer",
      "product_memberships" : [
        "CoreJSON"
      ],
      "sources" : [
        "JSONPointer.swift"
      ],
      "target_dependencies" : [
        "CoreJSON"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreJSONLiteralsTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONLiteralsTests",
      "path" : "Tests/CoreJSONLiteralsTests",
      "sources" : [
        "CoreJSONLiteralsTests.swift"
      ],
      "target_dependencies" : [
        "CoreJSON",
        "CoreJSONLiterals"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreJSONLiterals",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONLiterals",
      "path" : "Sources/CoreJSONLiterals",
      "product_memberships" : [
        "CoreJSON"
      ],
      "sources" : [
        "JSONLiterals.swift"
      ],
      "target_dependencies" : [
        "CoreJSON"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreJSONFoundationTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONFoundationTests",
      "path" : "Tests/CoreJSONFoundationTests",
      "sources" : [
        "CoreJSONFromFoundationTests.swift",
        "CoreJSONToFoundationTests.swift"
      ],
      "target_dependencies" : [
        "CoreJSON",
        "CoreJSONFoundation"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreJSONFoundation",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONFoundation",
      "path" : "Sources/CoreJSONFoundation",
      "product_memberships" : [
        "CoreJSON"
      ],
      "sources" : [
        "FromFoundation.swift",
        "ToFoundation.swift"
      ],
      "target_dependencies" : [
        "CoreJSON"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreJSONConvenienceTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONConvenienceTests",
      "path" : "Tests/CoreJSONConvenienceTests",
      "sources" : [
        "CoreJSONConvenienceTests.swift"
      ],
      "target_dependencies" : [
        "CoreJSON",
        "CoreJSONConvenience"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreJSONConvenience",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONConvenience",
      "path" : "Sources/CoreJSONConvenience",
      "product_memberships" : [
        "CoreJSON"
      ],
      "sources" : [
        "JSONConvenience.swift"
      ],
      "target_dependencies" : [
        "CoreJSON"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreJSONCodableTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONCodableTests",
      "path" : "Tests/CoreJSONCodableTests",
      "sources" : [
        "CoreJSONCodableTests.swift"
      ],
      "target_dependencies" : [
        "CoreJSON",
        "CoreJSONCodable"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreJSONCodable",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSONCodable",
      "path" : "Sources/CoreJSONCodable",
      "product_memberships" : [
        "CoreJSON"
      ],
      "sources" : [
        "JSONCodable.swift"
      ],
      "target_dependencies" : [
        "CoreJSON"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreJSON",
      "module_type" : "SwiftTarget",
      "name" : "CoreJSON",
      "path" : "Sources/CoreJSON",
      "product_memberships" : [
        "CoreJSON"
      ],
      "sources" : [
        "JSON.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
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
Done.