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

Successful build of JSONSchema, reference master (8c7ec1), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 22:31:59 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kylef/JSONSchema.swift.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kylef/JSONSchema.swift
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 8c7ec15 feat: Add support for date-time format
Submodule path 'Tests/Cases': checked out 'fd0aa9f8e2497d9048e17f071abb8fa409f5cb52'
Submodule 'Tests/Cases' (https://github.com/json-schema/JSON-Schema-Test-Suite) registered for path 'Tests/Cases'
Cloning into '/Users/admin/builder/spi-builder-workspace/Tests/Cases'...
Cloned https://github.com/kylef/JSONSchema.swift.git
Revision (git rev-parse @):
8c7ec156dde09715d8d2ed83cc8fe6b1ba90648c
SUCCESS checkout https://github.com/kylef/JSONSchema.swift.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/kylef/JSONSchema.swift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/42] Emitting module JSONSchema
[4/46] Compiling JSONSchema dependencies.swift
[5/46] Compiling JSONSchema dependentSchemas.swift
[6/46] Compiling JSONSchema if.swift
[7/46] Compiling JSONSchema items.swift
[8/46] Compiling JSONSchema not.swift
[9/46] Compiling JSONSchema duration.swift
[10/46] Compiling JSONSchema time.swift
[11/46] Compiling JSONSchema JSONPointer.swift
[12/46] Compiling JSONSchema JSONSchema.swift
[13/46] Compiling JSONSchema ValidationResult.swift
[14/46] Compiling JSONSchema Validator.swift
[15/46] Compiling JSONSchema Validators.swift
[16/46] Compiling JSONSchema format.swift
[17/46] Compiling JSONSchema RefResolver.swift
/Users/admin/builder/spi-builder-workspace/Sources/RefResolver.swift:4:29: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
  2 |
  3 | func urlSplitFragment(url: String) -> (String, String) {
  4 |   guard let hashIndex = url.index(of: "#") else {
    |                             |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
    |                             `- note: use 'firstIndex(of:)' instead
  5 |     return (url, "")
  6 |   }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[18/46] Compiling JSONSchema const.swift
/Users/admin/builder/spi-builder-workspace/Sources/RefResolver.swift:4:29: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
  2 |
  3 | func urlSplitFragment(url: String) -> (String, String) {
  4 |   guard let hashIndex = url.index(of: "#") else {
    |                             |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
    |                             `- note: use 'firstIndex(of:)' instead
  5 |     return (url, "")
  6 |   }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[19/46] Compiling JSONSchema dependentRequired.swift
/Users/admin/builder/spi-builder-workspace/Sources/RefResolver.swift:4:29: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
  2 |
  3 | func urlSplitFragment(url: String) -> (String, String) {
  4 |   guard let hashIndex = url.index(of: "#") else {
    |                             |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
    |                             `- note: use 'firstIndex(of:)' instead
  5 |     return (url, "")
  6 |   }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[20/46] Compiling JSONSchema enum.swift
/Users/admin/builder/spi-builder-workspace/Sources/RefResolver.swift:4:29: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
  2 |
  3 | func urlSplitFragment(url: String) -> (String, String) {
  4 |   guard let hashIndex = url.index(of: "#") else {
    |                             |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
    |                             `- note: use 'firstIndex(of:)' instead
  5 |     return (url, "")
  6 |   }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[21/46] Compiling JSONSchema Draft6Validator.swift
[22/46] Compiling JSONSchema Draft7Validator.swift
[23/46] Compiling JSONSchema date-time.swift
[24/46] Compiling JSONSchema date.swift
[25/46] Compiling JSONSchema oneOf.swift
[26/46] Compiling JSONSchema patternProperties.swift
[27/46] Compiling JSONSchema prefixItems.swift
[28/46] Compiling JSONSchema properties.swift
[29/46] Compiling JSONSchema propertyNames.swift
[30/46] Compiling JSONSchema multipleOf.swift
[31/46] Compiling JSONSchema pattern.swift
[32/46] Compiling JSONSchema required.swift
[33/46] Compiling JSONSchema uniqueItems.swift
[34/46] Compiling JSONSchema minMaxItems.swift
[35/46] Compiling JSONSchema minMaxLength.swift
[36/46] Compiling JSONSchema minMaxNumber.swift
[37/46] Compiling JSONSchema minMaxProperties.swift
[38/46] Compiling JSONSchema ref.swift
[39/46] Compiling JSONSchema Draft201909Validator.swift
[40/46] Compiling JSONSchema Draft202012Validator.swift
[41/46] Compiling JSONSchema Draft4Validator.swift
[42/46] Compiling JSONSchema additionalItems.swift
[43/46] Compiling JSONSchema additionalProperties.swift
[44/46] Compiling JSONSchema allOf.swift
[45/46] Compiling JSONSchema anyOf.swift
[46/46] Compiling JSONSchema contains.swift
Build complete! (9.78s)
Fetching https://github.com/kylef/Spectre.git
[1/1021] Fetching spectre
Fetched https://github.com/kylef/Spectre.git from cache (0.96s)
Fetching https://github.com/kylef/PathKit.git
[1/1411] Fetching pathkit
Fetched https://github.com/kylef/PathKit.git from cache (0.79s)
Computing version for https://github.com/kylef/PathKit.git
Computed https://github.com/kylef/PathKit.git at 1.0.1 (2.75s)
Creating working copy for https://github.com/kylef/Spectre.git
Working copy of https://github.com/kylef/Spectre.git resolved at d02129a9af77729de049d328dd61e530b6f2bb2b
Creating working copy for https://github.com/kylef/PathKit.git
Working copy of https://github.com/kylef/PathKit.git resolved at 1.0.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "pathkit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kylef/PathKit.git"
    },
    {
      "identity" : "spectre",
      "requirement" : {
        "revision" : [
          "d02129a9af77729de049d328dd61e530b6f2bb2b"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kylef/Spectre.git"
    }
  ],
  "manifest_display_name" : "JSONSchema",
  "name" : "JSONSchema",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    }
  ],
  "products" : [
    {
      "name" : "JSONSchema",
      "targets" : [
        "JSONSchema"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "JSONSchemaTests",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaTests",
      "path" : "Tests/JSONSchemaTests",
      "product_dependencies" : [
        "Spectre",
        "PathKit"
      ],
      "sources" : [
        "Format/TestDuration.swift",
        "JSONPointerTests.swift",
        "JSONSchemaCases.swift",
        "JSONSchemaTests.swift",
        "Validation/TestEnum.swift",
        "Validation/TestRef.swift",
        "Validation/TestRequired.swift",
        "Validation/tests.swift",
        "ValidationErrorTests.swift",
        "ValidationResultTests.swift",
        "XCTest.swift"
      ],
      "target_dependencies" : [
        "JSONSchema"
      ],
      "type" : "test"
    },
    {
      "c99name" : "JSONSchema",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchema",
      "path" : "Sources",
      "product_memberships" : [
        "JSONSchema"
      ],
      "sources" : [
        "Applicators/additionalItems.swift",
        "Applicators/additionalProperties.swift",
        "Applicators/allOf.swift",
        "Applicators/anyOf.swift",
        "Applicators/contains.swift",
        "Applicators/dependencies.swift",
        "Applicators/dependentSchemas.swift",
        "Applicators/if.swift",
        "Applicators/items.swift",
        "Applicators/not.swift",
        "Applicators/oneOf.swift",
        "Applicators/patternProperties.swift",
        "Applicators/prefixItems.swift",
        "Applicators/properties.swift",
        "Applicators/propertyNames.swift",
        "Core/ref.swift",
        "Draft201909Validator.swift",
        "Draft202012Validator.swift",
        "Draft4Validator.swift",
        "Draft6Validator.swift",
        "Draft7Validator.swift",
        "Format/date-time.swift",
        "Format/date.swift",
        "Format/duration.swift",
        "Format/time.swift",
        "JSONPointer.swift",
        "JSONSchema.swift",
        "RefResolver.swift",
        "Validation/const.swift",
        "Validation/dependentRequired.swift",
        "Validation/enum.swift",
        "Validation/minMaxItems.swift",
        "Validation/minMaxLength.swift",
        "Validation/minMaxNumber.swift",
        "Validation/minMaxProperties.swift",
        "Validation/multipleOf.swift",
        "Validation/pattern.swift",
        "Validation/required.swift",
        "Validation/uniqueItems.swift",
        "ValidationResult.swift",
        "Validator.swift",
        "Validators.swift",
        "format.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.