Build Information
Successful build of Schemata, reference master (1c5443
), with Swift 6.1 for Wasm on 17 Jun 2025 09:28:34 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
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: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/jordanekay/Schemata.git
https://github.com/jordanekay/Schemata.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"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"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-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] Compiling Schemata PropertyCreation.swift
[4/12] Compiling Schemata Property.swift
[5/12] Compiling Schemata Schema.swift
[6/12] Compiling Schemata Projection.swift
[7/12] Compiling Schemata DecodeError.swift
[8/12] Compiling Schemata Model.swift
[9/12] Compiling Schemata None.swift
[10/12] Emitting module Schemata
[11/12] Compiling Schemata Primitive.swift
[12/12] Compiling Schemata Value.swift
/host/spi-builder-workspace/Sources/Value.swift:29:43: warning: capture of 'decode' with non-sendable type '(Decoded) -> NewDecoded' in a '@Sendable' closure; this is an error in the Swift 6 language mode
27 | ) -> Value<Encoded, NewDecoded> {
28 | return Value<Encoded, NewDecoded>(
29 | decode: { self.decode($0).map(decode) },
| |- warning: capture of 'decode' with non-sendable type '(Decoded) -> NewDecoded' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
30 | encode: { self.encode(encode($0)) }
31 | )
/host/spi-builder-workspace/Sources/Value.swift:30:35: warning: capture of 'encode' with non-sendable type '(NewDecoded) -> Decoded' in a '@Sendable' closure; this is an error in the Swift 6 language mode
28 | return Value<Encoded, NewDecoded>(
29 | decode: { self.decode($0).map(decode) },
30 | encode: { self.encode(encode($0)) }
| |- warning: capture of 'encode' with non-sendable type '(NewDecoded) -> Decoded' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
31 | )
32 | }
/host/spi-builder-workspace/Sources/Value.swift:39:47: warning: capture of 'decode' with non-sendable type '(Decoded) -> Result<NewDecoded, ValueError>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
37 | ) -> Value<Encoded, NewDecoded> {
38 | return Value<Encoded, NewDecoded>(
39 | decode: { self.decode($0).flatMap(decode) },
| |- warning: capture of 'decode' with non-sendable type '(Decoded) -> Result<NewDecoded, ValueError>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
40 | encode: { self.encode(encode($0)) }
41 | )
/host/spi-builder-workspace/Sources/Value.swift:40:35: warning: capture of 'encode' with non-sendable type '(NewDecoded) -> Decoded' in a '@Sendable' closure; this is an error in the Swift 6 language mode
38 | return Value<Encoded, NewDecoded>(
39 | decode: { self.decode($0).flatMap(decode) },
40 | encode: { self.encode(encode($0)) }
| |- warning: capture of 'encode' with non-sendable type '(NewDecoded) -> Decoded' in a '@Sendable' closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
41 | )
42 | }
Build complete! (7.87s)
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"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.