Build Information
Successful build of PersistedProperty, reference 1.1.0 (4386d4
), with Swift 6.0 for macOS (SPM) on 30 Nov 2024 14:31:19 UTC.
Swift 6 data race errors: 2
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.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.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/danielepantaleone/PersistedProperty.git
Reference: 1.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/danielepantaleone/PersistedProperty
* tag 1.1.0 -> FETCH_HEAD
HEAD is now at 4386d4c Added privacy manifest file
Cloned https://github.com/danielepantaleone/PersistedProperty.git
Revision (git rev-parse @):
4386d4cbe04e44957d9d47fcc83d7629931b80a5
SUCCESS checkout https://github.com/danielepantaleone/PersistedProperty.git at 1.1.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": "persistedproperty",
"name": "PersistedProperty",
"url": "https://github.com/danielepantaleone/PersistedProperty.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/PersistedProperty",
"dependencies": [
]
}
]
}
Fetching https://github.com/danielepantaleone/PersistedProperty.git
[1/254] Fetching persistedproperty
Fetched https://github.com/danielepantaleone/PersistedProperty.git from cache (0.82s)
Creating working copy for https://github.com/danielepantaleone/PersistedProperty.git
Working copy of https://github.com/danielepantaleone/PersistedProperty.git resolved at 1.1.0 (4386d4c)
warning: '.resolve-product-dependencies': dependency 'persistedproperty' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/danielepantaleone/PersistedProperty.git
{
"dependencies" : [
],
"manifest_display_name" : "PersistedProperty",
"name" : "PersistedProperty",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "11.0"
}
],
"products" : [
{
"name" : "PersistedProperty",
"targets" : [
"PersistedProperty"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "PersistedPropertyTests",
"module_type" : "SwiftTarget",
"name" : "PersistedPropertyTests",
"path" : "Tests/PersistedPropertyTests",
"sources" : [
"Common/InMemoryStorageService.swift",
"Common/PersistedContainer.swift",
"PersistedPropertyInMemoryTests.swift",
"PersistedPropertyKeyChainTests.swift",
"PersistedPropertyTests.swift",
"PersistedPropertyUserDefaultsTests.swift"
],
"target_dependencies" : [
"PersistedProperty"
],
"type" : "test"
},
{
"c99name" : "PersistedProperty",
"module_type" : "SwiftTarget",
"name" : "PersistedProperty",
"path" : "Sources/PersistedProperty",
"product_memberships" : [
"PersistedProperty"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Common/AnyOptional.swift",
"Common/Mutex.swift",
"Common/MutexType.swift",
"Common/StorageCoder.swift",
"Persisted.swift",
"Services/KeyChainStorageService.swift",
"Services/UserDefaultsStorageService.swift",
"Storage.swift",
"StorageService.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.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
[1/3] Copying PrivacyInfo.xcprivacy
[2/3] Write swift-version--7754E27361AE5C74.txt
[4/13] Compiling PersistedProperty StorageCoder.swift
[5/13] Compiling PersistedProperty MutexType.swift
[6/13] Compiling PersistedProperty Mutex.swift
[7/13] Compiling PersistedProperty StorageService.swift
[8/13] Compiling PersistedProperty Persisted.swift
[9/13] Compiling PersistedProperty Storage.swift
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/Services/UserDefaultsStorageService.swift:21:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Reference to the shared user defaults storage service.
21 | public static let shared: StorageService = UserDefaultsStorageService(userDefaults: .standard)
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // MARK: - Properties
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/StorageService.swift:15:17: note: protocol 'StorageService' does not conform to the 'Sendable' protocol
13 |
14 | /// A protocol to define a storage service where to persist properties.
15 | public protocol StorageService {
| `- note: protocol 'StorageService' does not conform to the 'Sendable' protocol
16 |
17 | /// Load the property value from storage.
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/Services/KeyChainStorageService.swift:22:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Reference to the shared keychain storage service.
22 | public static let shared: StorageService = KeyChainStorageService(identifier: "default")
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | // MARK: - Properties
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/StorageService.swift:15:17: note: protocol 'StorageService' does not conform to the 'Sendable' protocol
13 |
14 | /// A protocol to define a storage service where to persist properties.
15 | public protocol StorageService {
| `- note: protocol 'StorageService' does not conform to the 'Sendable' protocol
16 |
17 | /// Load the property value from storage.
[10/13] Emitting module PersistedProperty
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/Services/KeyChainStorageService.swift:22:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Reference to the shared keychain storage service.
22 | public static let shared: StorageService = KeyChainStorageService(identifier: "default")
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | // MARK: - Properties
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/StorageService.swift:15:17: note: protocol 'StorageService' does not conform to the 'Sendable' protocol
13 |
14 | /// A protocol to define a storage service where to persist properties.
15 | public protocol StorageService {
| `- note: protocol 'StorageService' does not conform to the 'Sendable' protocol
16 |
17 | /// Load the property value from storage.
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/Services/UserDefaultsStorageService.swift:21:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Reference to the shared user defaults storage service.
21 | public static let shared: StorageService = UserDefaultsStorageService(userDefaults: .standard)
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // MARK: - Properties
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/StorageService.swift:15:17: note: protocol 'StorageService' does not conform to the 'Sendable' protocol
13 |
14 | /// A protocol to define a storage service where to persist properties.
15 | public protocol StorageService {
| `- note: protocol 'StorageService' does not conform to the 'Sendable' protocol
16 |
17 | /// Load the property value from storage.
[11/13] Compiling PersistedProperty UserDefaultsStorageService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/Services/UserDefaultsStorageService.swift:21:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
19 |
20 | /// Reference to the shared user defaults storage service.
21 | public static let shared: StorageService = UserDefaultsStorageService(userDefaults: .standard)
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | // MARK: - Properties
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/StorageService.swift:15:17: note: protocol 'StorageService' does not conform to the 'Sendable' protocol
13 |
14 | /// A protocol to define a storage service where to persist properties.
15 | public protocol StorageService {
| `- note: protocol 'StorageService' does not conform to the 'Sendable' protocol
16 |
17 | /// Load the property value from storage.
[12/13] Compiling PersistedProperty AnyOptional.swift
[13/13] Compiling PersistedProperty KeyChainStorageService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/Services/KeyChainStorageService.swift:22:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Reference to the shared keychain storage service.
22 | public static let shared: StorageService = KeyChainStorageService(identifier: "default")
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'any StorageService' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | // MARK: - Properties
/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/StorageService.swift:15:17: note: protocol 'StorageService' does not conform to the 'Sendable' protocol
13 |
14 | /// A protocol to define a storage service where to persist properties.
15 | public protocol StorageService {
| `- note: protocol 'StorageService' does not conform to the 'Sendable' protocol
16 |
17 | /// Load the property value from storage.
[14/14] Compiling PersistedProperty resource_bundle_accessor.swift
Build complete! (14.68s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "PersistedProperty",
"name" : "PersistedProperty",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "11.0"
}
],
"products" : [
{
"name" : "PersistedProperty",
"targets" : [
"PersistedProperty"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "PersistedPropertyTests",
"module_type" : "SwiftTarget",
"name" : "PersistedPropertyTests",
"path" : "Tests/PersistedPropertyTests",
"sources" : [
"Common/InMemoryStorageService.swift",
"Common/PersistedContainer.swift",
"PersistedPropertyInMemoryTests.swift",
"PersistedPropertyKeyChainTests.swift",
"PersistedPropertyTests.swift",
"PersistedPropertyUserDefaultsTests.swift"
],
"target_dependencies" : [
"PersistedProperty"
],
"type" : "test"
},
{
"c99name" : "PersistedProperty",
"module_type" : "SwiftTarget",
"name" : "PersistedProperty",
"path" : "Sources/PersistedProperty",
"product_memberships" : [
"PersistedProperty"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/PersistedProperty/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Common/AnyOptional.swift",
"Common/Mutex.swift",
"Common/MutexType.swift",
"Common/StorageCoder.swift",
"Persisted.swift",
"Services/KeyChainStorageService.swift",
"Services/UserDefaultsStorageService.swift",
"Storage.swift",
"StorageService.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.