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 Schemata, reference master (1c5443), with Swift 6.2 (beta) for macOS (SPM) on 24 Jun 2025 04:12:28 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/jordanekay/Schemata.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jordanekay/Schemata
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 1c5443b Revert property creation fix
Submodule path 'Carthage/Checkouts/Standards': checked out '89c30330fcac972a84a4876125064001b9c89f0f'
Submodule 'Carthage/Checkouts/Standards' (https://github.com/PersistX/Standards.git) registered for path 'Carthage/Checkouts/Standards'
Cloning into '/Users/admin/builder/spi-builder-workspace/Carthage/Checkouts/Standards'...
Cloned https://github.com/jordanekay/Schemata.git
Revision (git rev-parse @):
1c5443b01cd2fb9f25e63197cfe35b96ba9bd2fc
SUCCESS checkout https://github.com/jordanekay/Schemata.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/jordanekay/Schemata.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/12] Compiling Schemata Property.swift
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:4:10: warning: associated value 'toMany' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModel.Type'
  2 |
  3 | public enum PropertyType: Sendable {
  4 |     case toMany(AnyModel.Type)
    |          `- warning: associated value 'toMany' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModel.Type'
  5 |     case toOne(AnyModel.Type, nullable: Bool)
  6 |     case value(AnyModelValue.Type, nullable: Bool)
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:5:10: warning: associated value 'toOne(_:nullable:)' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModel.Type'
  3 | public enum PropertyType: Sendable {
  4 |     case toMany(AnyModel.Type)
  5 |     case toOne(AnyModel.Type, nullable: Bool)
    |          `- warning: associated value 'toOne(_:nullable:)' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModel.Type'
  6 |     case value(AnyModelValue.Type, nullable: Bool)
  7 | }
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:6:10: warning: associated value 'value(_:nullable:)' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModelValue.Type'
  4 |     case toMany(AnyModel.Type)
  5 |     case toOne(AnyModel.Type, nullable: Bool)
  6 |     case value(AnyModelValue.Type, nullable: Bool)
    |          `- warning: associated value 'value(_:nullable:)' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModelValue.Type'
  7 | }
  8 |
[4/12] Compiling Schemata Schema.swift
[5/12] Compiling Schemata PropertyCreation.swift
[6/12] Compiling Schemata Projection.swift
[7/12] Compiling Schemata None.swift
[8/12] Compiling Schemata Value.swift
[9/12] Emitting module Schemata
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:4:10: warning: associated value 'toMany' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModel.Type'
  2 |
  3 | public enum PropertyType: Sendable {
  4 |     case toMany(AnyModel.Type)
    |          `- warning: associated value 'toMany' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModel.Type'
  5 |     case toOne(AnyModel.Type, nullable: Bool)
  6 |     case value(AnyModelValue.Type, nullable: Bool)
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:5:10: warning: associated value 'toOne(_:nullable:)' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModel.Type'
  3 | public enum PropertyType: Sendable {
  4 |     case toMany(AnyModel.Type)
  5 |     case toOne(AnyModel.Type, nullable: Bool)
    |          `- warning: associated value 'toOne(_:nullable:)' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModel.Type'
  6 |     case value(AnyModelValue.Type, nullable: Bool)
  7 | }
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:6:10: warning: associated value 'value(_:nullable:)' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModelValue.Type'
  4 |     case toMany(AnyModel.Type)
  5 |     case toOne(AnyModel.Type, nullable: Bool)
  6 |     case value(AnyModelValue.Type, nullable: Bool)
    |          `- warning: associated value 'value(_:nullable:)' of 'Sendable'-conforming enum 'PropertyType' has non-sendable type 'any AnyModelValue.Type'
  7 | }
  8 |
[10/12] Compiling Schemata Primitive.swift
[11/12] Compiling Schemata Model.swift
/Users/admin/builder/spi-builder-workspace/Sources/Model.swift:100:29: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
 98 |                 switch encoded {
 99 |                 case nil:
100 |                     return .success(nil)
    |                             `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
101 |                 case let .some(value):
102 |                     return Wrapped.value.decode(value).map(Optional.some)
/Users/admin/builder/spi-builder-workspace/Sources/Model.swift:105:26: warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                 }
104 |             },
105 |             encode: { $0.map(Wrapped.value.encode) }
    |                          `- warning: capture of non-sendable type 'Wrapped.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |         )
107 |     }
[12/12] Compiling Schemata DecodeError.swift
Build complete! (4.97s)
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/Info.plist
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Schemata",
  "name" : "Schemata",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Schemata",
      "targets" : [
        "Schemata"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Schemata",
      "module_type" : "SwiftTarget",
      "name" : "Schemata",
      "path" : "Sources",
      "product_memberships" : [
        "Schemata"
      ],
      "sources" : [
        "DecodeError.swift",
        "Model.swift",
        "None.swift",
        "Primitive.swift",
        "Projection.swift",
        "Property.swift",
        "PropertyCreation.swift",
        "Schema.swift",
        "Value.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Done.