Build Information
Successful build of FineJSON, reference master (6bde4d), with Swift 6.3 for Android on 11 Apr 2026 14:05:56 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.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.3
Building package at path: $PWD
https://github.com/omochi/FineJSON.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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
Fetching https://github.com/omochi/RichJSONParser.git
[1/533] Fetching richjsonparser
Fetched https://github.com/omochi/RichJSONParser.git from cache (0.25s)
Computing version for https://github.com/omochi/RichJSONParser.git
Computed https://github.com/omochi/RichJSONParser.git at 3.0.0 (1.35s)
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--4F562202D5529B1.txt
[4/19] Emitting module RichJSONParser
[5/21] Compiling RichJSONParser UTF8Decoder.swift
[6/21] Compiling RichJSONParser UTF8Reader.swift
[7/21] Compiling RichJSONParser JSONSerializer.swift
[8/21] Compiling RichJSONParser JSONStringEscape.swift
[9/21] Compiling RichJSONParser ParsedJSON.swift
[10/21] Compiling RichJSONParser SourceLocation.swift
[11/21] Compiling RichJSONParser SourceLocationLite.swift
[12/21] Compiling RichJSONParser StaticBuffer.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 FormatExtension.swift
[18/21] Compiling RichJSONParser JSON.swift
[19/21] Compiling RichJSONParser Characters.swift
[20/21] Compiling RichJSONParser DecodedUnicodeChar.swift
[21/21] Compiling RichJSONParser FastJSONParser.swift
[23/44] Compiling FineJSON BoxedJSON.swift
[24/44] Compiling FineJSON CodablePrimitive.swift
[25/44] Compiling FineJSON CodablePrimitiveJSONDecoder.swift
[26/46] 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()
[27/46] Compiling FineJSON SingleEC.swift
[28/46] Compiling FineJSON SourceLocationExtension.swift
[29/46] Compiling FineJSON UnkeyedDC.swift
[30/46] Compiling FineJSON FineJSONDecoder.swift
[31/46] Compiling FineJSON FineJSONEncoder.swift
[32/46] Compiling FineJSON JSONAnnotatable.swift
[33/46] Compiling FineJSON DecoderExtension.swift
[34/46] Compiling FineJSON DecodingError.swift
[35/46] Compiling FineJSON Exports.swift
[36/46] Compiling FineJSON JSONNumber.swift
[37/46] Compiling FineJSON JSONObject.swift
[38/46] Compiling FineJSON KeyedDC.swift
[39/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()
[40/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()
[41/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()
[42/46] Compiling FineJSON UnkeyedEC.swift
[43/46] Compiling FineJSON WeakTypingPrimitiveJSONDecoder.swift
[44/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()
[45/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()
[46/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()
Build complete! (25.32s)
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.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.