Build Information
Successful build of swiftui-simple-table, reference v0.3.0 (430186
), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 15:03:04 UTC.
Swift 6 data race errors: 1
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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
Build Log
========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/darrarski/swiftui-simple-table.git
Reference: v0.3.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/darrarski/swiftui-simple-table
* tag v0.3.0 -> FETCH_HEAD
HEAD is now at 4301861 Move examples to a separate target
Cloned https://github.com/darrarski/swiftui-simple-table.git
Revision (git rev-parse @):
4301861343ed15c42448d17a3c012224a3d38a1f
SUCCESS checkout https://github.com/darrarski/swiftui-simple-table.git at v0.3.0
========================================
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",
"dependencies": [
{
"identity": "swiftui-simple-table",
"name": "swiftui-simple-table",
"url": "https://github.com/darrarski/swiftui-simple-table.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swiftui-simple-table",
"dependencies": [
]
}
]
}
Fetching https://github.com/darrarski/swiftui-simple-table.git
[1/90] Fetching swiftui-simple-table
Fetched https://github.com/darrarski/swiftui-simple-table.git from cache (0.73s)
Creating working copy for https://github.com/darrarski/swiftui-simple-table.git
Working copy of https://github.com/darrarski/swiftui-simple-table.git resolved at v0.3.0 (4301861)
warning: '.resolve-product-dependencies': dependency 'swiftui-simple-table' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/darrarski/swiftui-simple-table.git
https://github.com/darrarski/swiftui-simple-table.git
{
"dependencies" : [
],
"manifest_display_name" : "swiftui-simple-table",
"name" : "swiftui-simple-table",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SimpleTable",
"targets" : [
"SimpleTable"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SimpleTableExamples",
"targets" : [
"SimpleTableExamples"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SimpleTableExamples",
"module_type" : "SwiftTarget",
"name" : "SimpleTableExamples",
"path" : "Sources/SimpleTableExamples",
"product_memberships" : [
"SimpleTableExamples"
],
"sources" : [
"ColorsTableExample.swift",
"MultiplicationTableExample.swift",
"PeopleTableExample.swift",
"ShapesTableExample.swift"
],
"target_dependencies" : [
"SimpleTable"
],
"type" : "library"
},
{
"c99name" : "SimpleTable",
"module_type" : "SwiftTarget",
"name" : "SimpleTable",
"path" : "Sources/SimpleTable",
"product_memberships" : [
"SimpleTable",
"SimpleTableExamples"
],
"sources" : [
"OnChangeModifier.swift",
"SimpleTableCoordinateSpaceName.swift",
"SimpleTableHeaderViewModifier.swift",
"SimpleTableLayout.swift",
"SimpleTableView.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-2F0A5646E1D333AE.txt
[4/9] Compiling SimpleTable SimpleTableLayout.swift
[5/9] Compiling SimpleTable SimpleTableView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleTable/SimpleTableView.swift:62:19: warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
2 |
3 | /// Wrapper for `SimpleTableLayout` that embeds provided content in a `ScrollView`
4 | public struct SimpleTableView<Content>: View where Content: View {
| `- note: 'Content' previously declared here
5 | /// Content scrolling mode
6 | public enum ScrollMode: Hashable {
:
60 |
61 | @ViewBuilder
62 | func scrollView<Content: View>(
| `- warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
63 | @ViewBuilder content: @escaping () -> Content
64 | ) -> some View {
[6/9] Emitting module SimpleTable
/Users/admin/builder/spi-builder-workspace/Sources/SimpleTable/SimpleTableView.swift:62:19: warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
2 |
3 | /// Wrapper for `SimpleTableLayout` that embeds provided content in a `ScrollView`
4 | public struct SimpleTableView<Content>: View where Content: View {
| `- note: 'Content' previously declared here
5 | /// Content scrolling mode
6 | public enum ScrollMode: Hashable {
:
60 |
61 | @ViewBuilder
62 | func scrollView<Content: View>(
| `- warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
63 | @ViewBuilder content: @escaping () -> Content
64 | ) -> some View {
[7/9] Compiling SimpleTable SimpleTableHeaderViewModifier.swift
[8/9] Compiling SimpleTable OnChangeModifier.swift
[9/9] Compiling SimpleTable SimpleTableCoordinateSpaceName.swift
[10/14] Compiling SimpleTableExamples ShapesTableExample.swift
[11/14] Emitting module SimpleTableExamples
[12/14] Compiling SimpleTableExamples MultiplicationTableExample.swift
[13/14] Compiling SimpleTableExamples ColorsTableExample.swift
[14/14] Compiling SimpleTableExamples PeopleTableExample.swift
Build complete! (10.87s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swiftui-simple-table",
"name" : "swiftui-simple-table",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SimpleTable",
"targets" : [
"SimpleTable"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SimpleTableExamples",
"targets" : [
"SimpleTableExamples"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SimpleTableExamples",
"module_type" : "SwiftTarget",
"name" : "SimpleTableExamples",
"path" : "Sources/SimpleTableExamples",
"product_memberships" : [
"SimpleTableExamples"
],
"sources" : [
"ColorsTableExample.swift",
"MultiplicationTableExample.swift",
"PeopleTableExample.swift",
"ShapesTableExample.swift"
],
"target_dependencies" : [
"SimpleTable"
],
"type" : "library"
},
{
"c99name" : "SimpleTable",
"module_type" : "SwiftTarget",
"name" : "SimpleTable",
"path" : "Sources/SimpleTable",
"product_memberships" : [
"SimpleTable",
"SimpleTableExamples"
],
"sources" : [
"OnChangeModifier.swift",
"SimpleTableCoordinateSpaceName.swift",
"SimpleTableHeaderViewModifier.swift",
"SimpleTableLayout.swift",
"SimpleTableView.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
Done.