Build Information
Successful build of TypedAppStorage, reference main (4fa2f6
), with Swift 6.1 for macOS (SPM) on 14 Jun 2025 19:04:02 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.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/laosb/TypedAppStorage.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/laosb/TypedAppStorage
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 4fa2f61 doc: Document TypedUserDefaults usage and update docs
Cloned https://github.com/laosb/TypedAppStorage.git
Revision (git rev-parse @):
4fa2f6153238b3a98acbb315e5a556ae924d9569
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/laosb/TypedAppStorage.git at main
========================================
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": "typedappstorage",
"name": "TypedAppStorage",
"url": "https://github.com/laosb/TypedAppStorage.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/TypedAppStorage",
"dependencies": [
]
}
]
}
Fetching https://github.com/laosb/TypedAppStorage.git
[1/70] Fetching typedappstorage
Fetched https://github.com/laosb/TypedAppStorage.git from cache (0.58s)
Creating working copy for https://github.com/laosb/TypedAppStorage.git
Working copy of https://github.com/laosb/TypedAppStorage.git resolved at main (4fa2f61)
warning: '.resolve-product-dependencies': dependency 'typedappstorage' 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/laosb/TypedAppStorage.git
https://github.com/laosb/TypedAppStorage.git
{
"dependencies" : [
],
"manifest_display_name" : "TypedAppStorage",
"name" : "TypedAppStorage",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "maccatalyst",
"version" : "14.0"
},
{
"name" : "tvos",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "7.0"
}
],
"products" : [
{
"name" : "TypedAppStorage",
"targets" : [
"TypedAppStorage"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TypedAppStorageTests",
"module_type" : "SwiftTarget",
"name" : "TypedAppStorageTests",
"path" : "Tests/TypedAppStorageTests",
"sources" : [
"TypedAppStorageTests.swift",
"TypedUserDefaultsTests.swift"
],
"target_dependencies" : [
"TypedAppStorage"
],
"type" : "test"
},
{
"c99name" : "TypedAppStorage",
"module_type" : "SwiftTarget",
"name" : "TypedAppStorage",
"path" : "Sources/TypedAppStorage",
"product_memberships" : [
"TypedAppStorage"
],
"sources" : [
"TypedAppStorage.swift",
"TypedUserDefaults.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/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/5] Compiling TypedAppStorage TypedUserDefaults.swift
/Users/admin/builder/spi-builder-workspace/Sources/TypedAppStorage/TypedUserDefaults.swift:15:21: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TypedUserDefaults' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// that conform to ``TypedAppStorageValue``. Since ``TypedAppStorageValue`` includes the storage key and default value,
7 | /// many parameters become optional in the API.
8 | public class TypedUserDefaults {
| `- note: class 'TypedUserDefaults' does not conform to the 'Sendable' protocol
9 | /// The underlying UserDefaults store.
10 | public let userDefaults: UserDefaults
:
13 |
14 | /// The shared typed user defaults object.
15 | public static let standard = TypedUserDefaults()
| |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TypedUserDefaults' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | /// Creates a TypedUserDefaults instance with the specified UserDefaults store.
[4/5] Emitting module TypedAppStorage
/Users/admin/builder/spi-builder-workspace/Sources/TypedAppStorage/TypedUserDefaults.swift:15:21: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TypedUserDefaults' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// that conform to ``TypedAppStorageValue``. Since ``TypedAppStorageValue`` includes the storage key and default value,
7 | /// many parameters become optional in the API.
8 | public class TypedUserDefaults {
| `- note: class 'TypedUserDefaults' does not conform to the 'Sendable' protocol
9 | /// The underlying UserDefaults store.
10 | public let userDefaults: UserDefaults
:
13 |
14 | /// The shared typed user defaults object.
15 | public static let standard = TypedUserDefaults()
| |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TypedUserDefaults' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | /// Creates a TypedUserDefaults instance with the specified UserDefaults store.
[5/5] Compiling TypedAppStorage TypedAppStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/TypedAppStorage/TypedAppStorage.swift:67:7: warning: capture of 'self' with non-sendable type 'TypedAppStorage<Value>' in a '@Sendable' closure
16 | /// See <doc:GettingStarted> for more information.
17 | @propertyWrapper
18 | public struct TypedAppStorage<Value: TypedAppStorageValue>: DynamicProperty {
| `- note: consider making generic struct 'TypedAppStorage' conform to the 'Sendable' protocol
19 | private var appStorage: AppStorage<String>
20 | private var initialValue: Value
:
65 | public var projectedValue: Binding<Value> {
66 | .init {
67 | wrappedValue
| `- warning: capture of 'self' with non-sendable type 'TypedAppStorage<Value>' in a '@Sendable' closure
68 | } set: { newValue in
69 | wrappedValue = newValue
/Users/admin/builder/spi-builder-workspace/Sources/TypedAppStorage/TypedAppStorage.swift:69:7: warning: capture of 'self' with non-sendable type 'TypedAppStorage<Value>' in a '@Sendable' closure
16 | /// See <doc:GettingStarted> for more information.
17 | @propertyWrapper
18 | public struct TypedAppStorage<Value: TypedAppStorageValue>: DynamicProperty {
| `- note: consider making generic struct 'TypedAppStorage' conform to the 'Sendable' protocol
19 | private var appStorage: AppStorage<String>
20 | private var initialValue: Value
:
67 | wrappedValue
68 | } set: { newValue in
69 | wrappedValue = newValue
| `- warning: capture of 'self' with non-sendable type 'TypedAppStorage<Value>' in a '@Sendable' closure
70 | }
71 | }
Build complete! (8.50s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "TypedAppStorage",
"name" : "TypedAppStorage",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "maccatalyst",
"version" : "14.0"
},
{
"name" : "tvos",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "7.0"
}
],
"products" : [
{
"name" : "TypedAppStorage",
"targets" : [
"TypedAppStorage"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TypedAppStorageTests",
"module_type" : "SwiftTarget",
"name" : "TypedAppStorageTests",
"path" : "Tests/TypedAppStorageTests",
"sources" : [
"TypedAppStorageTests.swift",
"TypedUserDefaultsTests.swift"
],
"target_dependencies" : [
"TypedAppStorage"
],
"type" : "test"
},
{
"c99name" : "TypedAppStorage",
"module_type" : "SwiftTarget",
"name" : "TypedAppStorage",
"path" : "Sources/TypedAppStorage",
"product_memberships" : [
"TypedAppStorage"
],
"sources" : [
"TypedAppStorage.swift",
"TypedUserDefaults.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/laosb/typedappstorage/main
Repository: laosb/TypedAppStorage
Swift version used: 6.1
Target: TypedAppStorage
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'TypedAppStorage'...
Finished extracting symbol information for 'TypedAppStorage'. (4.58s)
Building documentation for 'TypedAppStorage'...
Finished building documentation for 'TypedAppStorage' (0.10s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/laosb/typedappstorage/main
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.61s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.4 (3.13s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.78s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.45s)
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.4
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
[1/8] Write snippet-extract-tool-entitlement.plist
[3/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Emitting module Snippets
[8/53] Compiling Snippets Snippet.swift
[9/53] Compiling SymbolKit Names.swift
[10/53] Compiling SymbolKit SPI.swift
[11/53] Compiling SymbolKit Snippet.swift
[12/53] Compiling SymbolKit Extension.swift
[13/57] Compiling SymbolKit SourceRange.swift
[14/57] Compiling SymbolKit Metadata.swift
[15/57] Compiling SymbolKit Module.swift
[16/57] Compiling SymbolKit OperatingSystem.swift
[17/57] Compiling SymbolKit Platform.swift
[18/57] Emitting module SymbolKit
[19/57] Compiling SymbolKit DeclarationFragments.swift
[20/57] Compiling SymbolKit Fragment.swift
[21/57] Compiling SymbolKit FragmentKind.swift
[22/57] Compiling SymbolKit FunctionParameter.swift
[23/57] Compiling SymbolKit FunctionSignature.swift
[24/57] Compiling SymbolKit Symbol.swift
[25/57] Compiling SymbolKit SymbolKind.swift
[26/57] Compiling SymbolKit SymbolGraph.swift
[27/57] Compiling SymbolKit GraphCollector.swift
[28/57] Compiling SymbolKit Mixin+Equals.swift
[29/57] Compiling SymbolKit Mixin+Hash.swift
[30/57] Compiling SymbolKit Mixin.swift
[31/57] Compiling SymbolKit LineList.swift
[32/57] Compiling SymbolKit Position.swift
[33/57] Compiling SymbolKit Relationship.swift
[34/57] Compiling SymbolKit RelationshipKind.swift
[35/57] Compiling SymbolKit SourceOrigin.swift
[36/57] Compiling SymbolKit GenericConstraints.swift
[37/57] Compiling SymbolKit Swift.swift
[38/57] Compiling SymbolKit Identifier.swift
[39/57] Compiling SymbolKit KindIdentifier.swift
[40/57] Compiling SymbolKit Location.swift
[41/57] Compiling SymbolKit Mutability.swift
[42/57] Compiling SymbolKit GenericConstraint.swift
[43/57] Compiling SymbolKit GenericParameter.swift
[44/57] Compiling SymbolKit Generics.swift
[45/57] Compiling SymbolKit Namespace.swift
[46/57] Compiling SymbolKit SemanticVersion.swift
[47/57] Compiling SymbolKit AccessControl.swift
[48/57] Compiling SymbolKit Availability.swift
[49/57] Compiling SymbolKit AvailabilityItem.swift
[50/57] Compiling SymbolKit Domain.swift
[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] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[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! (4.35s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/4] Compiling TypedAppStorage TypedUserDefaults.swift
[3/4] Emitting module TypedAppStorage
[4/4] Compiling TypedAppStorage TypedAppStorage.swift
Build of target: 'TypedAppStorage' complete! (0.59s)
92
2 /Users/admin/builder/spi-builder-workspace/.docs/laosb/typedappstorage/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/laosb/typedappstorage/main
File count: 92
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-laosb-typedappstorage-main-ae59c964.zip to s3://spi-docs-inbox/prod-laosb-typedappstorage-main-ae59c964.zip
Copying... [18%]
Copying... [35%]
Copying... [53%]
Copying... [71%]
Copying... [89%]
Copying... [100%]
Done.