Build Information
Failed to build StreamDeck, reference main (0e88fe), with Swift 6.1 for Linux on 26 Apr 2026 05:24:02 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
484 | public static let teal = Color(hexString: "#008080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:484:20: warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
482 | public static let tan = Color(hexString: "#D2B48C")
483 | /// CSS `teal`
484 | public static let teal = Color(hexString: "#008080")
| |- warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'teal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
485 | /// CSS `thistle`
486 | public static let thistle = Color(hexString: "#D8BFD8")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:486:20: warning: static property 'thistle' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
484 | public static let teal = Color(hexString: "#008080")
485 | /// CSS `thistle`
486 | public static let thistle = Color(hexString: "#D8BFD8")
| |- warning: static property 'thistle' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'thistle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
487 | /// CSS `tomato`
488 | public static let tomato = Color(hexString: "#FF6347")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:488:20: warning: static property 'tomato' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
486 | public static let thistle = Color(hexString: "#D8BFD8")
487 | /// CSS `tomato`
488 | public static let tomato = Color(hexString: "#FF6347")
| |- warning: static property 'tomato' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tomato' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
489 | /// CSS `turquoise`
490 | public static let turquoise = Color(hexString: "#40E0D0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:490:20: warning: static property 'turquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
488 | public static let tomato = Color(hexString: "#FF6347")
489 | /// CSS `turquoise`
490 | public static let turquoise = Color(hexString: "#40E0D0")
| |- warning: static property 'turquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'turquoise' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
491 | /// CSS `violet`
492 | public static let violet = Color(hexString: "#EE82EE")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:492:20: warning: static property 'violet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
490 | public static let turquoise = Color(hexString: "#40E0D0")
491 | /// CSS `violet`
492 | public static let violet = Color(hexString: "#EE82EE")
| |- warning: static property 'violet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'violet' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
493 | /// CSS `wheat`
494 | public static let wheat = Color(hexString: "#F5DEB3")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:494:20: warning: static property 'wheat' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
492 | public static let violet = Color(hexString: "#EE82EE")
493 | /// CSS `wheat`
494 | public static let wheat = Color(hexString: "#F5DEB3")
| |- warning: static property 'wheat' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'wheat' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
495 | /// CSS `white`
496 | public static let white = Color(hexString: "#FFFFFF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:496:20: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
494 | public static let wheat = Color(hexString: "#F5DEB3")
495 | /// CSS `white`
496 | public static let white = Color(hexString: "#FFFFFF")
| |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
497 | /// CSS `whitesmoke`
498 | public static let whitesmoke = Color(hexString: "#F5F5F5")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:498:20: warning: static property 'whitesmoke' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
496 | public static let white = Color(hexString: "#FFFFFF")
497 | /// CSS `whitesmoke`
498 | public static let whitesmoke = Color(hexString: "#F5F5F5")
| |- warning: static property 'whitesmoke' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'whitesmoke' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 | /// CSS `yellow`
500 | public static let yellow = Color(hexString: "#FFFF00")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:500:20: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
498 | public static let whitesmoke = Color(hexString: "#F5F5F5")
499 | /// CSS `yellow`
500 | public static let yellow = Color(hexString: "#FFFF00")
| |- warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 | /// CSS `yellowgreen`
502 | public static let yellowgreen = Color(hexString: "#9ACD32")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:502:20: warning: static property 'yellowgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | /// A set of components that define a color. The color space is defined by the drawing context.
12 | public struct Color: Equatable, Hashable, Codable {
| `- note: consider making struct 'Color' conform to the 'Sendable' protocol
13 |
14 | /// Red value
:
500 | public static let yellow = Color(hexString: "#FFFF00")
501 | /// CSS `yellowgreen`
502 | public static let yellowgreen = Color(hexString: "#9ACD32")
| |- warning: static property 'yellowgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'yellowgreen' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
503 |
504 | }
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutItemKey.swift:21:20: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct LayoutItemKey: Encodable, ExpressibleByStringLiteral {
| `- note: consider making struct 'LayoutItemKey' conform to the 'Sendable' protocol
10 | let key: String
11 |
:
19 | }
20 |
21 | public static let title: LayoutItemKey = "title"
| |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'title' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 | public static let icon: LayoutItemKey = "icon"
23 | public static let value: LayoutItemKey = "value"
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutItemKey.swift:22:20: warning: static property 'icon' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct LayoutItemKey: Encodable, ExpressibleByStringLiteral {
| `- note: consider making struct 'LayoutItemKey' conform to the 'Sendable' protocol
10 | let key: String
11 |
:
20 |
21 | public static let title: LayoutItemKey = "title"
22 | public static let icon: LayoutItemKey = "icon"
| |- warning: static property 'icon' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'icon' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | public static let value: LayoutItemKey = "value"
24 | public static let indicator: LayoutItemKey = "indicator"
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutItemKey.swift:23:20: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct LayoutItemKey: Encodable, ExpressibleByStringLiteral {
| `- note: consider making struct 'LayoutItemKey' conform to the 'Sendable' protocol
10 | let key: String
11 |
:
21 | public static let title: LayoutItemKey = "title"
22 | public static let icon: LayoutItemKey = "icon"
23 | public static let value: LayoutItemKey = "value"
| |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static let indicator: LayoutItemKey = "indicator"
25 | public static let indicator1: LayoutItemKey = "indicator1"
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutItemKey.swift:24:20: warning: static property 'indicator' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct LayoutItemKey: Encodable, ExpressibleByStringLiteral {
| `- note: consider making struct 'LayoutItemKey' conform to the 'Sendable' protocol
10 | let key: String
11 |
:
22 | public static let icon: LayoutItemKey = "icon"
23 | public static let value: LayoutItemKey = "value"
24 | public static let indicator: LayoutItemKey = "indicator"
| |- warning: static property 'indicator' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'indicator' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | public static let indicator1: LayoutItemKey = "indicator1"
26 | public static let indicator2: LayoutItemKey = "indicator2"
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutItemKey.swift:25:20: warning: static property 'indicator1' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct LayoutItemKey: Encodable, ExpressibleByStringLiteral {
| `- note: consider making struct 'LayoutItemKey' conform to the 'Sendable' protocol
10 | let key: String
11 |
:
23 | public static let value: LayoutItemKey = "value"
24 | public static let indicator: LayoutItemKey = "indicator"
25 | public static let indicator1: LayoutItemKey = "indicator1"
| |- warning: static property 'indicator1' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'indicator1' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | public static let indicator2: LayoutItemKey = "indicator2"
27 | public static let canvas: LayoutItemKey = "canvas"
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutItemKey.swift:26:20: warning: static property 'indicator2' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct LayoutItemKey: Encodable, ExpressibleByStringLiteral {
| `- note: consider making struct 'LayoutItemKey' conform to the 'Sendable' protocol
10 | let key: String
11 |
:
24 | public static let indicator: LayoutItemKey = "indicator"
25 | public static let indicator1: LayoutItemKey = "indicator1"
26 | public static let indicator2: LayoutItemKey = "indicator2"
| |- warning: static property 'indicator2' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'indicator2' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | public static let canvas: LayoutItemKey = "canvas"
28 | public static let fullCanvas: LayoutItemKey = "full-canvas"
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutItemKey.swift:27:20: warning: static property 'canvas' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct LayoutItemKey: Encodable, ExpressibleByStringLiteral {
| `- note: consider making struct 'LayoutItemKey' conform to the 'Sendable' protocol
10 | let key: String
11 |
:
25 | public static let indicator1: LayoutItemKey = "indicator1"
26 | public static let indicator2: LayoutItemKey = "indicator2"
27 | public static let canvas: LayoutItemKey = "canvas"
| |- warning: static property 'canvas' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'canvas' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | public static let fullCanvas: LayoutItemKey = "full-canvas"
29 | }
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutItemKey.swift:28:20: warning: static property 'fullCanvas' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
7 |
8 |
9 | public struct LayoutItemKey: Encodable, ExpressibleByStringLiteral {
| `- note: consider making struct 'LayoutItemKey' conform to the 'Sendable' protocol
10 | let key: String
11 |
:
26 | public static let indicator2: LayoutItemKey = "indicator2"
27 | public static let canvas: LayoutItemKey = "canvas"
28 | public static let fullCanvas: LayoutItemKey = "full-canvas"
| |- warning: static property 'fullCanvas' is not concurrency-safe because non-'Sendable' type 'LayoutItemKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'fullCanvas' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | }
30 |
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutName.swift:62:20: warning: static property 'icon' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
13 | ///
14 | /// The layout can also be dynamically changed using the `setFeedbackLayout` event.
15 | public struct LayoutName: Codable, ExpressibleByStringLiteral, Identifiable, Hashable, CustomStringConvertible {
| `- note: consider making struct 'LayoutName' conform to the 'Sendable' protocol
16 |
17 | public var id: String
:
60 |
61 | /// The default layout.
62 | public static let icon = LayoutName(builtIn: "$X1")
| |- warning: static property 'icon' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'icon' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 |
64 | /// The layout best suited for custom images with a title.
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutName.swift:65:20: warning: static property 'canvas' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
13 | ///
14 | /// The layout can also be dynamically changed using the `setFeedbackLayout` event.
15 | public struct LayoutName: Codable, ExpressibleByStringLiteral, Identifiable, Hashable, CustomStringConvertible {
| `- note: consider making struct 'LayoutName' conform to the 'Sendable' protocol
16 |
17 | public var id: String
:
63 |
64 | /// The layout best suited for custom images with a title.
65 | public static let canvas = LayoutName(builtIn: "$A0")
| |- warning: static property 'canvas' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'canvas' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |
67 | /// The layout best suited for representing a single value.
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutName.swift:68:20: warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
13 | ///
14 | /// The layout can also be dynamically changed using the `setFeedbackLayout` event.
15 | public struct LayoutName: Codable, ExpressibleByStringLiteral, Identifiable, Hashable, CustomStringConvertible {
| `- note: consider making struct 'LayoutName' conform to the 'Sendable' protocol
16 |
17 | public var id: String
:
66 |
67 | /// The layout best suited for representing a single value.
68 | public static let value = LayoutName(builtIn: "$A1")
| |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'value' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 |
70 | /// The layout best suited for representing a single value range.
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutName.swift:71:20: warning: static property 'indicator' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
13 | ///
14 | /// The layout can also be dynamically changed using the `setFeedbackLayout` event.
15 | public struct LayoutName: Codable, ExpressibleByStringLiteral, Identifiable, Hashable, CustomStringConvertible {
| `- note: consider making struct 'LayoutName' conform to the 'Sendable' protocol
16 |
17 | public var id: String
:
69 |
70 | /// The layout best suited for representing a single value range.
71 | public static let indicator = LayoutName(builtIn: "$B1")
| |- warning: static property 'indicator' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'indicator' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | /// The layout best suited for representing a single value range, where the data can be further explained using color.
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutName.swift:74:20: warning: static property 'gradient' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
13 | ///
14 | /// The layout can also be dynamically changed using the `setFeedbackLayout` event.
15 | public struct LayoutName: Codable, ExpressibleByStringLiteral, Identifiable, Hashable, CustomStringConvertible {
| `- note: consider making struct 'LayoutName' conform to the 'Sendable' protocol
16 |
17 | public var id: String
:
72 |
73 | /// The layout best suited for representing a single value range, where the data can be further explained using color.
74 | public static let gradient = LayoutName(builtIn: "$B2")
| |- warning: static property 'gradient' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gradient' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 |
76 | /// The layout best suited for representing two value ranges.
/host/spi-builder-workspace/Sources/SDPlusLayout/LayoutName.swift:77:20: warning: static property 'doubleIndicator' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
13 | ///
14 | /// The layout can also be dynamically changed using the `setFeedbackLayout` event.
15 | public struct LayoutName: Codable, ExpressibleByStringLiteral, Identifiable, Hashable, CustomStringConvertible {
| `- note: consider making struct 'LayoutName' conform to the 'Sendable' protocol
16 |
17 | public var id: String
:
75 |
76 | /// The layout best suited for representing two value ranges.
77 | public static let doubleIndicator = LayoutName(builtIn: "$C1")
| |- warning: static property 'doubleIndicator' is not concurrency-safe because non-'Sendable' type 'LayoutName' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'doubleIndicator' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | }
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:57:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 | /// A rectangle which fills the whole layout.
57 | static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
| |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
| |- 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
58 | }
59 |
[116/273] Compiling ArgumentParser Tree.swift
[117/273] Compiling ArgumentParser CodingKeyValidator.swift
[118/273] Compiling ArgumentParser NonsenseFlagsValidator.swift
[119/273] Compiling ArgumentParser ParsableArgumentsValidation.swift
[120/273] Compiling ArgumentParser PositionalArgumentsValidator.swift
[121/273] Compiling ArgumentParser UniqueNamesValidator.swift
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:57:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 | /// A rectangle which fills the whole layout.
57 | static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
| |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
| |- 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
58 | }
59 |
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:57:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 | /// A rectangle which fills the whole layout.
57 | static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
| |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
| |- 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
58 | }
59 |
[131/274] Compiling ArgumentParser DumpHelpGenerator.swift
[132/274] Compiling ArgumentParser HelpCommand.swift
[133/274] Compiling ArgumentParser HelpGenerator.swift
[134/274] Compiling ArgumentParser MessageInfo.swift
[135/274] Compiling ArgumentParser UsageGenerator.swift
[136/274] Compiling ArgumentParser CollectionExtensions.swift
[157/274] Compiling ArgumentParser ParsableCommand.swift
[158/274] Compiling ArgumentParser ArgumentDecoder.swift
[159/274] Compiling ArgumentParser ArgumentDefinition.swift
[160/274] Compiling ArgumentParser ArgumentSet.swift
[161/274] Compiling ArgumentParser CommandParser.swift
[162/274] Compiling ArgumentParser InputKey.swift
[167/274] Compiling ArgumentParser EnumerableFlag.swift
[168/274] Compiling ArgumentParser ExpressibleByArgument.swift
[169/274] Compiling ArgumentParser ParsableArguments.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[217/285] Emitting module SwiftSyntax
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[227/285] Compiling SwiftSyntax RawSyntaxNodesC.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[228/285] Compiling SwiftSyntax RawSyntaxNodesD.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[229/285] Compiling SwiftSyntax RawSyntaxNodesEF.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[230/285] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[231/285] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[232/285] Compiling SwiftSyntax RawSyntaxNodesOP.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[233/285] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[234/285] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[235/285] Compiling SwiftSyntax RawSyntaxValidation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[251/285] Compiling SwiftSyntax TokenDiagnostic.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[252/285] Compiling SwiftSyntax TokenSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[253/285] Compiling SwiftSyntax TokenSyntax.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[263/285] Compiling SwiftSyntax SyntaxNodesAB.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[264/285] Compiling SwiftSyntax SyntaxNodesC.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[265/285] Compiling SwiftSyntax SyntaxNodesD.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[266/285] Compiling SwiftSyntax SyntaxNodesEF.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[267/285] Compiling SwiftSyntax SyntaxNodesGHI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[268/285] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[269/285] Compiling SwiftSyntax SyntaxNodesOP.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[270/285] Compiling SwiftSyntax SyntaxNodesQRS.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[271/285] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[272/287] Wrapping AST for SwiftSyntax for debugging
[274/344] Compiling SwiftDiagnostics Message.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[275/345] Compiling SwiftDiagnostics DiagnosticDecorator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[276/345] Emitting module SwiftDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[277/345] Compiling SwiftBasicFormat Syntax+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[278/345] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[279/345] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[280/345] Compiling SwiftDiagnostics Note.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[281/345] Compiling SwiftParser LexemeSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[282/345] Compiling SwiftParser Lexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[283/345] Compiling SwiftBasicFormat InferIndentation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[284/345] Compiling SwiftParser RegexLiteralLexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[285/345] Compiling SwiftParser UnicodeScalarExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[286/345] Compiling SwiftBasicFormat Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[287/345] Compiling SwiftDiagnostics FixIt.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[288/345] Compiling SwiftDiagnostics GroupedDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[289/345] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[290/346] Compiling SwiftParser SwiftParserCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[291/346] Compiling SwiftParser SwiftVersion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[292/346] Compiling SwiftParser SyntaxUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[293/346] Compiling SwiftParser TokenConsumer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[294/346] Compiling SwiftParser TokenPrecedence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[295/351] Wrapping AST for SwiftDiagnostics for debugging
[297/351] Emitting module SwiftBasicFormat
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[298/351] Compiling SwiftBasicFormat BasicFormat.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[299/352] Wrapping AST for SwiftBasicFormat for debugging
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[305/352] Compiling SwiftParser Lookahead.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[306/352] Compiling SwiftParser LoopProgressCondition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[307/352] Compiling SwiftParser Modifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[308/352] Compiling SwiftParser Names.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[309/352] Compiling SwiftParser Nominals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[310/352] Compiling SwiftParser Parameters.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[311/352] Compiling SwiftParser ParseSourceFile.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[312/352] Compiling SwiftParser Parser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[313/352] Compiling SwiftParser TokenSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[314/352] Compiling SwiftParser TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[315/352] Compiling SwiftParser TopLevel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[316/352] Compiling SwiftParser TriviaParser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[317/352] Compiling SwiftParser Types.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[318/352] Compiling SwiftParser Patterns.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[319/352] Compiling SwiftParser Recovery.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[320/352] Compiling SwiftParser Specifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[321/352] Compiling SwiftParser Statements.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[322/352] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[323/352] Compiling SwiftParser StringLiterals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[324/352] Compiling SwiftParser Attributes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[325/352] Compiling SwiftParser Availability.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[326/352] Compiling SwiftParser CharacterInfo.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[327/352] Compiling SwiftParser CollectionNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[328/352] Compiling SwiftParser Declarations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[329/352] Compiling SwiftParser Directives.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[330/352] Emitting module SwiftParser
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[331/352] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[332/352] Compiling SwiftParser Expressions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[333/352] Compiling SwiftParser IncrementalParseTransition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[334/352] Compiling SwiftParser IsValidIdentifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[335/352] Compiling SwiftParser Cursor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[336/352] Compiling SwiftParser Lexeme.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[337/352] Compiling SwiftParser ExperimentalFeatures.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[338/352] Compiling SwiftParser IsLexerClassified.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[339/352] Compiling SwiftParser LayoutNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[340/352] Compiling SwiftParser Parser+TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[341/352] Compiling SwiftParser TokenSpecStaticMembers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[342/353] Wrapping AST for SwiftParser for debugging
[344/376] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[345/377] Compiling SwiftOperators PrecedenceGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[346/377] Compiling SwiftOperators PrecedenceGraph.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[347/378] Compiling SwiftOperators Operator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[348/378] Compiling SwiftOperators OperatorError+Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[349/378] Compiling SwiftOperators OperatorTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[350/378] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[351/378] Emitting module SwiftOperators
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[352/378] Compiling SwiftOperators OperatorTable+Semantics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[353/378] Compiling SwiftOperators SyntaxSynthesis.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[354/378] Compiling SwiftOperators OperatorTable+Folding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[355/378] Compiling SwiftOperators OperatorError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[356/378] Compiling SwiftOperators OperatorTable+Defaults.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[357/379] Wrapping AST for SwiftOperators for debugging
[359/379] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[360/379] Compiling SwiftParserDiagnostics Utils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[361/379] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[362/379] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[363/379] Compiling SwiftParserDiagnostics PresenceUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[366/379] Emitting module SwiftParserDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[369/379] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[370/379] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[371/380] Wrapping AST for SwiftParserDiagnostics for debugging
[373/395] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[374/395] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[375/395] Emitting module SwiftSyntaxBuilder
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[376/396] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[377/396] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[378/396] Compiling SwiftSyntaxBuilder BuildableNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[379/396] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[380/396] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[381/396] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[382/396] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[383/396] Compiling SwiftSyntaxBuilder Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[384/396] Compiling SwiftSyntaxBuilder ListBuilder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[385/396] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[386/396] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[387/396] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[388/396] Compiling SwiftSyntaxBuilder ResultBuilders.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[389/397] Wrapping AST for SwiftSyntaxBuilder for debugging
[391/414] Compiling SwiftSyntaxMacros MemberMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[392/414] Compiling SwiftSyntaxMacros PeerMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[393/414] Compiling SwiftSyntaxMacros CodeItemMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[394/414] Compiling SwiftSyntaxMacros DeclarationMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[395/414] Compiling SwiftSyntaxMacros Macro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[396/414] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[397/416] Compiling SwiftSyntaxMacros FreestandingMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[398/416] Compiling SwiftSyntaxMacros Macro+Format.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[399/416] Compiling SwiftSyntaxMacros AccessorMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[400/416] Compiling SwiftSyntaxMacros AttachedMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[401/416] Compiling SwiftSyntaxMacros BodyMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[402/416] Compiling SwiftSyntaxMacros ExpressionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[403/416] Compiling SwiftSyntaxMacros ExtensionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[404/416] Emitting module SwiftSyntaxMacros
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[405/416] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[406/416] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[407/416] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[408/416] Compiling SwiftSyntaxMacros PreambleMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[409/416] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[410/417] Wrapping AST for SwiftSyntaxMacros for debugging
[412/426] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[413/427] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[414/427] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[415/427] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[416/427] Emitting module SwiftSyntaxMacroExpansion
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[417/427] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[418/427] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[419/427] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[420/427] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[421/427] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[422/428] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[424/440] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[425/440] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[426/440] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[427/440] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[428/440] Compiling SwiftCompilerPluginMessageHandling Macros.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[429/441] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[430/441] Emitting module SwiftCompilerPluginMessageHandling
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[431/441] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[432/441] Compiling SwiftCompilerPluginMessageHandling JSON.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[433/441] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[434/441] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[435/441] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[436/441] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[437/442] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[439/444] Emitting module SwiftCompilerPlugin
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[440/444] Compiling SwiftCompilerPlugin CompilerPlugin.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[441/445] Wrapping AST for SwiftCompilerPlugin for debugging
[443/450] Compiling StreamDeckMacros Plugin.swift
[444/450] Compiling StreamDeckMacros KeyMacros.swift
[445/450] Compiling StreamDeckMacros SharedKeyMacro.swift
[446/450] Emitting module StreamDeckMacros
[447/450] Compiling StreamDeckMacros EntryMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:41:49: warning: 'as' is deprecated: This cast will always succeed
39 | static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
40 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
41 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
42 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
43 | else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:41:91: warning: 'as' is deprecated: This cast will always succeed
39 | static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
40 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
41 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
42 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
43 | else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:53:49: warning: 'as' is deprecated: This cast will always succeed
51 | static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
52 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
53 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
54 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
55 | let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:53:91: warning: 'as' is deprecated: This cast will always succeed
51 | static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
52 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
53 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
54 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
55 | let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:10: warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
52 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
53 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
54 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
| `- warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
55 | let initializer = patternBinding.initializer
56 | else {
[448/451] Wrapping AST for StreamDeckMacros for debugging
[449/451] Write Objects.LinkFileList
[450/451] Linking StreamDeckMacros-tool
[452/531] Compiling StreamDeck PluginOS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[453/531] Compiling StreamDeck PluginProfile.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[454/531] Compiling StreamDeck PluginSoftware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[455/531] Compiling StreamDeck RotaryEncoder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[456/531] Compiling StreamDeck TriggerDescription.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[462/541] Compiling StreamDeck Hardware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[463/541] Compiling StreamDeck PluginAction.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[464/541] Compiling StreamDeck PluginActionState.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[465/541] Compiling StreamDeck PluginInfo.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[466/541] Compiling StreamDeck PluginManifest.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[467/541] Compiling StreamDeck EnvironmentValues.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[468/541] Compiling StreamDeck EnvironmentWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[469/541] Compiling StreamDeck ApplicationsToMonitor.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[470/541] Compiling StreamDeck Coordinates.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[471/541] Compiling StreamDeck Fonts.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[472/541] Compiling StreamDeck SPDI.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[473/541] Compiling StreamDeck GlobalSettings.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[474/541] Compiling StreamDeck GlobalSettingsKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[475/541] Compiling StreamDeck SettingsWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[476/541] Compiling StreamDeck State.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[477/541] Compiling StreamDeck Action+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[478/541] Compiling StreamDeck Action+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[479/541] Compiling StreamDeck Action.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[480/541] Compiling StreamDeck LongPress.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[481/541] Compiling StreamDeck PluginCommunication.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[482/541] Compiling StreamDeck StreamDeckError.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[483/541] Compiling StreamDeck SDPlugin+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[484/541] Compiling StreamDeck SDPlugin+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[485/541] Compiling StreamDeck SDPlugin+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[486/541] Compiling StreamDeck StreamDeckPlugin.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[487/541] Compiling StreamDeck ActionControllerRegistry.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[488/541] Compiling StreamDeck EnvironmentKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[489/541] Compiling StreamDeck ActionBuilder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[490/541] Compiling StreamDeck ExportCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[491/541] Compiling StreamDeck PluginCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[492/541] Compiling StreamDeck StreamDeckCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[493/541] Compiling StreamDeck StreamDeckKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[494/541] Compiling StreamDeck EventProtocols.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[495/541] Compiling StreamDeck Events.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[496/541] Compiling StreamDeck CharSet+DNS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[497/541] Compiling StreamDeck NSImage+Base64.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[498/541] Compiling StreamDeck URL+Argument.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[499/541] Compiling StreamDeck SettingsMacros.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[500/541] Compiling StreamDeck Action+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[517/541] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:a7bfd71e9384436264431030299dc8a2d42d0664a168cfa1a5dd84c9bc592ccf
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
[3/3] Compiling plugin GenerateManual
[4/4] Compiling plugin GenerateDoccReference
Building for debugging...
[4/23] Write swift-version-24593BA9C3E375BF.txt
[6/50] Emitting module SwiftSyntax509
[7/52] Compiling SwiftSyntax509 Empty.swift
[8/53] Compiling SwiftSyntax600 Empty.swift
[10/69] Emitting module SwiftSyntax600
[11/70] Compiling SwiftSyntax510 Empty.swift
[12/70] Emitting module SwiftSyntax510
[13/71] Compiling SwiftSyntax601 Empty.swift
[14/71] Emitting module SwiftSyntax601
[18/69] Compiling SDPlusLayout LayoutItem.swift
[19/69] Compiling SDPlusLayout LayoutItemKey.swift
[20/71] Compiling SDPlusLayout LayoutName.swift
[21/71] Compiling SDPlusLayout LayoutSettings.swift
[22/71] Compiling SDPlusLayout Clamped.swift
[23/71] Compiling SDPlusLayout Layout.swift
[24/73] Emitting module ArgumentParserToolInfo
[25/73] Compiling ArgumentParserToolInfo ToolInfo.swift
[30/73] Emitting module SDPlusLayout
[32/74] Compiling SDPlusLayout ModifiedItem.swift
[33/74] Compiling SDPlusLayout Properties.swift
[34/128] Compiling SwiftSyntax TokenSequence.swift
[35/128] Compiling SwiftSyntax TokenSyntax.swift
[36/139] Compiling SwiftSyntax SyntaxCollections.swift
[37/139] Compiling SwiftSyntax SyntaxIdentifier.swift
[38/146] Emitting module SDPlusLayout
[39/184] Compiling ArgumentParser BashCompletionsGenerator.swift
[40/184] Compiling ArgumentParser CompletionsGenerator.swift
[41/184] Compiling ArgumentParser Flag.swift
[42/184] Compiling ArgumentParser NameSpecification.swift
[43/184] Compiling ArgumentParser Option.swift
[44/184] Compiling ArgumentParser OptionGroup.swift
[45/184] Compiling ArgumentParser ArgumentVisibility.swift
[46/184] Compiling ArgumentParser CompletionKind.swift
[47/184] Compiling ArgumentParser Errors.swift
[48/184] Compiling ArgumentParser FishCompletionsGenerator.swift
[49/184] Compiling ArgumentParser ZshCompletionsGenerator.swift
[50/184] Compiling ArgumentParser Argument.swift
[51/185] Emitting module ArgumentParserToolInfo
[52/185] Compiling ArgumentParserToolInfo ToolInfo.swift
[57/232] Emitting module ArgumentParser
[58/238] Compiling ArgumentParser ArgumentVisibility.swift
[59/238] Compiling ArgumentParser CompletionKind.swift
[60/238] Compiling ArgumentParser Errors.swift
[61/238] Compiling ArgumentParser Option.swift
[62/238] Compiling ArgumentParser OptionGroup.swift
[63/238] Compiling ArgumentParser BashCompletionsGenerator.swift
[65/239] Compiling ArgumentParser AsyncParsableCommand.swift
[66/239] Compiling ArgumentParser CommandConfiguration.swift
[67/239] Compiling ArgumentParser CommandGroup.swift
[68/239] Compiling ArgumentParser EnumerableFlag.swift
[69/239] Compiling ArgumentParser ExpressibleByArgument.swift
[70/239] Compiling ArgumentParser ParsableArguments.swift
[71/239] Compiling ArgumentParser DumpHelpGenerator.swift
[72/239] Compiling ArgumentParser HelpCommand.swift
[73/239] Compiling ArgumentParser HelpGenerator.swift
[74/239] Compiling ArgumentParser MessageInfo.swift
[75/239] Compiling ArgumentParser UsageGenerator.swift
[76/239] Compiling ArgumentParser CollectionExtensions.swift
[77/245] Compiling ArgumentParser Foundation.swift
[78/245] Compiling ArgumentParser Mutex.swift
[79/245] Compiling ArgumentParser Platform.swift
[80/245] Compiling ArgumentParser SequenceExtensions.swift
[81/245] Compiling ArgumentParser StringExtensions.swift
[82/245] Compiling ArgumentParser SwiftExtensions.swift
[83/245] Emitting module ArgumentParser
[84/245] Compiling ArgumentParser Tree.swift
[85/245] Compiling ArgumentParser CodingKeyValidator.swift
[86/245] Compiling ArgumentParser NonsenseFlagsValidator.swift
[87/245] Compiling ArgumentParser ParsableArgumentsValidation.swift
[88/245] Compiling ArgumentParser PositionalArgumentsValidator.swift
[89/245] Compiling ArgumentParser UniqueNamesValidator.swift
[90/245] Compiling ArgumentParser InputOrigin.swift
[91/245] Compiling ArgumentParser Name.swift
[92/245] Compiling ArgumentParser Parsed.swift
[93/245] Compiling ArgumentParser ParsedValues.swift
[94/245] Compiling ArgumentParser ParserError.swift
[95/245] Compiling ArgumentParser SplitArguments.swift
[99/245] Compiling ArgumentParser Flag.swift
[100/245] Compiling ArgumentParser NameSpecification.swift
[110/245] Compiling ArgumentParser CompletionsGenerator.swift
[111/245] Compiling ArgumentParser FishCompletionsGenerator.swift
[112/245] Compiling ArgumentParser ZshCompletionsGenerator.swift
[113/245] Compiling ArgumentParser Argument.swift
[114/245] Compiling ArgumentParser ArgumentDiscussion.swift
[115/245] Compiling ArgumentParser ArgumentHelp.swift
[127/245] Compiling ArgumentParser ParentCommand.swift
[128/245] Compiling ArgumentParser ParsableCommand.swift
[129/245] Compiling ArgumentParser ArgumentDecoder.swift
[130/245] Compiling ArgumentParser ArgumentDefinition.swift
[131/245] Compiling ArgumentParser ArgumentSet.swift
[132/245] Compiling ArgumentParser CommandParser.swift
[133/245] Compiling ArgumentParser InputKey.swift
[176/247] Compiling SwiftSyntax Tokens.swift
[177/247] Compiling SwiftSyntax TriviaPieces.swift
[178/247] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[179/256] Compiling SwiftSyntax RawSyntaxNodesC.swift
[180/256] Compiling SwiftSyntax RawSyntaxNodesD.swift
[181/256] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[182/256] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[183/256] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[184/256] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[185/256] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[186/256] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[187/256] Compiling SwiftSyntax RawSyntaxValidation.swift
[206/256] Emitting module SwiftSyntax
[234/256] Compiling SwiftSyntax SyntaxNodesAB.swift
[235/256] Compiling SwiftSyntax SyntaxNodesC.swift
[236/256] Compiling SwiftSyntax SyntaxNodesD.swift
[237/256] Compiling SwiftSyntax SyntaxNodesEF.swift
[238/256] Compiling SwiftSyntax SyntaxNodesGHI.swift
[239/256] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[240/256] Compiling SwiftSyntax SyntaxNodesOP.swift
[241/256] Compiling SwiftSyntax SyntaxNodesQRS.swift
[242/256] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[244/304] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[245/314] Compiling SwiftDiagnostics Message.swift
[246/315] Compiling SwiftBasicFormat Syntax+Extensions.swift
[247/315] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[248/315] Compiling SwiftDiagnostics FixIt.swift
[249/315] Emitting module SwiftDiagnostics
[250/315] Compiling SwiftDiagnostics Note.swift
[251/315] Compiling SwiftBasicFormat Indenter.swift
[252/315] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[253/315] Compiling SwiftBasicFormat InferIndentation.swift
[254/315] Compiling SwiftBasicFormat BasicFormat.swift
[255/315] Emitting module SwiftBasicFormat
[256/315] Compiling SwiftParser RegexLiteralLexer.swift
[257/315] Compiling SwiftParser UnicodeScalarExtensions.swift
[258/315] Compiling SwiftParser LexemeSequence.swift
[259/315] Compiling SwiftParser Lexer.swift
[260/315] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[261/315] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[268/315] Compiling SwiftParser Lookahead.swift
[269/315] Compiling SwiftParser LoopProgressCondition.swift
[270/315] Compiling SwiftParser Modifiers.swift
[271/315] Compiling SwiftParser Names.swift
[272/315] Compiling SwiftParser Nominals.swift
[273/315] Compiling SwiftParser Parameters.swift
[274/315] Compiling SwiftParser ParseSourceFile.swift
[275/315] Compiling SwiftParser Parser.swift
[276/320] Compiling SwiftParser Patterns.swift
[277/320] Compiling SwiftParser Recovery.swift
[278/320] Compiling SwiftParser Specifiers.swift
[279/320] Compiling SwiftParser Statements.swift
[280/320] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[281/320] Compiling SwiftParser StringLiterals.swift
[282/320] Compiling SwiftParser SwiftParserCompatibility.swift
[283/320] Compiling SwiftParser SwiftVersion.swift
[284/320] Compiling SwiftParser SyntaxUtils.swift
[285/320] Compiling SwiftParser TokenConsumer.swift
[286/320] Compiling SwiftParser TokenPrecedence.swift
[287/320] Compiling SwiftParser TokenSpec.swift
[288/320] Compiling SwiftParser TokenSpecSet.swift
[289/320] Compiling SwiftParser TopLevel.swift
[290/320] Compiling SwiftParser TriviaParser.swift
[291/320] Compiling SwiftParser Types.swift
[292/320] Compiling SwiftParser Attributes.swift
[293/320] Compiling SwiftParser Availability.swift
[294/320] Compiling SwiftParser CharacterInfo.swift
[295/320] Compiling SwiftParser CollectionNodes+Parsable.swift
[296/320] Compiling SwiftParser Declarations.swift
[297/320] Compiling SwiftParser Directives.swift
[298/320] Emitting module SwiftParser
[299/320] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[300/320] Compiling SwiftParser Expressions.swift
[301/320] Compiling SwiftParser IncrementalParseTransition.swift
[302/320] Compiling SwiftParser IsValidIdentifier.swift
[303/320] Compiling SwiftParser Cursor.swift
[304/320] Compiling SwiftParser Lexeme.swift
[305/320] Compiling SwiftParser ExperimentalFeatures.swift
[306/320] Compiling SwiftParser IsLexerClassified.swift
[307/320] Compiling SwiftParser LayoutNodes+Parsable.swift
[308/320] Compiling SwiftParser Parser+TokenSpecSet.swift
[309/320] Compiling SwiftParser TokenSpecStaticMembers.swift
[311/343] Compiling SwiftOperators PrecedenceGroup.swift
[312/344] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[313/345] Compiling SwiftOperators OperatorTable.swift
[314/345] Compiling SwiftOperators PrecedenceGraph.swift
[315/345] Emitting module SwiftOperators
[316/345] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[317/345] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[318/345] Compiling SwiftOperators OperatorTable+Folding.swift
[319/345] Compiling SwiftOperators SyntaxSynthesis.swift
[320/345] Compiling SwiftParserDiagnostics MissingNodesError.swift
[321/345] Compiling SwiftParserDiagnostics MissingTokenError.swift
[322/345] Compiling SwiftOperators OperatorTable+Semantics.swift
[323/346] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[325/345] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[326/345] Compiling SwiftParserDiagnostics Utils.swift
[327/345] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[328/345] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[329/345] Compiling SwiftParserDiagnostics PresenceUtils.swift
[330/345] Emitting module SwiftParserDiagnostics
[335/345] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[336/345] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[338/360] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[339/360] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[340/361] Compiling SwiftSyntaxBuilder Indenter.swift
[341/361] Compiling SwiftSyntaxBuilder ListBuilder.swift
[342/361] Emitting module SwiftSyntaxBuilder
[343/361] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[344/361] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[345/361] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[346/361] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[347/361] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[348/361] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[349/361] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[350/361] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[351/361] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[352/361] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[353/361] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[355/378] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[356/378] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[357/380] Compiling SwiftSyntaxMacros MemberMacro.swift
[358/380] Compiling SwiftSyntaxMacros PeerMacro.swift
[359/380] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[360/380] Compiling SwiftSyntaxMacros Macro+Format.swift
[361/380] Compiling SwiftSyntaxMacros AccessorMacro.swift
[362/380] Compiling SwiftSyntaxMacros AttachedMacro.swift
[363/380] Compiling SwiftSyntaxMacros BodyMacro.swift
[364/380] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[365/380] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[366/380] Compiling SwiftSyntaxMacros Macro.swift
[367/380] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[368/380] Emitting module SwiftSyntaxMacros
[369/380] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[370/380] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[371/380] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[372/380] Compiling SwiftSyntaxMacros PreambleMacro.swift
[373/380] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[375/389] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[376/390] Emitting module SwiftSyntaxMacroExpansion
[377/390] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[378/390] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[379/390] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[380/390] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[381/390] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[382/390] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[383/390] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[384/390] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[386/402] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[387/403] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[388/403] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[389/403] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[390/403] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[391/403] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[392/403] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[393/403] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[394/403] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[395/403] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[396/403] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[397/403] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[398/403] Emitting module SwiftCompilerPluginMessageHandling
[400/405] Emitting module SwiftCompilerPlugin
[401/405] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[403/410] Compiling StreamDeckMacros Plugin.swift
[404/410] Emitting module StreamDeckMacros
[405/410] Compiling StreamDeckMacros KeyMacros.swift
[406/410] Compiling StreamDeckMacros SharedKeyMacro.swift
[407/410] Compiling StreamDeckMacros EntryMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:41:49: warning: 'as' is deprecated: This cast will always succeed
39 | static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
40 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
41 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
42 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
43 | else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:41:91: warning: 'as' is deprecated: This cast will always succeed
39 | static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
40 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
41 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
42 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
43 | else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:53:49: warning: 'as' is deprecated: This cast will always succeed
51 | static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
52 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
53 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
54 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
55 | let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:53:91: warning: 'as' is deprecated: This cast will always succeed
51 | static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
52 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
53 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
| `- warning: 'as' is deprecated: This cast will always succeed
54 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
55 | let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:10: warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
52 | guard let variableDecl = declaration.as(VariableDeclSyntax.self),
53 | let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
54 | let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
| `- warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
55 | let initializer = patternBinding.initializer
56 | else {
[408/410] Write Objects.LinkFileList
[409/410] Linking StreamDeckMacros-tool
[411/490] Compiling StreamDeck PluginOS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[412/490] Compiling StreamDeck PluginProfile.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[413/490] Compiling StreamDeck PluginSoftware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[414/490] Compiling StreamDeck RotaryEncoder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[415/490] Compiling StreamDeck TriggerDescription.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[416/490] Compiling StreamDeck EnvironmentValues.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[417/490] Compiling StreamDeck EnvironmentWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[418/490] Compiling StreamDeck ApplicationsToMonitor.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[419/490] Compiling StreamDeck Coordinates.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[420/490] Compiling StreamDeck Fonts.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[421/490] Compiling StreamDeck Hardware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[422/495] Compiling StreamDeck SDPlugin+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[423/495] Compiling StreamDeck SDPlugin+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[424/495] Compiling StreamDeck StreamDeckPlugin.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[425/495] Compiling StreamDeck ActionControllerRegistry.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[426/495] Compiling StreamDeck EnvironmentKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[427/495] Compiling StreamDeck ActionBuilder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[428/495] Compiling StreamDeck ExportCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[429/495] Compiling StreamDeck PluginCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[430/495] Compiling StreamDeck StreamDeckCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[431/495] Compiling StreamDeck StreamDeckKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[432/495] Compiling StreamDeck EventProtocols.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[439/500] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[445/500] Compiling StreamDeck SDPlugin+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[452/500] Compiling StreamDeck PluginAction.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[453/500] Compiling StreamDeck PluginActionState.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[454/500] Compiling StreamDeck PluginInfo.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[455/500] Compiling StreamDeck PluginManifest.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[466/500] Compiling StreamDeck Events.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[467/500] Compiling StreamDeck CharSet+DNS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[468/500] Compiling StreamDeck NSImage+Base64.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[469/500] Compiling StreamDeck URL+Argument.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[470/500] Compiling StreamDeck SettingsMacros.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[471/500] Compiling StreamDeck Action+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[472/500] Compiling StreamDeck Action+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[473/500] Compiling StreamDeck Action+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[474/500] Compiling StreamDeck Action.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[475/500] Compiling StreamDeck LongPress.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[476/500] Compiling StreamDeck PluginCommunication.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[477/500] Compiling StreamDeck StreamDeckError.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[478/500] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[491/500] Compiling StreamDeck SPDI.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[492/500] Compiling StreamDeck GlobalSettings.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[493/500] Compiling StreamDeck GlobalSettingsKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[494/500] Compiling StreamDeck SettingsWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[495/500] Compiling StreamDeck State.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
8 | import Foundation
9 | import ArgumentParser
10 | import OSLog
| `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
BUILD FAILURE 6.1 linux