Build Information
Successful build of AERecord, reference 4.1.2 (105ad0
), with Swift 6.1 for macOS (SPM) on 24 Apr 2025 10:03:58 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/tadija/AERecord.git
Reference: 4.1.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tadija/AERecord
* tag 4.1.2 -> FETCH_HEAD
HEAD is now at 105ad07 Merge branch 'develop'
Cloned https://github.com/tadija/AERecord.git
Revision (git rev-parse @):
105ad07a0b5b317c65f3670836f2ba48083dcf6b
SUCCESS checkout https://github.com/tadija/AERecord.git at 4.1.2
========================================
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": "aerecord",
"name": "AERecord",
"url": "https://github.com/tadija/AERecord.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/AERecord",
"dependencies": [
]
}
]
}
Fetching https://github.com/tadija/AERecord.git
[1/1108] Fetching aerecord
Fetched https://github.com/tadija/AERecord.git from cache (0.83s)
Creating working copy for https://github.com/tadija/AERecord.git
Working copy of https://github.com/tadija/AERecord.git resolved at 4.1.2 (105ad07)
warning: '.resolve-product-dependencies': dependency 'aerecord' 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/tadija/AERecord.git
https://github.com/tadija/AERecord.git
{
"dependencies" : [
],
"manifest_display_name" : "AERecord",
"name" : "AERecord",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "AERecord",
"targets" : [
"AERecord"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AERecordTests",
"module_type" : "SwiftTarget",
"name" : "AERecordTests",
"path" : "Tests/AERecordTests",
"sources" : [
"AERecordTests.swift"
],
"target_dependencies" : [
"AERecord"
],
"type" : "test"
},
{
"c99name" : "AERecord",
"module_type" : "SwiftTarget",
"name" : "AERecord",
"path" : "Sources/AERecord",
"product_memberships" : [
"AERecord"
],
"sources" : [
"AERecord.swift",
"Query.swift",
"Stack.swift"
],
"type" : "library"
}
],
"tools_version" : "4.2"
}
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/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/6] Compiling AERecord Stack.swift
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Stack.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
8 |
9 | /// This internal class is core of AERecord as it configures and accesses Core Data Stack.
10 | public class Stack {
| `- note: class 'Stack' does not conform to the 'Sendable' protocol
11 |
12 | // MARK: - Singleton
13 |
14 | static let shared = Stack()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | // MARK: - Defaults
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Stack.swift:236:53: warning: 'NSPersistentStoreDidImportUbiquitousContentChanges' was deprecated in macOS 10.12: Please see the release notes and Core Data documentation.
234 | #if !(os(tvOS) || os(watchOS))
235 | let didImport = #selector(Stack.persistentStoreDidImportUbiquitousContentChanges(_:))
236 | let didImportName = NSNotification.Name.NSPersistentStoreDidImportUbiquitousContentChanges
| `- warning: 'NSPersistentStoreDidImportUbiquitousContentChanges' was deprecated in macOS 10.12: Please see the release notes and Core Data documentation.
237 | center.addObserver(self, selector: didImport, name: didImportName, object: coordinator)
238 | #endif
[4/6] Compiling AERecord AERecord.swift
[5/6] Emitting module AERecord
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Query.swift:54:5: warning: 'public' modifier is redundant for static property declared in a public extension
52 | }
53 |
54 | public static let defaultPredicateType: NSCompoundPredicate.LogicalType = .and
| `- warning: 'public' modifier is redundant for static property declared in a public extension
55 |
56 | /**
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Stack.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
8 |
9 | /// This internal class is core of AERecord as it configures and accesses Core Data Stack.
10 | public class Stack {
| `- note: class 'Stack' does not conform to the 'Sendable' protocol
11 |
12 | // MARK: - Singleton
13 |
14 | static let shared = Stack()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Stack' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | // MARK: - Defaults
[6/6] Compiling AERecord Query.swift
/Users/admin/builder/spi-builder-workspace/Sources/AERecord/Query.swift:54:5: warning: 'public' modifier is redundant for static property declared in a public extension
52 | }
53 |
54 | public static let defaultPredicateType: NSCompoundPredicate.LogicalType = .and
| `- warning: 'public' modifier is redundant for static property declared in a public extension
55 |
56 | /**
Build complete! (4.30s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "AERecord",
"name" : "AERecord",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "AERecord",
"targets" : [
"AERecord"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AERecordTests",
"module_type" : "SwiftTarget",
"name" : "AERecordTests",
"path" : "Tests/AERecordTests",
"sources" : [
"AERecordTests.swift"
],
"target_dependencies" : [
"AERecord"
],
"type" : "test"
},
{
"c99name" : "AERecord",
"module_type" : "SwiftTarget",
"name" : "AERecord",
"path" : "Sources/AERecord",
"product_memberships" : [
"AERecord"
],
"sources" : [
"AERecord.swift",
"Query.swift",
"Stack.swift"
],
"type" : "library"
}
],
"tools_version" : "4.2"
}
Done.