Build Information
Successful build of AKCacheManager, reference main (039753), with Swift 6.2 for macOS (SPM) on 24 Aug 2025 16:14:25 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/AnupamKatiyar/AKCacheManager.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/AnupamKatiyar/AKCacheManager
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 0397536 Update README.md
Cloned https://github.com/AnupamKatiyar/AKCacheManager.git
Revision (git rev-parse @):
0397536d8f46554c27f2f5ca2de8b4217a6137d6
SUCCESS checkout https://github.com/AnupamKatiyar/AKCacheManager.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/AnupamKatiyar/AKCacheManager.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/9] Compiling AKCacheManager LRUCache.swift
[4/9] Compiling AKCacheManager LFUCache.swift
[5/9] Compiling AKCacheManager ImageCachePolicy.swift
[6/9] Compiling AKCacheManager CommonCrypto.swift
[7/9] Compiling AKCacheManager DoublyLinkedList.swift
[8/9] Compiling AKCacheManager AKCacheManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/AKCacheManager/AKCacheManager.swift:56:30: warning: capture of 'self' with non-sendable type 'CacheManager<Key, Value>?' in a '@Sendable' closure [#SendableClosureCaptures]
13 | }
14 |
15 | class CacheManager<Key: Hashable, Value> {
| `- note: generic class 'CacheManager' does not conform to the 'Sendable' protocol
16 |
17 | private var memoryCache: AnyCachePolicy<Key, Value>
:
54 |
55 | ioQueue.async { [weak self] in
56 | guard let self = self else { return }
| `- warning: capture of 'self' with non-sendable type 'CacheManager<Key, Value>?' in a '@Sendable' closure [#SendableClosureCaptures]
57 | let fileURL = self.diskCacheURL.appendingPathComponent( getKey(for: key) )
58 | do {
/Users/admin/builder/spi-builder-workspace/Sources/AKCacheManager/AKCacheManager.swift:57:81: warning: capture of 'key' with non-sendable type 'Key' in a '@Sendable' closure [#SendableClosureCaptures]
13 | }
14 |
15 | class CacheManager<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
16 |
17 | private var memoryCache: AnyCachePolicy<Key, Value>
:
55 | ioQueue.async { [weak self] in
56 | guard let self = self else { return }
57 | let fileURL = self.diskCacheURL.appendingPathComponent( getKey(for: key) )
| `- warning: capture of 'key' with non-sendable type 'Key' in a '@Sendable' closure [#SendableClosureCaptures]
58 | do {
59 | // if let image = value as? UIImage, let data = image.pngData() {
/Users/admin/builder/spi-builder-workspace/Sources/AKCacheManager/AKCacheManager.swift:62:31: warning: capture of 'value' with non-sendable type 'Value?' in a '@Sendable' closure [#SendableClosureCaptures]
13 | }
14 |
15 | class CacheManager<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
16 |
17 | private var memoryCache: AnyCachePolicy<Key, Value>
:
60 | // try data.write(to: fileURL)
61 | // }
62 | if let data = value as? Data {
| `- warning: capture of 'value' with non-sendable type 'Value?' in a '@Sendable' closure [#SendableClosureCaptures]
63 | try data.write(to: fileURL)
64 | }
/Users/admin/builder/spi-builder-workspace/Sources/AKCacheManager/AKCacheManager.swift:56:30: warning: capture of non-sendable type 'Key.Type' in an isolated closure
54 |
55 | ioQueue.async { [weak self] in
56 | guard let self = self else { return }
| `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
57 | let fileURL = self.diskCacheURL.appendingPathComponent( getKey(for: key) )
58 | do {
/Users/admin/builder/spi-builder-workspace/Sources/AKCacheManager/AKCacheManager.swift:55:31: warning: capture of non-sendable type 'Key.Type' in an isolated closure
53 | memoryCache.set(value: value, forKey: key)
54 |
55 | ioQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
56 | guard let self = self else { return }
57 | let fileURL = self.diskCacheURL.appendingPathComponent( getKey(for: key) )
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[9/9] Emitting module AKCacheManager
Build complete! (4.18s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "AKCacheManager",
"name" : "AKCacheManager",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "AKCacheManager",
"targets" : [
"AKCacheManager"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AKCacheManagerTests",
"module_type" : "SwiftTarget",
"name" : "AKCacheManagerTests",
"path" : "Tests/AKCacheManagerTests",
"sources" : [
"AKCacheManagerTests.swift"
],
"target_dependencies" : [
"AKCacheManager"
],
"type" : "test"
},
{
"c99name" : "AKCacheManager",
"module_type" : "SwiftTarget",
"name" : "AKCacheManager",
"path" : "Sources/AKCacheManager",
"product_memberships" : [
"AKCacheManager"
],
"sources" : [
"AKCacheManager.swift",
"CommonCrypto.swift",
"DoublyLinkedList.swift",
"ImageCachePolicy.swift",
"LFUCache.swift",
"LRUCache.swift"
],
"type" : "library"
}
],
"tools_version" : "6.1"
}
Done.