Build Information
Successful build of swift-trapezoid-shapes, reference main (84e53c), with Swift 6.3 for macOS (SPM) on 13 Apr 2026 05:33:46 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/hellojoelhuber/swift-trapezoid-shapes.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/hellojoelhuber/swift-trapezoid-shapes
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 84e53c8 Update README.md
Cloned https://github.com/hellojoelhuber/swift-trapezoid-shapes.git
Revision (git rev-parse @):
84e53c8a64ac3e01a3355cedf38715027a909745
SUCCESS checkout https://github.com/hellojoelhuber/swift-trapezoid-shapes.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-trapezoid-shapes",
"name": "swift-trapezoid-shapes",
"url": "https://github.com/hellojoelhuber/swift-trapezoid-shapes.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-trapezoid-shapes",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/hellojoelhuber/swift-trapezoid-shapes.git
[1/80] Fetching swift-trapezoid-shapes
Fetched https://github.com/hellojoelhuber/swift-trapezoid-shapes.git from cache (0.60s)
Creating working copy for https://github.com/hellojoelhuber/swift-trapezoid-shapes.git
Working copy of https://github.com/hellojoelhuber/swift-trapezoid-shapes.git resolved at main (84e53c8)
warning: '.resolve-product-dependencies': dependency 'swift-trapezoid-shapes' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/hellojoelhuber/swift-trapezoid-shapes.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/7] Compiling TrapezoidShapes Trapezoid.swift
/Users/admin/builder/spi-builder-workspace/Sources/TrapezoidShapes/Trapezoid.swift:6:9: warning: stored property 'flexibleEdge' of 'Sendable'-conforming struct 'Trapezoid' has non-Sendable type 'FlexibleEdge'; this is an error in the Swift 6 language mode
4 | public struct Trapezoid: Shape {
5 | let flexibleEdgeRatio: Double
6 | let flexibleEdge: FlexibleEdge
| `- warning: stored property 'flexibleEdge' of 'Sendable'-conforming struct 'Trapezoid' has non-Sendable type 'FlexibleEdge'; this is an error in the Swift 6 language mode
7 | let flexibleEdgeOffset: Double
8 | private let insetAmount: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/TrapezoidShapes/FlexibleEdge.swift:4:13: note: consider making enum 'FlexibleEdge' conform to the 'Sendable' protocol
2 | import Foundation
3 |
4 | public enum FlexibleEdge: Int {
| `- note: consider making enum 'FlexibleEdge' conform to the 'Sendable' protocol
5 | case top = 0
6 | case right = 1
[4/7] Emitting module TrapezoidShapes
/Users/admin/builder/spi-builder-workspace/Sources/TrapezoidShapes/RoundedTrapezoid.swift:6:9: warning: stored property 'flexibleEdge' of 'Sendable'-conforming struct 'RoundedTrapezoid' has non-Sendable type 'FlexibleEdge'; this is an error in the Swift 6 language mode
4 | let cornerRadius: Double
5 | let flexibleEdgeRatio: Double
6 | let flexibleEdge: FlexibleEdge
| `- warning: stored property 'flexibleEdge' of 'Sendable'-conforming struct 'RoundedTrapezoid' has non-Sendable type 'FlexibleEdge'; this is an error in the Swift 6 language mode
7 | let flexibleEdgeOffset: Double
8 | private let insetAmount: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/TrapezoidShapes/FlexibleEdge.swift:4:13: note: consider making enum 'FlexibleEdge' conform to the 'Sendable' protocol
2 | import Foundation
3 |
4 | public enum FlexibleEdge: Int {
| `- note: consider making enum 'FlexibleEdge' conform to the 'Sendable' protocol
5 | case top = 0
6 | case right = 1
/Users/admin/builder/spi-builder-workspace/Sources/TrapezoidShapes/Trapezoid.swift:6:9: warning: stored property 'flexibleEdge' of 'Sendable'-conforming struct 'Trapezoid' has non-Sendable type 'FlexibleEdge'; this is an error in the Swift 6 language mode
4 | public struct Trapezoid: Shape {
5 | let flexibleEdgeRatio: Double
6 | let flexibleEdge: FlexibleEdge
| `- warning: stored property 'flexibleEdge' of 'Sendable'-conforming struct 'Trapezoid' has non-Sendable type 'FlexibleEdge'; this is an error in the Swift 6 language mode
7 | let flexibleEdgeOffset: Double
8 | private let insetAmount: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/TrapezoidShapes/FlexibleEdge.swift:4:13: note: consider making enum 'FlexibleEdge' conform to the 'Sendable' protocol
2 | import Foundation
3 |
4 | public enum FlexibleEdge: Int {
| `- note: consider making enum 'FlexibleEdge' conform to the 'Sendable' protocol
5 | case top = 0
6 | case right = 1
[5/7] Compiling TrapezoidShapes FlexibleEdge.swift
[6/7] Compiling TrapezoidShapes RoundedTrapezoidPath.swift
[7/7] Compiling TrapezoidShapes RoundedTrapezoid.swift
/Users/admin/builder/spi-builder-workspace/Sources/TrapezoidShapes/RoundedTrapezoid.swift:6:9: warning: stored property 'flexibleEdge' of 'Sendable'-conforming struct 'RoundedTrapezoid' has non-Sendable type 'FlexibleEdge'; this is an error in the Swift 6 language mode
4 | let cornerRadius: Double
5 | let flexibleEdgeRatio: Double
6 | let flexibleEdge: FlexibleEdge
| `- warning: stored property 'flexibleEdge' of 'Sendable'-conforming struct 'RoundedTrapezoid' has non-Sendable type 'FlexibleEdge'; this is an error in the Swift 6 language mode
7 | let flexibleEdgeOffset: Double
8 | private let insetAmount: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/TrapezoidShapes/FlexibleEdge.swift:4:13: note: consider making enum 'FlexibleEdge' conform to the 'Sendable' protocol
2 | import Foundation
3 |
4 | public enum FlexibleEdge: Int {
| `- note: consider making enum 'FlexibleEdge' conform to the 'Sendable' protocol
5 | case top = 0
6 | case right = 1
Build complete! (7.67s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-trapezoid-shapes",
"name" : "swift-trapezoid-shapes",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "TrapezoidShapes",
"targets" : [
"TrapezoidShapes"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TrapezoidShapesTests",
"module_type" : "SwiftTarget",
"name" : "TrapezoidShapesTests",
"path" : "Tests/TrapezoidShapesTests",
"sources" : [
"TrapezoidShapesTests.swift"
],
"target_dependencies" : [
"TrapezoidShapes"
],
"type" : "test"
},
{
"c99name" : "TrapezoidShapes",
"module_type" : "SwiftTarget",
"name" : "TrapezoidShapes",
"path" : "Sources/TrapezoidShapes",
"product_memberships" : [
"TrapezoidShapes"
],
"sources" : [
"FlexibleEdge.swift",
"RoundedTrapezoid.swift",
"RoundedTrapezoidPath.swift",
"Trapezoid.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Done.