The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of DecreeServices, reference 4.4.1 (4f9a08), with Swift 6.1 for watchOS using Xcode 16.3 on 26 Apr 2025 12:08:06 UTC.

Swift 6 data race errors: 48

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme DecreeServices -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

        public static var shared = AppStore()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AppStore()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AppStore()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var shared = FreshDesk()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    public static var shared = FreshDesk()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static var shared = FreshDesk()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shared = FreshDesk()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formData
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formData
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formData
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = Analytics()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = Analytics()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = Analytics()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = Analytics()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: warning: static property 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var faked: (base: Date, started: Date)?
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
    private static var faked: (base: Date, started: Date)?
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: add '@MainActor' to make static property 'faked' part of global actor 'MainActor'
    private static var faked: (base: Date, started: Date)?
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var faked: (base: Date, started: Date)?
                       ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ DecreeServices (in target 'DecreeServices' from project 'DecreeServices')
EmitSwiftModule normal arm64 (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.head
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.head
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.head
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.put
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.put
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.put
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.delete
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.delete
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.delete
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = AppStore()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = AppStore()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AppStore()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AppStore()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var shared = FreshDesk()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    public static var shared = FreshDesk()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static var shared = FreshDesk()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shared = FreshDesk()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formData
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formData
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formData
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = Analytics()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = Analytics()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = Analytics()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = Analytics()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: warning: static property 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var faked: (base: Date, started: Date)?
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
    private static var faked: (base: Date, started: Date)?
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: add '@MainActor' to make static property 'faked' part of global actor 'MainActor'
    private static var faked: (base: Date, started: Date)?
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var faked: (base: Date, started: Date)?
                       ^
    nonisolated(unsafe)
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CryptoSwift.o normal arm64\ armv7k\ arm64_32 (in target 'CryptoSwift' from project 'CryptoSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CryptoSwift
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64/Binary/CryptoSwift.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/armv7k/Binary/CryptoSwift.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64_32/Binary/CryptoSwift.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CryptoSwift.o
SwiftDriverJobDiscovery normal armv7k Compiling Authorization.swift, AuthorizationRequirement.swift, DecreeError.swift, DecreeErrorDescribable.swift (in target 'Decree' from project 'Decree')
SwiftCompile normal armv7k Compiling\ TestableDate.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: warning: static property 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var faked: (base: Date, started: Date)?
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
    private static var faked: (base: Date, started: Date)?
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: add '@MainActor' to make static property 'faked' part of global actor 'MainActor'
    private static var faked: (base: Date, started: Date)?
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var faked: (base: Date, started: Date)?
                       ^
    nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ AWSS3.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.head
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.head
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.head
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.put
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.put
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.put
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.delete
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.delete
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.delete
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling WebServiceMock.swift, DecreeRequest.swift, DispatchQueue+Async.swift, Endpoint+PrivateMakeRequest.swift (in target 'Decree' from project 'Decree')
SwiftCompile normal arm64_32 Compiling\ GoogleAnalytics.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = Analytics()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = Analytics()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = Analytics()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = Analytics()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling WebService+MakeRequest.swift, WebServiceMock+HandleRequest.swift, WebService.swift (in target 'Decree' from project 'Decree')
SwiftCompile normal armv7k Compiling\ AWSS3+Mocking.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling WebService+MakeRequest.swift, WebServiceMock+HandleRequest.swift, WebService.swift (in target 'Decree' from project 'Decree')
SwiftCompile normal armv7k Compiling\ GoogleAnalytics.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = Analytics()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = Analytics()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = Analytics()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = Analytics()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AppleAppStore.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = AppStore()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = AppStore()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AppStore()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AppStore()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriverJobDiscovery normal arm64 Compiling WebServiceMock.swift, DecreeRequest.swift, DispatchQueue+Async.swift, Endpoint+PrivateMakeRequest.swift (in target 'Decree' from project 'Decree')
SwiftCompile normal arm64_32 Compiling\ AWSS3.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.head
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.head
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.head
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.put
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.put
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.put
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.delete
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.delete
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.delete
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Authorization.swift, AuthorizationRequirement.swift, DecreeError.swift, DecreeErrorDescribable.swift (in target 'Decree' from project 'Decree')
SwiftCompile normal arm64 Compiling\ GoogleAnalytics.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = Analytics()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = Analytics()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = Analytics()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = Analytics()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/GoogleAnalytics.swift:44:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formURLEncoded
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Emitting module for DecreeServices (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriver\ Compilation\ Requirements DecreeServices normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DecreeServices -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for DecreeServices (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriver\ Compilation\ Requirements DecreeServices normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DecreeServices -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftmodule (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftdoc (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.abi.json (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64_32-apple-watchos.abi.json
SwiftDriverJobDiscovery normal armv7k Emitting module for DecreeServices (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriver\ Compilation\ Requirements DecreeServices normal armv7k com.apple.xcode.tools.swift.compiler (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DecreeServices -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftmodule (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftdoc (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftmodule (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/DecreeServices-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices-Swift.h (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/DecreeServices-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftdoc (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.abi.json (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.abi.json (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftsourceinfo (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftsourceinfo (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftsourceinfo (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ AWSS3+Private.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:125:71: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: "AWS4\(self.secretKey)".bytes, variant: .sha256)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:130:82: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateKey(dateString: dateString), variant: .sha256)
                                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:135:88: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateRegionKey(dateString: dateString), variant: .sha256)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:141:95: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateRegionServiceKey(dateString: dateString), variant: .sha256)
                                                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:146:85: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.signingKey(dateString: dateString), variant: .sha256)
                                                                                    ^
SwiftCompile normal arm64_32 Compiling\ AppleAppStore.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = AppStore()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = AppStore()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AppStore()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AppStore()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ AppleAppStore.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = AppStore()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = AppStore()
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AppStore()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AppStore()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AppleAppStore.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 Compiling\ AWSS3+Mocking.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Session.swift, Endpoint+MakeRequest.swift, Endpoint.swift, KeyValueEncoder.swift (in target 'Decree' from project 'Decree')
SwiftCompile normal arm64 Compiling\ AWSS3+Private.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:125:71: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: "AWS4\(self.secretKey)".bytes, variant: .sha256)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:130:82: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateKey(dateString: dateString), variant: .sha256)
                                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:135:88: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateRegionKey(dateString: dateString), variant: .sha256)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:141:95: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateRegionServiceKey(dateString: dateString), variant: .sha256)
                                                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:146:85: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.signingKey(dateString: dateString), variant: .sha256)
                                                                                    ^
SwiftDriverJobDiscovery normal arm64_32 Compiling GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 Compiling\ AWSS3.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:37:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.head
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.head
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:49:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.head
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.put
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.put
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:61:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.put
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:64:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let method = Method.delete
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
            public static let method = Method.delete
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:76:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let method = Method.delete
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: warning: static property 'outputFormat' is not concurrency-safe because non-'Sendable' type 'OutputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let outputFormat = OutputFormat.XML
                              ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/OutputFormat.swift:9:13: note: enum 'OutputFormat' does not conform to the 'Sendable' protocol
public enum OutputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: note: add '@MainActor' to make static property 'outputFormat' part of global actor 'MainActor'
            public static let outputFormat = OutputFormat.XML
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:78:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let outputFormat = OutputFormat.XML
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3.swift:120:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var shared = AWS.S3(region: "us-west1", bucket: "default", accessKey: "", secretKey: "")
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 Compiling\ FreshDesk.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var shared = FreshDesk()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    public static var shared = FreshDesk()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static var shared = FreshDesk()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shared = FreshDesk()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formData
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formData
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formData
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal armv7k Compiling\ FreshDesk.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var shared = FreshDesk()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    public static var shared = FreshDesk()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static var shared = FreshDesk()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shared = FreshDesk()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formData
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formData
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formData
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling GoogleAnalytics.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 Compiling\ AWSS3+Mocking.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 Compiling\ TestableDate.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: warning: static property 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var faked: (base: Date, started: Date)?
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
    private static var faked: (base: Date, started: Date)?
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: add '@MainActor' to make static property 'faked' part of global actor 'MainActor'
    private static var faked: (base: Date, started: Date)?
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var faked: (base: Date, started: Date)?
                       ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 Compiling\ FreshDesk.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var shared = FreshDesk()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    public static var shared = FreshDesk()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static var shared = FreshDesk()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shared = FreshDesk()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: warning: static property 'inputFormat' is not concurrency-safe because non-'Sendable' type 'InputFormat' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let inputFormat = InputFormat.formData
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/InputFormat.swift:9:13: note: enum 'InputFormat' does not conform to the 'Sendable' protocol
public enum InputFormat {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Decree'
import Decree
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: add '@MainActor' to make static property 'inputFormat' part of global actor 'MainActor'
        public static let inputFormat = InputFormat.formData
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let inputFormat = InputFormat.formData
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'Method' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let method = Method.post
                          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree/Sources/Decree/Basic Types/Method.swift:11:13: note: enum 'Method' does not conform to the 'Sendable' protocol
public enum Method {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
        public static let method = Method.post
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/FreshDesk.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let method = Method.post
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 Compiling\ TestableDate.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: warning: static property 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var faked: (base: Date, started: Date)?
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
    private static var faked: (base: Date, started: Date)?
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: add '@MainActor' to make static property 'faked' part of global actor 'MainActor'
    private static var faked: (base: Date, started: Date)?
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/TestableDate.swift:11:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var faked: (base: Date, started: Date)?
                       ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 Compiling\ AWSS3+Private.swift /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:125:71: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: "AWS4\(self.secretKey)".bytes, variant: .sha256)
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:130:82: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateKey(dateString: dateString), variant: .sha256)
                                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:135:88: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateRegionKey(dateString: dateString), variant: .sha256)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:141:95: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.dateRegionServiceKey(dateString: dateString), variant: .sha256)
                                                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/DecreeServices/Private/AWSS3+Private.swift:146:85: warning: 'sha256' is deprecated: Use sha2(variant) instead.
        return try HMAC(key: try self.signingKey(dateString: dateString), variant: .sha256)
                                                                                    ^
SwiftDriverJobDiscovery normal arm64 Compiling AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriver\ Compilation Decree normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Decree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriver\ Compilation Decree normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Decree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation Decree normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Decree -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ExtractAppIntentsMetadata (in target 'CryptoSwift' from project 'CryptoSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CryptoSwift
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CryptoSwift --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 4.0 --bundle-identifier cryptoswift.CryptoSwift --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CryptoSwift.appintents --target-triple arm64-apple-watchos4.0 --target-triple armv7k-apple-watchos4.0 --target-triple arm64_32-apple-watchos4.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CryptoSwift.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/armv7k/CryptoSwift_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64_32/CryptoSwift_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/armv7k/CryptoSwift.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64_32/CryptoSwift.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/CryptoSwift.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/CryptoSwift.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/armv7k/CryptoSwift.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-watchos/CryptoSwift.build/Objects-normal/arm64_32/CryptoSwift.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 05:08:04.931 appintentsmetadataprocessor[998:5609] Starting appintentsmetadataprocessor export
2025-04-26 05:08:04.979 appintentsmetadataprocessor[998:5609] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal armv7k Compiling AppleAppStore.swift (in target 'DecreeServices' from project 'DecreeServices')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/XMLCoder.o (in target 'XMLCoder' from project 'XMLCoder')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/XMLCoder
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/XMLCoder.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Binary/Decree.o normal armv7k (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Binary/Decree.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Binary/Decree.o normal arm64_32 (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Binary/Decree.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Binary/Decree.o normal arm64 (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Binary/Decree.o
SwiftDriverJobDiscovery normal arm64 Compiling AWSS3.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriverJobDiscovery normal arm64_32 Compiling AWSS3+Mocking.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriverJobDiscovery normal arm64_32 Compiling TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriverJobDiscovery normal arm64 Compiling TestableDate.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriverJobDiscovery normal arm64_32 Compiling FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CryptoSwift.o (in target 'CryptoSwift' from project 'CryptoSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CryptoSwift
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CryptoSwift.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Decree.o normal arm64\ armv7k\ arm64_32 (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Binary/Decree.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Binary/Decree.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Binary/Decree.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Decree.o
ExtractAppIntentsMetadata (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Decree --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 4.0 --bundle-identifier decree.Decree --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Decree.appintents --target-triple arm64-apple-watchos4.0 --target-triple armv7k-apple-watchos4.0 --target-triple arm64_32-apple-watchos4.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Decree.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Decree.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Decree.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64/Decree.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/armv7k/Decree.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Decree.build/Debug-watchos/Decree.build/Objects-normal/arm64_32/Decree.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 05:08:05.056 appintentsmetadataprocessor[1006:5655] Starting appintentsmetadataprocessor export
2025-04-26 05:08:05.092 appintentsmetadataprocessor[1006:5655] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal armv7k Compiling FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriver\ Compilation DecreeServices normal armv7k com.apple.xcode.tools.swift.compiler (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DecreeServices -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Decree.o (in target 'Decree' from project 'Decree')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Decree
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Decree.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/Binary/DecreeServices.o normal armv7k (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/Binary/DecreeServices.o
SwiftDriverJobDiscovery normal arm64 Compiling FreshDesk.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriver\ Compilation DecreeServices normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DecreeServices -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/Binary/DecreeServices.o normal arm64 (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/Binary/DecreeServices.o
SwiftDriverJobDiscovery normal arm64_32 Compiling AWSS3+Private.swift (in target 'DecreeServices' from project 'DecreeServices')
SwiftDriver\ Compilation DecreeServices normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DecreeServices -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/Binary/DecreeServices.o normal arm64_32 (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos4.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/Binary/DecreeServices.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.o normal arm64\ armv7k\ arm64_32 (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/Binary/DecreeServices.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/Binary/DecreeServices.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/Binary/DecreeServices.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.o
ExtractAppIntentsMetadata (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DecreeServices --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 4.0 --bundle-identifier spi-builder-workspace.DecreeServices --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.appintents --target-triple arm64-apple-watchos4.0 --target-triple armv7k-apple-watchos4.0 --target-triple arm64_32-apple-watchos4.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DecreeServices.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/DecreeServices.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64/DecreeServices.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/armv7k/DecreeServices.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DecreeServices.build/Debug-watchos/DecreeServices.build/Objects-normal/arm64_32/DecreeServices.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 05:08:05.225 appintentsmetadataprocessor[1014:5700] Starting appintentsmetadataprocessor export
2025-04-26 05:08:05.256 appintentsmetadataprocessor[1014:5700] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.o (in target 'DecreeServices' from project 'DecreeServices')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DecreeServices.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "decree",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.4.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/drewag/Decree.git"
    },
    {
      "identity" : "cryptoswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/krzyzanowskim/CryptoSwift.git"
    }
  ],
  "manifest_display_name" : "DecreeServices",
  "name" : "DecreeServices",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    }
  ],
  "products" : [
    {
      "name" : "DecreeServices",
      "targets" : [
        "DecreeServices"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "DecreeServicesTests",
      "module_type" : "SwiftTarget",
      "name" : "DecreeServicesTests",
      "path" : "Tests/DecreeServicesTests",
      "sources" : [
        "AWSS3Tests.swift",
        "AppleAppStoreTests.swift",
        "FreshDeskTests.swift",
        "GoogleAnalyticsTests.swift",
        "Helpers/Data+Helpers.swift",
        "Helpers/Decodable+Helpers.swift",
        "Helpers/Result+Helpers.swift",
        "Helpers/TestURLSession.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "DecreeServices"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DecreeServices",
      "module_type" : "SwiftTarget",
      "name" : "DecreeServices",
      "path" : "Sources/DecreeServices",
      "product_dependencies" : [
        "Decree",
        "CryptoSwift"
      ],
      "product_memberships" : [
        "DecreeServices"
      ],
      "sources" : [
        "AWSS3+Mocking.swift",
        "AWSS3.swift",
        "AppleAppStore.swift",
        "FreshDesk.swift",
        "GoogleAnalytics.swift",
        "Private/AWSS3+Private.swift",
        "Private/TestableDate.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.