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

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 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:         android
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-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-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-8C5A4AE7A8CE2BA.txt
[3/11] Compiling Schemata Primitive.swift
[4/11] Compiling Schemata None.swift
[5/12] 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 |
[6/12] 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 |     }
[7/12] 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 |     }
[8/12] Compiling Schemata Projection.swift
[9/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 |
[10/12] Compiling Schemata PropertyCreation.swift
[11/12] Compiling Schemata Schema.swift
[12/12] Compiling Schemata Value.swift
Build complete! (22.00s)
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"
}
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Done.