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 Linux on 24 Jun 2025 04:06:57 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

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 /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/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 '/host/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:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/jordanekay/Schemata.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Sources/Info.plist
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/11] Emitting module Schemata
/host/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)
/host/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 | }
/host/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/11] Compiling Schemata DecodeError.swift
/host/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)
/host/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 |     }
[5/11] Compiling Schemata Model.swift
/host/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)
/host/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 |     }
[6/12] Compiling Schemata None.swift
[7/12] Compiling Schemata Primitive.swift
[8/12] Compiling Schemata Projection.swift
[9/12] Compiling Schemata Schema.swift
[10/12] Compiling Schemata Property.swift
/host/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)
/host/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 | }
/host/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 |
[11/12] Compiling Schemata PropertyCreation.swift
[12/12] Compiling Schemata Value.swift
Build complete! (23.23s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Schemata",
  "name" : "Schemata",
  "path" : "/host/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"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.