The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-json-parsing, reference master (a236b9), with Swift 6.1 for Android on 10 Jan 2026 01:53:57 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/oskarek/swift-json-parsing.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/oskarek/swift-json-parsing
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at a236b94 Update project for Swift 6 and bump swift-parsing (#7)
Cloned https://github.com/oskarek/swift-json-parsing.git
Revision (git rev-parse @):
a236b9423863fc7da031992706c7b6a5b9e5b384
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/oskarek/swift-json-parsing.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/oskarek/swift-json-parsing.git
https://github.com/oskarek/swift-json-parsing.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-parsing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.14.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-parsing"
    },
    {
      "identity" : "swift-benchmark",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/google/swift-benchmark"
    }
  ],
  "manifest_display_name" : "swift-json-parsing",
  "name" : "swift-json-parsing",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "JSONParsing",
      "targets" : [
        "JSONParsing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swift-json-parsing-benchmark",
      "targets" : [
        "swift-json-parsing-benchmark"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_json_parsing_benchmark",
      "module_type" : "SwiftTarget",
      "name" : "swift-json-parsing-benchmark",
      "path" : "Sources/swift-json-parsing-benchmark",
      "product_dependencies" : [
        "Benchmark",
        "Parsing"
      ],
      "product_memberships" : [
        "swift-json-parsing-benchmark"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/swift-json-parsing-benchmark/Samples/sample_json.json",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "DecodingBenchmarks.swift",
        "EncodingBenchmarks.swift",
        "Person.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "JSONParsing"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "JSONParsingTests",
      "module_type" : "SwiftTarget",
      "name" : "JSONParsingTests",
      "path" : "Tests/JSONParsingTests",
      "sources" : [
        "JSONParsers/DecodableJSONParserTests.swift",
        "JSONParsers/FieldTests.swift",
        "JSONParsers/JSONArrayTests.swift",
        "JSONParsers/JSONBooleanTests.swift",
        "JSONParsers/JSONNumberTests.swift",
        "JSONParsers/JSONStringTests.swift",
        "JSONParsers/NestedJSONTests.swift",
        "JSONParsers/NullTests.swift",
        "JSONParsers/ObjectTests.swift",
        "JSONParsers/OptionalFieldTests.swift",
        "JSONValue/PrettyPrintingTests.swift",
        "JSONValue/SerializationTests.swift"
      ],
      "target_dependencies" : [
        "JSONParsing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "JSONParsing",
      "module_type" : "SwiftTarget",
      "name" : "JSONParsing",
      "path" : "Sources/JSONParsing",
      "product_dependencies" : [
        "Parsing"
      ],
      "product_memberships" : [
        "JSONParsing",
        "swift-json-parsing-benchmark"
      ],
      "sources" : [
        "Errors/JSONParsingError.swift",
        "Errors/JSONPrintingError.swift",
        "Exports.swift",
        "Foundation+JSONParsing/Date+JSONParsing.swift",
        "Foundation+JSONParsing/URL+JSONParsing.swift",
        "Foundation+JSONParsing/UUID+JSONParsing.swift",
        "JSONParser+DecodeEncode.swift",
        "JSONParsers/Field.swift",
        "JSONParsers/JSONArray.swift",
        "JSONParsers/JSONBoolean.swift",
        "JSONParsers/JSONNumber.swift",
        "JSONParsers/JSONObject.swift",
        "JSONParsers/JSONString.swift",
        "JSONParsers/Null.swift",
        "JSONParsers/OptionalField.swift",
        "JSONParsing+Codable/DecodableJSONParser.swift",
        "JSONParsing+Codable/DecodingContainers+JSONParsing.swift",
        "JSONParsing+Codable/EncodingContainers+JSONParsing.swift",
        "JSONParsing+Codable/JSONParsingError+Codable.swift",
        "JSONParsing+Codable/JSONPrintingError+Codable.swift",
        "JSONValue/JSONValue+Codable.swift",
        "JSONValue/JSONValue+JSONSerialization.swift",
        "JSONValue/JSONValue+PrettyPrinting.swift",
        "JSONValue/JSONValue.swift",
        "Typealiases.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.2"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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:59d1b5e7d2f3065c4a6b5e045771922b1e51742b0d69504dc6de4bec6728e3a4
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
error: 'spi-builder-workspace': package 'spi-builder-workspace' is using Swift tools version 6.2.0 but the installed version is 6.1.0
error: 'spi-builder-workspace': package 'spi-builder-workspace' is using Swift tools version 6.2.0 but the installed version is 6.1.0
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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:59d1b5e7d2f3065c4a6b5e045771922b1e51742b0d69504dc6de4bec6728e3a4
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
error: 'spi-builder-workspace': package 'spi-builder-workspace' is using Swift tools version 6.2.0 but the installed version is 6.1.0
error: 'spi-builder-workspace': package 'spi-builder-workspace' is using Swift tools version 6.2.0 but the installed version is 6.1.0
BUILD FAILURE 6.1 android