Build Information
Successful build of CoreDataPlus, reference main (8ebfbd), with Swift 6.2 for macOS (SPM) on 21 Feb 2026 23:38:10 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/richardpiazza/CoreDataPlus.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/richardpiazza/CoreDataPlus
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 8ebfbd5 Additional PR Checks (#10)
Cloned https://github.com/richardpiazza/CoreDataPlus.git
Revision (git rev-parse @):
8ebfbd5eff2eea3cb9fbb87f77bf4596868361dc
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/richardpiazza/CoreDataPlus.git at main
Fetching https://github.com/apple/swift-log.git
[1/6065] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.24s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.10.1 (1.81s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.10.1
========================================
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": "coredataplus",
"name": "CoreDataPlus",
"url": "https://github.com/richardpiazza/CoreDataPlus.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CoreDataPlus",
"dependencies": [
{
"identity": "swift-log",
"name": "swift-log",
"url": "https://github.com/apple/swift-log.git",
"version": "1.10.1",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log",
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/richardpiazza/CoreDataPlus.git
[1/257] Fetching coredataplus
Fetched https://github.com/richardpiazza/CoreDataPlus.git from cache (0.77s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.58s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.10.1 (0.65s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.10.1
Creating working copy for https://github.com/richardpiazza/CoreDataPlus.git
Working copy of https://github.com/richardpiazza/CoreDataPlus.git resolved at main (8ebfbd5)
warning: '.resolve-product-dependencies': dependency 'coredataplus' is not used by any target
Found 1 product dependencies
- swift-log
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/richardpiazza/CoreDataPlus.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-49B95AFC49DCD68C.txt
[4/8] Emitting module Logging
[5/8] Compiling Logging Locks.swift
[6/8] Compiling Logging LogHandler.swift
[7/8] Compiling Logging MetadataProvider.swift
[8/8] Compiling Logging Logging.swift
[9/27] Compiling CoreDataPlus NSRelationshipDescription+CoreDataPlus.swift
[10/27] Compiling CoreDataPlus FileExtension.swift
[11/27] Compiling CoreDataPlus ModelVersion.swift
[12/27] Compiling CoreDataPlus Persistence.swift
[13/27] Compiling CoreDataPlus Bundle+Resources.swift
[14/27] Compiling CoreDataPlus Logger+CoreDataPlus.swift
[15/27] Compiling CoreDataPlus NSPersistentStoreCoordinator+CoreDataPlus.swift
[16/27] Compiling CoreDataPlus NSPropertyMapping+CoreDataPlus.swift
[17/27] Compiling CoreDataPlus NSManagedObjectContext+CoreDataPlus.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:24:23: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
22 | func fetchSynchronously<T>(_ request: NSFetchRequest<T>) throws -> [T] {
23 | try performAndWait {
24 | try fetch(request)
| `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
25 | }
26 | }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
45 |
46 | API_AVAILABLE(macosx(10.4),ios(3.0))
47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
| `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
1 | import Foundation
2 | #if canImport(CoreData)
3 | import CoreData
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
4 |
5 | public extension NSManagedObjectContext {
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:36:42: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
34 | func fetchSynchronously<T, U>(_ request: NSFetchRequest<T>, mapping: (T) -> U) throws -> [U] {
35 | try performAndWait {
36 | let fetchResults = try fetch(request)
| `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
37 | return fetchResults.map(mapping)
38 | }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
45 |
46 | API_AVAILABLE(macosx(10.4),ios(3.0))
47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
| `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
48 | }
49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[18/27] Compiling CoreDataPlus NSPersistentContainer+CoreDataPlus.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:24:23: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
22 | func fetchSynchronously<T>(_ request: NSFetchRequest<T>) throws -> [T] {
23 | try performAndWait {
24 | try fetch(request)
| `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
25 | }
26 | }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
45 |
46 | API_AVAILABLE(macosx(10.4),ios(3.0))
47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
| `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
1 | import Foundation
2 | #if canImport(CoreData)
3 | import CoreData
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
4 |
5 | public extension NSManagedObjectContext {
/Users/admin/builder/spi-builder-workspace/Sources/CoreDataPlus/Extensions/NSManagedObjectContext+CoreDataPlus.swift:36:42: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
34 | func fetchSynchronously<T, U>(_ request: NSFetchRequest<T>, mapping: (T) -> U) throws -> [U] {
35 | try performAndWait {
36 | let fetchResults = try fetch(request)
| `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<T>' in a '@Sendable' closure [#SendableClosureCaptures]
37 | return fetchResults.map(mapping)
38 | }
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
45 |
46 | API_AVAILABLE(macosx(10.4),ios(3.0))
47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
| `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
48 | }
49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[19/27] Compiling CoreDataPlus NSEntityMapping+CoreDataPlus.swift
[20/27] Compiling CoreDataPlus NSManagedObject+CoreDataPlus.swift
[21/27] Compiling CoreDataPlus CatalogContainer.swift
[22/27] Compiling CoreDataPlus CoreDataPlusError.swift
[23/27] Emitting module CoreDataPlus
[24/27] Compiling CoreDataPlus NSAttributeDescription+CoreDataPlus.swift
[25/27] Compiling CoreDataPlus NSEntityDescription+CoreDataPlus.swift
[26/27] Compiling CoreDataPlus Migrator.swift
[27/27] Compiling CoreDataPlus ModelCatalog.swift
[28/29] Compiling CoreDataPlus ResourceSuffix.swift
[29/29] Compiling CoreDataPlus StoreURL.swift
Build complete! (6.07s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.9.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "CoreDataPlus",
"name" : "CoreDataPlus",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "maccatalyst",
"version" : "15.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "CoreDataPlus",
"targets" : [
"CoreDataPlus"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "CoreDataPlusTests",
"module_type" : "SwiftTarget",
"name" : "CoreDataPlusTests",
"path" : "Tests/CoreDataPlusTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/PrecompiledResources",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/Resources/CoreDataPlus_1.0.xcdatamodeld",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/Resources/CoreDataPlus_1.1.xcdatamodeld",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/Resources/Model_1_0_to_1_1.cdm_precompiled",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/CoreDataPlusTests/Resources/Model_1_0_to_1_1.xcmappingmodel",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"CoreDataPlusTests.swift",
"Data+Hex.swift",
"Models/AuthorV1_0.swift",
"Models/AuthorV1_1.swift",
"Models/BookV1_0.swift",
"Models/BookV1_1.swift"
],
"target_dependencies" : [
"CoreDataPlus"
],
"type" : "test"
},
{
"c99name" : "CoreDataPlus",
"module_type" : "SwiftTarget",
"name" : "CoreDataPlus",
"path" : "Sources/CoreDataPlus",
"product_dependencies" : [
"Logging"
],
"product_memberships" : [
"CoreDataPlus"
],
"sources" : [
"CatalogContainer.swift",
"CoreDataPlusError.swift",
"Extensions/Bundle+Resources.swift",
"Extensions/Logger+CoreDataPlus.swift",
"Extensions/NSAttributeDescription+CoreDataPlus.swift",
"Extensions/NSEntityDescription+CoreDataPlus.swift",
"Extensions/NSEntityMapping+CoreDataPlus.swift",
"Extensions/NSManagedObject+CoreDataPlus.swift",
"Extensions/NSManagedObjectContext+CoreDataPlus.swift",
"Extensions/NSPersistentContainer+CoreDataPlus.swift",
"Extensions/NSPersistentStoreCoordinator+CoreDataPlus.swift",
"Extensions/NSPropertyMapping+CoreDataPlus.swift",
"Extensions/NSRelationshipDescription+CoreDataPlus.swift",
"FileExtension.swift",
"Migrator.swift",
"ModelCatalog.swift",
"ModelVersion.swift",
"Persistence.swift",
"ResourceSuffix.swift",
"StoreURL.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/richardpiazza/coredataplus/main
Repository: richardpiazza/CoreDataPlus
Swift version used: 6.2
Target: CoreDataPlus
Extracting symbol information for 'CoreDataPlus'...
Finished extracting symbol information for 'CoreDataPlus'. (1.81s)
Building documentation for 'CoreDataPlus'...
Finished building documentation for 'CoreDataPlus' (0.22s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/coredataplus/main
Fetching https://github.com/swiftlang/swift-docc-plugin
Updating https://github.com/apple/swift-log.git
Updated https://github.com/apple/swift-log.git (0.59s)
[1/2171] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.30s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.10.1 (1.85s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (2.07s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3660] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.26s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.99s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-49B95AFC49DCD68C.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit SemanticVersion.swift
[11/57] Compiling SymbolKit AccessControl.swift
[12/57] Compiling SymbolKit Availability.swift
[13/57] Compiling SymbolKit AvailabilityItem.swift
[14/57] Compiling SymbolKit Domain.swift
[15/57] Compiling SymbolKit DeclarationFragments.swift
[16/57] Compiling SymbolKit Fragment.swift
[17/57] Compiling SymbolKit FragmentKind.swift
[18/57] Compiling SymbolKit FunctionParameter.swift
[19/57] Compiling SymbolKit FunctionSignature.swift
[20/57] Compiling SymbolKit Identifier.swift
[21/57] Compiling SymbolKit KindIdentifier.swift
[22/57] Compiling SymbolKit Location.swift
[23/57] Compiling SymbolKit Mutability.swift
[24/57] Compiling SymbolKit Mixin+Equals.swift
[25/57] Compiling SymbolKit Mixin+Hash.swift
[26/57] Compiling SymbolKit Mixin.swift
[27/57] Compiling SymbolKit LineList.swift
[28/57] Compiling SymbolKit Position.swift
[29/57] Compiling Snippets SnippetParser.swift
[30/57] Emitting module Snippets
[31/57] Compiling Snippets Snippet.swift
[32/57] Compiling SymbolKit Relationship.swift
[33/57] Compiling SymbolKit RelationshipKind.swift
[34/57] Compiling SymbolKit SourceOrigin.swift
[35/57] Compiling SymbolKit GenericConstraints.swift
[36/57] Compiling SymbolKit Swift.swift
[37/57] Compiling SymbolKit Symbol.swift
[38/57] Compiling SymbolKit SymbolKind.swift
[39/57] Compiling SymbolKit SymbolGraph.swift
[40/57] Compiling SymbolKit GraphCollector.swift
[41/57] Compiling SymbolKit SourceRange.swift
[42/57] Compiling SymbolKit Metadata.swift
[43/57] Compiling SymbolKit Module.swift
[44/57] Compiling SymbolKit OperatingSystem.swift
[45/57] Compiling SymbolKit Platform.swift
[46/57] Compiling SymbolKit Names.swift
[47/57] Compiling SymbolKit SPI.swift
[48/57] Compiling SymbolKit Snippet.swift
[49/57] Compiling SymbolKit Extension.swift
[50/57] Emitting module SymbolKit
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Emitting module snippet_extract
[57/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.55s)
Building for debugging...
[0/1] Write swift-version-49B95AFC49DCD68C.txt
Build of target: 'CoreDataPlus' complete! (0.17s)
238
3 /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/coredataplus/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/richardpiazza/coredataplus/main
File count: 238
Doc size: 3.0MB
Preparing doc bundle ...
Uploading prod-richardpiazza-coredataplus-main-4601b6a3.zip to s3://spi-docs-inbox/prod-richardpiazza-coredataplus-main-4601b6a3.zip
Copying... [12%]
Copying... [25%]
Copying... [37%]
Copying... [49%]
Copying... [61%]
Copying... [74%]
Copying... [86%]
Copying... [98%]
Copying... [100%]
Done.