Build Information
Successful build of FluidMenuBarExtra, reference main (568f9d), with Swift 6.3 for macOS (SPM) on 22 Apr 2026 15:55:30 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wadetregaskis/FluidMenuBarExtra.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/wadetregaskis/FluidMenuBarExtra
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 568f9de Upgraded to swift-actions/setup-swift/v2.
Cloned https://github.com/wadetregaskis/FluidMenuBarExtra.git
Revision (git rev-parse @):
568f9defa5ce12bcfca6318284c38004dfb16450
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/wadetregaskis/FluidMenuBarExtra.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",
"traits": [
"default"
],
"dependencies": [
{
"identity": "fluidmenubarextra",
"name": "FluidMenuBarExtra",
"url": "https://github.com/wadetregaskis/FluidMenuBarExtra.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/FluidMenuBarExtra",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/wadetregaskis/FluidMenuBarExtra.git
[1/338] Fetching fluidmenubarextra
Fetched https://github.com/wadetregaskis/FluidMenuBarExtra.git from cache (0.77s)
Creating working copy for https://github.com/wadetregaskis/FluidMenuBarExtra.git
Working copy of https://github.com/wadetregaskis/FluidMenuBarExtra.git resolved at main (568f9de)
warning: '.resolve-product-dependencies': dependency 'fluidmenubarextra' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/wadetregaskis/FluidMenuBarExtra.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/9] Compiling FluidMenuBarExtra FluidMenuBarExtra.swift
/Users/admin/builder/spi-builder-workspace/Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:36:25: warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | ///
34 | /// See also the bundled demo application for a more detailed example.
35 | public struct FluidMenuBarExtra<Content: View>: Scene {
| `- note: 'Content' previously declared here
36 | private class State<Content: View>: ObservableObject {
| `- warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
37 | var statusItem: FluidMenuBarExtraStatusItem? = nil
38 | }
[4/9] Compiling FluidMenuBarExtra RootViewModifier.swift
[5/9] Compiling FluidMenuBarExtra FluidMenuBarExtraWindow.swift
[6/9] Compiling FluidMenuBarExtra EventMonitor.swift
[7/9] Compiling FluidMenuBarExtra FluidMenuBarExtraStatusItem.swift
[8/9] Emitting module FluidMenuBarExtra
/Users/admin/builder/spi-builder-workspace/Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:36:25: warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 | ///
34 | /// See also the bundled demo application for a more detailed example.
35 | public struct FluidMenuBarExtra<Content: View>: Scene {
| `- note: 'Content' previously declared here
36 | private class State<Content: View>: ObservableObject {
| `- warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
37 | var statusItem: FluidMenuBarExtraStatusItem? = nil
38 | }
[9/9] Compiling FluidMenuBarExtra UpdateSizeAction.swift
Build complete! (8.57s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "FluidMenuBarExtra",
"name" : "FluidMenuBarExtra",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "FluidMenuBarExtra",
"targets" : [
"FluidMenuBarExtra"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "FluidMenuBarExtra",
"module_type" : "SwiftTarget",
"name" : "FluidMenuBarExtra",
"path" : "Sources/FluidMenuBarExtra",
"product_memberships" : [
"FluidMenuBarExtra"
],
"sources" : [
"EventMonitor.swift",
"FluidMenuBarExtra.swift",
"FluidMenuBarExtraStatusItem.swift",
"FluidMenuBarExtraWindow.swift",
"RootViewModifier.swift",
"UpdateSizeAction.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/wadetregaskis/fluidmenubarextra/main
Repository: wadetregaskis/FluidMenuBarExtra
Swift version used: 6.3
Target: FluidMenuBarExtra
Extracting symbol information for 'FluidMenuBarExtra'...
Finished extracting symbol information for 'FluidMenuBarExtra'. (44.39s)
Building documentation for 'FluidMenuBarExtra'...
warning: 'SwiftUI.MenuBarExtra' doesn't exist at '/FluidMenuBarExtra/FluidMenuBarExtra'
--> Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:13:44-13:64
11 | /// A class you use to create a menubar extra in SwiftUI.
12 | ///
13 + /// This is by design similar to Apple's ``SwiftUI.MenuBarExtra`` provided in SwiftUI itself, but with additional functionality and better behaviour (Apple's `MenuBarExtra` doesn't follow macOS standards regarding how it responds to user interaction).
| ╰─suggestion: Replace 'SwiftUI.MenuBarExtra' with 'menuBarExtraStyle(_:)'
14 | ///
15 | /// Typically you use this in your @main body where you spell out your app's various scenes (e.g. WindowGroups, Settings, etc). e.g.:
warning: 'NSImage(named:)' doesn't exist at '/FluidMenuBarExtra/FluidMenuBarExtra/init(_:image:isInserted:animation:menu:alignment:screenClippingBehaviour:content:)'
--> Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:126:50-126:65
124 | /// - Parameters:
125 | /// - title: This is not shown in the menubar directly (only `image` is) but this is used as the accessibility title (e.g. for screen readers).
126 + /// - image: The name of the image (a la ``NSImage(named:)``) to use as the icon for the menubar item, in the menubar.
127 | /// - isInserted: An optional binding to a boolean that controls whether the menubar item is visible or not. Typically this is tied to a Toggle in your app's settings, or similar. Note that this has no effect on the visiblity of the pop-up window (e.g. changing this to false while the window is shown won't hide the window, even though the menubar item itself disappears).
128 | ///
warning: Parameter 'image' not found in initializer declaration
--> Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:196:11-196:130
194 | /// - Parameters:
195 | /// - title: This is not shown in the menubar directly (only `image` is) but this is used as the accessibility title (e.g. for screen readers).
196 + /// - image: The name of the system symbol image (a la SF Symbols) to use as the icon for the menubar item, in the menubar.
| ╰─suggestion: Remove 'image' parameter documentation
197 | /// - isInserted: An optional binding to a boolean that controls whether the menubar item is visible or not. Typically this is tied to a Toggle in your app's settings, or similar. Note that this has no effect on the visiblity of the pop-up window (e.g. changing this to false while the window is shown won't hide the window, even though the menubar item itself disappears).
198 | ///
warning: Parameter 'systemImage' is missing documentation
--> Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:210:111-210:111
208 | /// - alignment: Specifies how the pop-up window is aligned relative to the menubar item.
209 | /// - screenClippingBehaviour: Specifies how the pop-up window's position is adjusted when it runs up against the edges of the screen.
210 + /// - content: The contents of the pop-up window that is shown when the user clicks on the menubar item.
211 | public init(_ title: String,
212 | systemImage: String,
warning: 'FluidMenuBarExtraPopUpAlignment' doesn't exist at '/FluidMenuBarExtra/ScreenClippingBehaviour/reverseAlignment'
--> Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:273:96-273:127
271 | /// Controls how the pop-up window's position is adapted to space constraints from encountering the left or right edges of the screen.
272 | public enum ScreenClippingBehaviour: Hashable {
273 + /// If there isn't enough space to use the normal alignment, switch to its reverse (e.g. ``FluidMenuBarExtraPopUpAlignment/right`` instead of ``FluidMenuBarExtraPopUpAlignment/left``). If this still isn't sufficient to resolve the problem, the behaviour falls back to ``hugEdge``.
274 | case reverseAlignment
275 |
warning: 'FluidMenuBarExtraPopUpAlignment' doesn't exist at '/FluidMenuBarExtra/ScreenClippingBehaviour/reverseAlignment'
--> Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:273:149-273:180
271 | /// Controls how the pop-up window's position is adapted to space constraints from encountering the left or right edges of the screen.
272 | public enum ScreenClippingBehaviour: Hashable {
273 + /// If there isn't enough space to use the normal alignment, switch to its reverse (e.g. ``FluidMenuBarExtraPopUpAlignment/right`` instead of ``FluidMenuBarExtraPopUpAlignment/left``). If this still isn't sufficient to resolve the problem, the behaviour falls back to ``hugEdge``.
274 | case reverseAlignment
275 |
warning: 'FluidMenuBarExtraPopUpAlignment' doesn't exist at '/FluidMenuBarExtra/ScreenClippingBehaviour/hugEdge'
--> Sources/FluidMenuBarExtra/FluidMenuBarExtra.swift:276:213-276:244
274 | case reverseAlignment
275 |
276 + /// Nudge the pop-up window in from the edge just enough to make it fully visible. This may mean an otherwise unnatural alignment of the pop-up window and the menubar item, not corresponding to any of the ``FluidMenuBarExtraPopUpAlignment`` options.
277 | case hugEdge
278 | }
Finished building documentation for 'FluidMenuBarExtra' (0.59s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/wadetregaskis/fluidmenubarextra/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.08s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (1.74s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3674] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.15s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.90s)
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
[2/8] Write snippet-extract-tool-entitlement.plist
[2/8] Write sources
[4/8] Write swift-version--6988338F2F200930.txt
[6/53] Compiling SymbolKit Identifier.swift
[7/53] Compiling SymbolKit KindIdentifier.swift
[8/53] Compiling SymbolKit Location.swift
[9/53] Compiling SymbolKit Mutability.swift
[10/57] Compiling SymbolKit Relationship.swift
[11/57] Compiling SymbolKit RelationshipKind.swift
[12/57] Compiling SymbolKit SourceOrigin.swift
[13/57] Compiling SymbolKit GenericConstraints.swift
[14/57] Compiling SymbolKit Swift.swift
[15/57] Compiling SymbolKit SemanticVersion.swift
[16/57] Compiling SymbolKit AccessControl.swift
[17/57] Compiling SymbolKit Availability.swift
[18/57] Compiling SymbolKit AvailabilityItem.swift
[19/57] Compiling SymbolKit Domain.swift
[20/57] Compiling Snippets Snippet.swift
[21/57] Emitting module Snippets
[22/57] Compiling Snippets SnippetParser.swift
[23/57] Compiling SymbolKit Names.swift
[24/57] Compiling SymbolKit SPI.swift
[25/57] Compiling SymbolKit Snippet.swift
[26/57] Compiling SymbolKit Extension.swift
[27/57] Emitting module SymbolKit
[28/57] Compiling SymbolKit SourceRange.swift
[29/57] Compiling SymbolKit Metadata.swift
[30/57] Compiling SymbolKit Module.swift
[31/57] Compiling SymbolKit OperatingSystem.swift
[32/57] Compiling SymbolKit Platform.swift
[33/57] Compiling SymbolKit Mixin+Equals.swift
[34/57] Compiling SymbolKit Mixin+Hash.swift
[35/57] Compiling SymbolKit Mixin.swift
[36/57] Compiling SymbolKit LineList.swift
[37/57] Compiling SymbolKit Position.swift
[38/57] Compiling SymbolKit DeclarationFragments.swift
[39/57] Compiling SymbolKit Fragment.swift
[40/57] Compiling SymbolKit FragmentKind.swift
[41/57] Compiling SymbolKit FunctionParameter.swift
[42/57] Compiling SymbolKit FunctionSignature.swift
[43/57] Compiling SymbolKit GenericConstraint.swift
[44/57] Compiling SymbolKit GenericParameter.swift
[45/57] Compiling SymbolKit Generics.swift
[46/57] Compiling SymbolKit Namespace.swift
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.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! (5.17s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'FluidMenuBarExtra' complete! (0.20s)
178
2 /Users/admin/builder/spi-builder-workspace/.docs/wadetregaskis/fluidmenubarextra/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/wadetregaskis/fluidmenubarextra/main
File count: 178
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-wadetregaskis-fluidmenubarextra-main-ee6d103a.zip to s3://spi-docs-inbox/prod-wadetregaskis-fluidmenubarextra-main-ee6d103a.zip
Copying... [13%]
Copying... [26%]
Copying... [39%]
Copying... [52%]
Copying... [65%]
Copying... [78%]
Copying... [91%]
Copying... [100%]
Done.