The Swift Package Index logo.Swift Package Index

Build Information

Successful build of FineJSON, reference master (6bde4d), with Swift 6.2 for Android on 18 Jun 2025 12:47:05 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/omochi/FineJSON.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/omochi/FineJSON
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 6bde4d5 Update README.md
Submodule path 'Carthage/Checkouts/RichJSONParser': checked out '263e2ecfe88d0500fa99e4cbc8c948529d335534'
Submodule 'Carthage/Checkouts/RichJSONParser' (https://github.com/omochi/RichJSONParser.git) registered for path 'Carthage/Checkouts/RichJSONParser'
Cloning into '/host/spi-builder-workspace/Carthage/Checkouts/RichJSONParser'...
Cloned https://github.com/omochi/FineJSON.git
Revision (git rev-parse @):
6bde4d556efcd399789684007f72f384170d9a58
SUCCESS checkout https://github.com/omochi/FineJSON.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/omochi/FineJSON.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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
Fetching https://github.com/omochi/RichJSONParser.git
[1/533] Fetching richjsonparser
Fetched https://github.com/omochi/RichJSONParser.git from cache (0.20s)
Computing version for https://github.com/omochi/RichJSONParser.git
Computed https://github.com/omochi/RichJSONParser.git at 3.0.0 (0.63s)
Creating working copy for https://github.com/omochi/RichJSONParser.git
Working copy of https://github.com/omochi/RichJSONParser.git resolved at 3.0.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-8C5A4AE7A8CE2BA.txt
[4/19] Emitting module RichJSONParser
[5/21] Compiling RichJSONParser UTF8Decoder.swift
[6/21] Compiling RichJSONParser UTF8Reader.swift
[7/21] Compiling RichJSONParser ParsedJSON.swift
[8/21] Compiling RichJSONParser SourceLocation.swift
[9/21] Compiling RichJSONParser SourceLocationLite.swift
[10/21] Compiling RichJSONParser StaticBuffer.swift
[11/21] Compiling RichJSONParser FormatExtension.swift
[12/21] Compiling RichJSONParser JSON.swift
[13/21] Compiling RichJSONParser JSONToken.swift
[14/21] Compiling RichJSONParser JSONTokenizer.swift
[15/21] Compiling RichJSONParser JSONDictionary.swift
[16/21] Compiling RichJSONParser JSONParser.swift
[17/21] Compiling RichJSONParser JSONSerializer.swift
[18/21] Compiling RichJSONParser JSONStringEscape.swift
[19/21] Compiling RichJSONParser Characters.swift
[20/21] Compiling RichJSONParser DecodedUnicodeChar.swift
[21/21] Compiling RichJSONParser FastJSONParser.swift
[23/44] Emitting module FineJSON
/host/spi-builder-workspace/Sources/FineJSON/JSONCodable.swift:86:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
 84 | }
 85 |
 86 | 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 'RichJSONParser' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 87 |     public init(from decoder: Decoder) throws {
 88 |         let c = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/FineJSON/JSONCodable.swift:132:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
130 | }
131 |
132 | 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 'RichJSONParser' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |     public func encode(to encoder: Encoder) throws {
134 |         var c = encoder.singleValueContainer()
/host/spi-builder-workspace/Sources/FineJSON/ParsedJSONCodable.swift:4:1: warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
 2 | import RichJSONParser
 3 |
 4 | extension ParsedJSON : Decodable {
   | |- warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     public init(from decoder: Decoder) throws {
 6 |         if let json = decoder.json {
/host/spi-builder-workspace/Sources/FineJSON/ParsedJSONCodable.swift:17:1: warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
15 | }
16 |
17 | extension ParsedJSON : Encodable {
   | |- warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public func encode(to encoder: Encoder) throws {
19 |         let json = toJSON()
[24/46] Compiling FineJSON FineJSONDecoder.swift
[25/46] Compiling FineJSON FineJSONEncoder.swift
[26/46] Compiling FineJSON JSONAnnotatable.swift
[27/46] Compiling FineJSON SingleEC.swift
[28/46] Compiling FineJSON SourceLocationExtension.swift
[29/46] Compiling FineJSON UnkeyedDC.swift
[30/46] Compiling FineJSON JSONNumber.swift
[31/46] Compiling FineJSON JSONObject.swift
[32/46] Compiling FineJSON KeyedDC.swift
[33/46] Compiling FineJSON JSONArray.swift
/host/spi-builder-workspace/Sources/FineJSON/JSONCodable.swift:86:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
 84 | }
 85 |
 86 | 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 'RichJSONParser' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 87 |     public init(from decoder: Decoder) throws {
 88 |         let c = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/FineJSON/JSONCodable.swift:132:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
130 | }
131 |
132 | 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 'RichJSONParser' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |     public func encode(to encoder: Encoder) throws {
134 |         var c = encoder.singleValueContainer()
[34/46] Compiling FineJSON JSONCodable.swift
/host/spi-builder-workspace/Sources/FineJSON/JSONCodable.swift:86:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
 84 | }
 85 |
 86 | 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 'RichJSONParser' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 87 |     public init(from decoder: Decoder) throws {
 88 |         let c = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/FineJSON/JSONCodable.swift:132:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
130 | }
131 |
132 | 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 'RichJSONParser' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |     public func encode(to encoder: Encoder) throws {
134 |         var c = encoder.singleValueContainer()
[35/46] Compiling FineJSON JSONEquatable.swift
/host/spi-builder-workspace/Sources/FineJSON/JSONCodable.swift:86:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
 84 | }
 85 |
 86 | 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 'RichJSONParser' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 87 |     public init(from decoder: Decoder) throws {
 88 |         let c = try decoder.singleValueContainer()
/host/spi-builder-workspace/Sources/FineJSON/JSONCodable.swift:132:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
130 | }
131 |
132 | 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 'RichJSONParser' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |     public func encode(to encoder: Encoder) throws {
134 |         var c = encoder.singleValueContainer()
[36/46] Compiling FineJSON DecoderExtension.swift
[37/46] Compiling FineJSON DecodingError.swift
[38/46] Compiling FineJSON Exports.swift
[39/46] Compiling FineJSON KeyedEC.swift
/host/spi-builder-workspace/Sources/FineJSON/ParsedJSONCodable.swift:4:1: warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
 2 | import RichJSONParser
 3 |
 4 | extension ParsedJSON : Decodable {
   | |- warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     public init(from decoder: Decoder) throws {
 6 |         if let json = decoder.json {
/host/spi-builder-workspace/Sources/FineJSON/ParsedJSONCodable.swift:17:1: warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
15 | }
16 |
17 | extension ParsedJSON : Encodable {
   | |- warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public func encode(to encoder: Encoder) throws {
19 |         let json = toJSON()
[40/46] Compiling FineJSON ParsedJSONCodable.swift
/host/spi-builder-workspace/Sources/FineJSON/ParsedJSONCodable.swift:4:1: warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
 2 | import RichJSONParser
 3 |
 4 | extension ParsedJSON : Decodable {
   | |- warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     public init(from decoder: Decoder) throws {
 6 |         if let json = decoder.json {
/host/spi-builder-workspace/Sources/FineJSON/ParsedJSONCodable.swift:17:1: warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
15 | }
16 |
17 | extension ParsedJSON : Encodable {
   | |- warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public func encode(to encoder: Encoder) throws {
19 |         let json = toJSON()
[41/46] Compiling FineJSON SingleDC.swift
/host/spi-builder-workspace/Sources/FineJSON/ParsedJSONCodable.swift:4:1: warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
 2 | import RichJSONParser
 3 |
 4 | extension ParsedJSON : Decodable {
   | |- warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     public init(from decoder: Decoder) throws {
 6 |         if let json = decoder.json {
/host/spi-builder-workspace/Sources/FineJSON/ParsedJSONCodable.swift:17:1: warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
15 | }
16 |
17 | extension ParsedJSON : Encodable {
   | |- warning: extension declares a conformance of imported type 'ParsedJSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'RichJSONParser' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public func encode(to encoder: Encoder) throws {
19 |         let json = toJSON()
[42/46] Compiling FineJSON BoxedJSON.swift
[43/46] Compiling FineJSON CodablePrimitive.swift
[44/46] Compiling FineJSON CodablePrimitiveJSONDecoder.swift
[45/46] Compiling FineJSON UnkeyedEC.swift
[46/46] Compiling FineJSON WeakTypingPrimitiveJSONDecoder.swift
Build complete! (18.46s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "richjsonparser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/omochi/RichJSONParser.git"
    }
  ],
  "manifest_display_name" : "FineJSON",
  "name" : "FineJSON",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "FineJSON",
      "targets" : [
        "FineJSON"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FineJSONTests",
      "module_type" : "SwiftTarget",
      "name" : "FineJSONTests",
      "path" : "Tests/FineJSONTests",
      "sources" : [
        "AnnotationTests.swift",
        "DecodeTests.swift",
        "DecoderCodingPathTests.swift",
        "EncodeTests.swift",
        "FeaturesTests.swift",
        "FeaturesTests2.swift",
        "JSONDecodeTests.swift",
        "JSONEncodeTests.swift",
        "JSONSerialize.swift",
        "SimpleCodingTests.swift",
        "SourceLocationTests.swift",
        "WeakTypingTests.swift"
      ],
      "target_dependencies" : [
        "FineJSON"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FineJSON",
      "module_type" : "SwiftTarget",
      "name" : "FineJSON",
      "path" : "Sources/FineJSON",
      "product_dependencies" : [
        "RichJSONParser"
      ],
      "product_memberships" : [
        "FineJSON"
      ],
      "sources" : [
        "BoxedJSON.swift",
        "CodablePrimitive.swift",
        "CodablePrimitiveJSONDecoder.swift",
        "DecoderExtension.swift",
        "DecodingError.swift",
        "Exports.swift",
        "FineJSONDecoder.swift",
        "FineJSONEncoder.swift",
        "JSONAnnotatable.swift",
        "JSONArray.swift",
        "JSONCodable.swift",
        "JSONEquatable.swift",
        "JSONNumber.swift",
        "JSONObject.swift",
        "KeyedDC.swift",
        "KeyedEC.swift",
        "ParsedJSONCodable.swift",
        "SingleDC.swift",
        "SingleEC.swift",
        "SourceLocationExtension.swift",
        "UnkeyedDC.swift",
        "UnkeyedEC.swift",
        "WeakTypingPrimitiveJSONDecoder.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
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
Done.