Build Information
Failed to build Logdog, reference 0.4.0 (370ed7
), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 09:26:35 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/uhooi/Logdog.git
Reference: 0.4.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/uhooi/Logdog
* tag 0.4.0 -> FETCH_HEAD
HEAD is now at 370ed7d Merge pull request #33 from uhooi/feature/support_swift6
Cloned https://github.com/uhooi/Logdog.git
Revision (git rev-parse @):
370ed7d15d12977dbebe35da6186d8cd2a91d605
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/uhooi/Logdog.git at 0.4.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/uhooi/Logdog.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/5] Write sources
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/11] Emitting module Logdog
[7/11] Compiling Logdog LogEntry.swift
[8/11] Compiling Logdog LogLevel.swift
[9/11] Compiling Logdog LogStore.swift
[10/11] Compiling Logdog Metadata.swift
[11/11] Compiling Logdog LogLevel+Init.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/16] Emitting module LogdogUI
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:243:64: error: type 'Bundle?' has no member 'module'
241 | NavigationStack {
242 | LogdogScreen()
243 | .navigationTitle(String(localized: "Log", bundle: .module))
| `- error: type 'Bundle?' has no member 'module'
244 | .navigationBarTitleDisplayMode(.inline)
245 | }
[13/16] Compiling LogdogUI LogRowView.swift
[14/16] Compiling LogdogUI Metadata+UI.swift
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Internals/Extensions/Metadata+UI.swift:6:55: error: type 'Bundle?' has no member 'module'
4 | var text: String {
5 | switch self {
6 | case .type: .init(localized: "Type", bundle: .module)
| `- error: type 'Bundle?' has no member 'module'
7 | case .timestamp: .init(localized: "Timestamp", bundle: .module)
8 | case .library: .init(localized: "Library", bundle: .module)
[15/16] Compiling LogdogUI LogdogScreen.swift
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:243:64: error: type 'Bundle?' has no member 'module'
241 | NavigationStack {
242 | LogdogScreen()
243 | .navigationTitle(String(localized: "Log", bundle: .module))
| `- error: type 'Bundle?' has no member 'module'
244 | .navigationBarTitleDisplayMode(.inline)
245 | }
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:26:54: error: type 'Bundle?' has no member 'module'
24 | Menu {
25 | Picker(selection: $subsystemSearchScope) {
26 | Text("All", bundle: .module)
| `- error: type 'Bundle?' has no member 'module'
27 | .tag(SubsystemSearchScope.all)
28 |
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:34:60: error: type 'Bundle?' has no member 'module'
32 | }
33 | } label: {
34 | Text("Subsystem", bundle: .module)
| `- error: type 'Bundle?' has no member 'module'
35 | }
36 | } label: {
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:174:53: error: type 'Bundle?' has no member 'module'
172 | var text: String {
173 | switch self {
174 | case .all: .init(localized: "All", bundle: .module)
| `- error: type 'Bundle?' has no member 'module'
175 | case let .subsystem(subsystem): subsystem
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:186:53: error: type 'Bundle?' has no member 'module'
184 | var text: String {
185 | switch self {
186 | case .all: .init(localized: "All", bundle: .module)
| `- error: type 'Bundle?' has no member 'module'
187 | case let .category(category): category
188 | }
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:230:13: error: 'menuActionDismissBehavior' is only available in macOS 13.3 or newer
224 | }
225 |
226 | private extension View {
| `- note: add @available attribute to enclosing extension
227 | @ViewBuilder
228 | func menuActionDismissBehaviorDisabledIfAvailable() -> some View {
| `- note: add @available attribute to enclosing instance method
229 | if #available(iOS 16.4, *) {
230 | menuActionDismissBehavior(.disabled)
| |- error: 'menuActionDismissBehavior' is only available in macOS 13.3 or newer
| `- note: add 'if #available' version check
231 | } else {
232 | self
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:230:40: error: 'disabled' is unavailable in macOS
228 | func menuActionDismissBehaviorDisabledIfAvailable() -> some View {
229 | if #available(iOS 16.4, *) {
230 | menuActionDismissBehavior(.disabled)
| `- error: 'disabled' is unavailable in macOS
231 | } else {
232 | self
SwiftUI.MenuActionDismissBehavior.disabled:5:21: note: 'disabled' has been explicitly marked unavailable here
3 | @available(macOS, unavailable)
4 | @available(watchOS, unavailable)
5 | public static let disabled: MenuActionDismissBehavior}
| `- note: 'disabled' has been explicitly marked unavailable here
6 |
[16/16] Compiling LogdogUI LogLevel+UI.swift
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Internals/Extensions/LogLevel+UI.swift:7:65: error: type 'Bundle?' has no member 'module'
5 | var text: String {
6 | switch self {
7 | case .undefined: .init(localized: "Undefined", bundle: .module)
| `- error: type 'Bundle?' has no member 'module'
8 | case .debug: .init(localized: "Debug", bundle: .module)
9 | case .info: .init(localized: "Info", bundle: .module)
Fetching https://github.com/apple/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.11s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (3.88s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3414] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.18s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.75s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/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
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Resources/Localizable.xcstrings
BUILD FAILURE 6.2 macosSpm