Build Information
Successful build of StatusItemController, reference 2.0.1 (bbded0
), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 09:16:32 UTC.
Swift 6 data race errors: 0
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.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/hexedbits/StatusItemController.git
Reference: 2.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/hexedbits/StatusItemController
* tag 2.0.1 -> FETCH_HEAD
HEAD is now at bbded09 [2.0.1] release prep
Cloned https://github.com/hexedbits/StatusItemController.git
Revision (git rev-parse @):
bbded09a286590564dbf9cf8f9f5e5ffbd5e8fab
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/hexedbits/StatusItemController.git at 2.0.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": "statusitemcontroller",
"name": "StatusItemController",
"url": "https://github.com/hexedbits/StatusItemController.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/StatusItemController",
"dependencies": [
]
}
]
}
Fetching https://github.com/hexedbits/StatusItemController.git
[1/1042] Fetching statusitemcontroller
Fetched https://github.com/hexedbits/StatusItemController.git from cache (0.91s)
Creating working copy for https://github.com/hexedbits/StatusItemController.git
Working copy of https://github.com/hexedbits/StatusItemController.git resolved at 2.0.1 (bbded09)
warning: '.resolve-product-dependencies': dependency 'statusitemcontroller' 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/hexedbits/StatusItemController.git
https://github.com/hexedbits/StatusItemController.git
{
"dependencies" : [
],
"manifest_display_name" : "StatusItemController",
"name" : "StatusItemController",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
}
],
"products" : [
{
"name" : "StatusItemController",
"targets" : [
"StatusItemController"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "StatusItemControllerTests",
"module_type" : "SwiftTarget",
"name" : "StatusItemControllerTests",
"path" : "Tests",
"sources" : [
"StatusItemControllerTests.swift"
],
"target_dependencies" : [
"StatusItemController"
],
"type" : "test"
},
{
"c99name" : "StatusItemController",
"module_type" : "SwiftTarget",
"name" : "StatusItemController",
"path" : "Sources",
"product_memberships" : [
"StatusItemController"
],
"sources" : [
"NSApplication+Extensions.swift",
"NSEvent+Extensions.swift",
"NSMenuItem+Extensions.swift",
"StatusItemController.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
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/7] Compiling StatusItemController NSMenuItem+Extensions.swift
[4/7] Compiling StatusItemController NSApplication+Extensions.swift
[5/7] Emitting module StatusItemController
[6/7] Compiling StatusItemController StatusItemController.swift
/Users/admin/builder/spi-builder-workspace/Sources/StatusItemController.swift:72:25: warning: 'popUpMenu' was deprecated in macOS 10.14: Use the menu property instead
70 | // Without using this method, the menu does not popup immediately,
71 | // and you have to right click a second time.
72 | self.statusItem.popUpMenu(self._configureMenu(hidden: false)!)
| `- warning: 'popUpMenu' was deprecated in macOS 10.14: Use the menu property instead
73 | }
74 |
/Users/admin/builder/spi-builder-workspace/Sources/StatusItemController.swift:46:50: warning: cannot access property 'statusItem' with a non-sendable type 'NSStatusItem' from nonisolated deinit; this is an error in the Swift 6 language mode
44 | /// :nodoc:
45 | deinit {
46 | NSStatusBar.system.removeStatusItem(self.statusItem)
| `- warning: cannot access property 'statusItem' with a non-sendable type 'NSStatusItem' from nonisolated deinit; this is an error in the Swift 6 language mode
47 | }
48 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSStatusItem.h:35:12: note: class 'NSStatusItem' does not conform to the 'Sendable' protocol
33 | } API_AVAILABLE(macos(10.12));
34 |
35 | @interface NSStatusItem : NSObject
| `- note: class 'NSStatusItem' does not conform to the 'Sendable' protocol
36 |
37 | /* The status bar that the receiver is displayed in.
[7/7] Compiling StatusItemController NSEvent+Extensions.swift
Build complete! (7.19s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "StatusItemController",
"name" : "StatusItemController",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
}
],
"products" : [
{
"name" : "StatusItemController",
"targets" : [
"StatusItemController"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "StatusItemControllerTests",
"module_type" : "SwiftTarget",
"name" : "StatusItemControllerTests",
"path" : "Tests",
"sources" : [
"StatusItemControllerTests.swift"
],
"target_dependencies" : [
"StatusItemController"
],
"type" : "test"
},
{
"c99name" : "StatusItemController",
"module_type" : "SwiftTarget",
"name" : "StatusItemController",
"path" : "Sources",
"product_memberships" : [
"StatusItemController"
],
"sources" : [
"NSApplication+Extensions.swift",
"NSEvent+Extensions.swift",
"NSMenuItem+Extensions.swift",
"StatusItemController.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/hexedbits/statusitemcontroller/2.0.1
Repository: hexedbits/StatusItemController
Swift version used: 6.1
Target: StatusItemController
Extracting symbol information for 'StatusItemController'...
Finished extracting symbol information for 'StatusItemController'. (4.22s)
Building documentation for 'StatusItemController'...
Finished building documentation for 'StatusItemController' (0.13s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/hexedbits/statusitemcontroller/2.0.1
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.46s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (1.16s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.84s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.49s)
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.3
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
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Compiling Snippets Snippet.swift
[8/53] Emitting module Snippets
[9/53] Compiling SymbolKit Relationship.swift
[10/53] Compiling SymbolKit RelationshipKind.swift
[11/53] Compiling SymbolKit SourceOrigin.swift
[12/53] Compiling SymbolKit GenericConstraints.swift
[13/53] Compiling SymbolKit Swift.swift
[14/57] Compiling SymbolKit SemanticVersion.swift
[15/57] Compiling SymbolKit AccessControl.swift
[16/57] Compiling SymbolKit Availability.swift
[17/57] Compiling SymbolKit AvailabilityItem.swift
[18/57] Compiling SymbolKit Domain.swift
[19/57] Compiling SymbolKit Mixin+Equals.swift
[20/57] Compiling SymbolKit Mixin+Hash.swift
[21/57] Compiling SymbolKit Mixin.swift
[22/57] Compiling SymbolKit LineList.swift
[23/57] Compiling SymbolKit Position.swift
[24/57] Compiling SymbolKit SourceRange.swift
[25/57] Compiling SymbolKit Metadata.swift
[26/57] Compiling SymbolKit Module.swift
[27/57] Compiling SymbolKit OperatingSystem.swift
[28/57] Compiling SymbolKit Platform.swift
[29/57] Compiling SymbolKit Identifier.swift
[30/57] Compiling SymbolKit KindIdentifier.swift
[31/57] Compiling SymbolKit Location.swift
[32/57] Compiling SymbolKit Mutability.swift
[33/57] Emitting module SymbolKit
[34/57] Compiling SymbolKit DeclarationFragments.swift
[35/57] Compiling SymbolKit Fragment.swift
[36/57] Compiling SymbolKit FragmentKind.swift
[37/57] Compiling SymbolKit FunctionParameter.swift
[38/57] Compiling SymbolKit FunctionSignature.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit Names.swift
[44/57] Compiling SymbolKit SPI.swift
[45/57] Compiling SymbolKit Snippet.swift
[46/57] Compiling SymbolKit Extension.swift
[47/57] Compiling SymbolKit GenericConstraint.swift
[48/57] Compiling SymbolKit GenericParameter.swift
[49/57] Compiling SymbolKit Generics.swift
[50/57] Compiling SymbolKit Namespace.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] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.33s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/6] Compiling StatusItemController NSMenuItem+Extensions.swift
[3/6] Compiling StatusItemController NSEvent+Extensions.swift
[4/6] Compiling StatusItemController NSApplication+Extensions.swift
[5/6] Emitting module StatusItemController
[6/6] Compiling StatusItemController StatusItemController.swift
/Users/admin/builder/spi-builder-workspace/Sources/StatusItemController.swift:72:25: warning: 'popUpMenu' was deprecated in macOS 10.14: Use the menu property instead
70 | // Without using this method, the menu does not popup immediately,
71 | // and you have to right click a second time.
72 | self.statusItem.popUpMenu(self._configureMenu(hidden: false)!)
| `- warning: 'popUpMenu' was deprecated in macOS 10.14: Use the menu property instead
73 | }
74 |
Build of target: 'StatusItemController' complete! (0.63s)
88
2 /Users/admin/builder/spi-builder-workspace/.docs/hexedbits/statusitemcontroller/2.0.1
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/hexedbits/statusitemcontroller/2.0.1
File count: 88
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-hexedbits-statusitemcontroller-2.0.1-d2c12067.zip to s3://spi-docs-inbox/prod-hexedbits-statusitemcontroller-2.0.1-d2c12067.zip
Copying... [18%]
Copying... [36%]
Copying... [55%]
Copying... [73%]
Copying... [91%]
Copying... [100%]
Done.