Build Information
Successful build of GraphQLer with Swift 6.0 for watchOS using Xcode 16.0.
Swift 6 data race errors: 60
Build Command
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme GraphQLer -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
57 | }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:61:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<InlineFragment>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
59 | public extension Stringifier where A == InlineFragment {
60 | /// `compact` produces a compact representation of the input `InlineFragment`.
61 | static let compact = Stringifier(stringify: compactInlineFragmentStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<InlineFragment>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:66:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Operation>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
64 | public extension Stringifier where A == Operation {
65 | /// `compact` produces a compact representation of the input `Operation`.
66 | static let compact = Stringifier(stringify: compactOpStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Operation>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:71:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Selection>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
69 | public extension Stringifier where A == Selection {
70 | /// `compact` produces a compact representation of the input `Selection`.
71 | static let compact = Stringifier(stringify: compactSelectionStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Selection>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:76:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<SelectionSet>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
74 | public extension Stringifier where A == SelectionSet {
75 | /// `compact` produces a compact representation of the input `SelectionSet`.
76 | static let compact = Stringifier(stringify: compactSelSetStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<SelectionSet>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | }
78 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:81:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ObjectValue>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
79 | public extension Stringifier where A == ObjectValue {
80 | /// `compact` produces a compact representation of the input `ObjectValue`.
81 | static let compact = Stringifier(stringify: compactObjectValueStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ObjectValue>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | }
83 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:86:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<Variable>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
84 | public extension Stringifier where A == Variable {
85 | /// `normal` produces a stringified representation of the input `Variable`.
86 | static let normal = Stringifier(stringify: normalVariableStringify)
| |- warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<Variable>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | }
88 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:91:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<TypeReference>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
89 | public extension Stringifier where A == TypeReference {
90 | /// `compact` produces a compact representation of the input `TypeReference`.
91 | static let compact = Stringifier(stringify: compactTypeReferenceStringify(typeRef:))
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<TypeReference>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | }
93 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:96:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<VariableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
94 | public extension Stringifier where A == VariableDefinition {
95 | /// `compact` produces a compact representation of the input `VariableDefinition`.
96 | static let compact = Stringifier(stringify: compactVariableDefinitionStringify(vdef:))
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<VariableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | }
98 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:101:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Directive>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
99 | public extension Stringifier where A == Directive {
100 | /// `compact` produces a compact representation of the input `Directive`.
101 | static let compact = Stringifier(stringify: compactDirectiveStringify(directive:))
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Directive>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 | }
103 |
SwiftCompile normal armv7k Compiling\ GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SelectionSet' may have shared mutable state; this is an error in the Swift 6 language mode
public static let empty = SelectionSet(selections: [])
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:129:15: note: consider making struct 'SelectionSet' conform to the 'Sendable' protocol
public struct SelectionSet {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
public static let empty = SelectionSet(selections: [])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let empty = SelectionSet(selections: [])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Arguments' may have shared mutable state; this is an error in the Swift 6 language mode
public static let empty = Arguments([])
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:177:15: note: consider making struct 'Arguments' conform to the 'Sendable' protocol
public struct Arguments {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
public static let empty = Arguments([])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let empty = Arguments([])
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SelectionSet' may have shared mutable state; this is an error in the Swift 6 language mode
public static let empty = SelectionSet(selections: [])
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:129:15: note: consider making struct 'SelectionSet' conform to the 'Sendable' protocol
public struct SelectionSet {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
public static let empty = SelectionSet(selections: [])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let empty = SelectionSet(selections: [])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Arguments' may have shared mutable state; this is an error in the Swift 6 language mode
public static let empty = Arguments([])
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:177:15: note: consider making struct 'Arguments' conform to the 'Sendable' protocol
public struct Arguments {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
public static let empty = Arguments([])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let empty = Arguments([])
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SelectionSet' may have shared mutable state; this is an error in the Swift 6 language mode
public static let empty = SelectionSet(selections: [])
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:129:15: note: consider making struct 'SelectionSet' conform to the 'Sendable' protocol
public struct SelectionSet {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
public static let empty = SelectionSet(selections: [])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let empty = SelectionSet(selections: [])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Arguments' may have shared mutable state; this is an error in the Swift 6 language mode
public static let empty = Arguments([])
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:177:15: note: consider making struct 'Arguments' conform to the 'Sendable' protocol
public struct Arguments {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
public static let empty = Arguments([])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let empty = Arguments([])
^
nonisolated(unsafe)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ GraphQLer (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:139:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SelectionSet' may have shared mutable state; this is an error in the Swift 6 language mode
127 | ///
128 | /// - SeeAlso: [2.4 Selection Sets](https://spec.graphql.org/June2018/#sec-Selection-Sets)
129 | public struct SelectionSet {
| `- note: consider making struct 'SelectionSet' conform to the 'Sendable' protocol
130 | /// The selections contained in this set. May be empty.
131 | public var selections: [Selection]
:
137 |
138 | /// An empty `SelectionSet`.
139 | public static let empty = SelectionSet(selections: [])
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SelectionSet' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 | }
141 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift:197:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Arguments' may have shared mutable state; this is an error in the Swift 6 language mode
175 | ///
176 | /// - SeeAlso: [2.6 Arguments](https://spec.graphql.org/June2018/#sec-Language.Arguments)
177 | public struct Arguments {
| `- note: consider making struct 'Arguments' conform to the 'Sendable' protocol
178 | /// The name-value pairs in this argument list.
179 | public var args: [(Name, Any)]
:
195 |
196 | /// An empty `Arguments` instance.
197 | public static let empty = Arguments([])
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'Arguments' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 | }
199 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:16:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<String>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
14 | /// `normal` is a `Stringifier` producing a GraphQL safe, escaped version
15 | /// of the input string.
16 | static let normal = Stringifier(stringify: InputValueFormat.formatString(_:))
| |- warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:21:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Document>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
19 | public extension Stringifier where A == Document {
20 | /// `compact` produces a compact representation of the input `Document`.
21 | static let compact = Stringifier(stringify: compactDocumentStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Document>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:26:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ExecutableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
24 | public extension Stringifier where A == ExecutableDefinition {
25 | /// `compact` produces a compact representation of the input `ExecutableDefinition`.
26 | static let compact = Stringifier(stringify: compactExecutableDefinitionStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ExecutableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:31:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<ValidatedName<NameValidator>>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
29 | public extension Stringifier where A == Name {
30 | /// `normal` produces the value of the input `Name`.
31 | static let normal = Stringifier(stringify: normalNameStringify)
| |- warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<ValidatedName<NameValidator>>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:36:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Arguments>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
34 | public extension Stringifier where A == Arguments {
35 | /// `compact` produces a compact representation of the input `Arguments`.
36 | static let compact = Stringifier(stringify: compactArgsStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Arguments>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:41:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Field>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
39 | public extension Stringifier where A == Field {
40 | /// `compact` produces a compact representation of the input `Field`.
41 | static let compact = Stringifier(stringify: compactFieldStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Field>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | }
43 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:46:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<ValidatedName<FragmentNameValidator>>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
44 | public extension Stringifier where A == FragmentName {
45 | /// `normal` produces a stringified representation of the input `FragmentName`.
46 | static let normal = Stringifier(stringify: normalNameStringify)
| |- warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<ValidatedName<FragmentNameValidator>>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | }
48 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:51:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<FragmentSpread>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
49 | public extension Stringifier where A == FragmentSpread {
50 | /// `compact` produces a compact representation of the input `FragmentSpread`.
51 | static let compact = Stringifier(stringify: compactFragmentSpreadStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<FragmentSpread>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:56:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<FragmentDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
54 | public extension Stringifier where A == FragmentDefinition {
55 | /// `compact` produces a compact representation of the input `FragmentDefinition`.
56 | static let compact = Stringifier(stringify: compactFragmentDefStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<FragmentDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:61:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<InlineFragment>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
59 | public extension Stringifier where A == InlineFragment {
60 | /// `compact` produces a compact representation of the input `InlineFragment`.
61 | static let compact = Stringifier(stringify: compactInlineFragmentStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<InlineFragment>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | }
63 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:66:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Operation>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
64 | public extension Stringifier where A == Operation {
65 | /// `compact` produces a compact representation of the input `Operation`.
66 | static let compact = Stringifier(stringify: compactOpStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Operation>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | }
68 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:71:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Selection>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
69 | public extension Stringifier where A == Selection {
70 | /// `compact` produces a compact representation of the input `Selection`.
71 | static let compact = Stringifier(stringify: compactSelectionStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Selection>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | }
73 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:76:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<SelectionSet>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
74 | public extension Stringifier where A == SelectionSet {
75 | /// `compact` produces a compact representation of the input `SelectionSet`.
76 | static let compact = Stringifier(stringify: compactSelSetStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<SelectionSet>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | }
78 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:81:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ObjectValue>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
79 | public extension Stringifier where A == ObjectValue {
80 | /// `compact` produces a compact representation of the input `ObjectValue`.
81 | static let compact = Stringifier(stringify: compactObjectValueStringify)
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ObjectValue>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | }
83 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:86:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<Variable>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
84 | public extension Stringifier where A == Variable {
85 | /// `normal` produces a stringified representation of the input `Variable`.
86 | static let normal = Stringifier(stringify: normalVariableStringify)
| |- warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<Variable>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | }
88 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:91:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<TypeReference>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
89 | public extension Stringifier where A == TypeReference {
90 | /// `compact` produces a compact representation of the input `TypeReference`.
91 | static let compact = Stringifier(stringify: compactTypeReferenceStringify(typeRef:))
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<TypeReference>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | }
93 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:96:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<VariableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
94 | public extension Stringifier where A == VariableDefinition {
95 | /// `compact` produces a compact representation of the input `VariableDefinition`.
96 | static let compact = Stringifier(stringify: compactVariableDefinitionStringify(vdef:))
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<VariableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | }
98 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:101:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Directive>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// whereas things called `compact` produce a compact representation where a
7 | /// more expanded, indented, multi-line version would also be a reasonable choice.
8 | public struct Stringifier<A> {
| `- note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
9 | /// A closure that converts an `A` to a `String`.
10 | public var stringify: (A) throws -> String
:
99 | public extension Stringifier where A == Directive {
100 | /// `compact` produces a compact representation of the input `Directive`.
101 | static let compact = Stringifier(stringify: compactDirectiveStringify(directive:))
| |- warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Directive>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 | }
103 |
SwiftCompile normal arm64_32 Compiling\ Stringify.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Stringify.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:16:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<String>' may have shared mutable state; this is an error in the Swift 6 language mode
static let normal = Stringifier(stringify: InputValueFormat.formatString(_:))
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:16:16: note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
static let normal = Stringifier(stringify: InputValueFormat.formatString(_:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:16:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let normal = Stringifier(stringify: InputValueFormat.formatString(_:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:21:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Document>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactDocumentStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:21:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactDocumentStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactDocumentStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:26:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ExecutableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactExecutableDefinitionStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:26:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactExecutableDefinitionStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:26:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactExecutableDefinitionStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:31:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<ValidatedName<NameValidator>>' may have shared mutable state; this is an error in the Swift 6 language mode
static let normal = Stringifier(stringify: normalNameStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:31:16: note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
static let normal = Stringifier(stringify: normalNameStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let normal = Stringifier(stringify: normalNameStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:36:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Arguments>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactArgsStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:36:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactArgsStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactArgsStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:41:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Field>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactFieldStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:41:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactFieldStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:41:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactFieldStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:46:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<ValidatedName<FragmentNameValidator>>' may have shared mutable state; this is an error in the Swift 6 language mode
static let normal = Stringifier(stringify: normalNameStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:46:16: note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
static let normal = Stringifier(stringify: normalNameStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let normal = Stringifier(stringify: normalNameStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:51:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<FragmentSpread>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactFragmentSpreadStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:51:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactFragmentSpreadStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactFragmentSpreadStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:56:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<FragmentDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactFragmentDefStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:56:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactFragmentDefStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:56:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactFragmentDefStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:61:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<InlineFragment>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactInlineFragmentStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:61:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactInlineFragmentStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:61:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactInlineFragmentStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:66:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Operation>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactOpStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:66:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactOpStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:66:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactOpStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:71:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Selection>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactSelectionStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:71:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactSelectionStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:71:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactSelectionStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:76:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<SelectionSet>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactSelSetStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:76:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactSelSetStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:76:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactSelSetStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:81:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ObjectValue>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactObjectValueStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:81:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactObjectValueStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:81:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactObjectValueStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:86:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<Variable>' may have shared mutable state; this is an error in the Swift 6 language mode
static let normal = Stringifier(stringify: normalVariableStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:86:16: note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
static let normal = Stringifier(stringify: normalVariableStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:86:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let normal = Stringifier(stringify: normalVariableStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:91:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<TypeReference>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactTypeReferenceStringify(typeRef:))
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:91:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactTypeReferenceStringify(typeRef:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:91:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactTypeReferenceStringify(typeRef:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:96:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<VariableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactVariableDefinitionStringify(vdef:))
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:96:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactVariableDefinitionStringify(vdef:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:96:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactVariableDefinitionStringify(vdef:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:101:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Directive>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactDirectiveStringify(directive:))
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:101:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactDirectiveStringify(directive:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:101:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactDirectiveStringify(directive:))
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Stringify.swift /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/GraphQL.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name GraphQLer -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.o -index-unit-output-path /GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Stringify.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:16:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<String>' may have shared mutable state; this is an error in the Swift 6 language mode
static let normal = Stringifier(stringify: InputValueFormat.formatString(_:))
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:16:16: note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
static let normal = Stringifier(stringify: InputValueFormat.formatString(_:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:16:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let normal = Stringifier(stringify: InputValueFormat.formatString(_:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:21:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Document>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactDocumentStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:21:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactDocumentStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactDocumentStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:26:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ExecutableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactExecutableDefinitionStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:26:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactExecutableDefinitionStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:26:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactExecutableDefinitionStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:31:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<ValidatedName<NameValidator>>' may have shared mutable state; this is an error in the Swift 6 language mode
static let normal = Stringifier(stringify: normalNameStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:31:16: note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
static let normal = Stringifier(stringify: normalNameStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let normal = Stringifier(stringify: normalNameStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:36:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Arguments>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactArgsStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:36:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactArgsStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactArgsStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:41:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Field>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactFieldStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:41:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactFieldStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:41:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactFieldStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:46:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<ValidatedName<FragmentNameValidator>>' may have shared mutable state; this is an error in the Swift 6 language mode
static let normal = Stringifier(stringify: normalNameStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:46:16: note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
static let normal = Stringifier(stringify: normalNameStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let normal = Stringifier(stringify: normalNameStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:51:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<FragmentSpread>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactFragmentSpreadStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:51:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactFragmentSpreadStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactFragmentSpreadStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:56:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<FragmentDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactFragmentDefStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:56:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactFragmentDefStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:56:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactFragmentDefStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:61:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<InlineFragment>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactInlineFragmentStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:61:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactInlineFragmentStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:61:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactInlineFragmentStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:66:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Operation>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactOpStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:66:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactOpStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:66:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactOpStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:71:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Selection>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactSelectionStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:71:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactSelectionStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:71:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactSelectionStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:76:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<SelectionSet>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactSelSetStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:76:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactSelSetStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:76:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactSelSetStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:81:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<ObjectValue>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactObjectValueStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:81:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactObjectValueStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:81:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactObjectValueStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:86:16: warning: static property 'normal' is not concurrency-safe because non-'Sendable' type 'Stringifier<Variable>' may have shared mutable state; this is an error in the Swift 6 language mode
static let normal = Stringifier(stringify: normalVariableStringify)
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:86:16: note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
static let normal = Stringifier(stringify: normalVariableStringify)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:86:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let normal = Stringifier(stringify: normalVariableStringify)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:91:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<TypeReference>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactTypeReferenceStringify(typeRef:))
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:91:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactTypeReferenceStringify(typeRef:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:91:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactTypeReferenceStringify(typeRef:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:96:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<VariableDefinition>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactVariableDefinitionStringify(vdef:))
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:96:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactVariableDefinitionStringify(vdef:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:96:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactVariableDefinitionStringify(vdef:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:101:16: warning: static property 'compact' is not concurrency-safe because non-'Sendable' type 'Stringifier<Directive>' may have shared mutable state; this is an error in the Swift 6 language mode
static let compact = Stringifier(stringify: compactDirectiveStringify(directive:))
^
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:8:15: note: consider making generic struct 'Stringifier' conform to the 'Sendable' protocol
public struct Stringifier<A> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:101:16: note: annotate 'compact' with '@MainActor' if property should only be accessed from the main actor
static let compact = Stringifier(stringify: compactDirectiveStringify(directive:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/GraphQLer/Stringify.swift:101:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let compact = Stringifier(stringify: compactDirectiveStringify(directive:))
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Emitting module for GraphQLer (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriverJobDiscovery normal arm64_32 Emitting module for GraphQLer (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriver\ Compilation\ Requirements GraphQLer normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name GraphQLer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements GraphQLer normal armv7k com.apple.xcode.tools.swift.compiler (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name GraphQLer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer-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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer_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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftmodule (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftdoc (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.swiftmodule (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.swiftdoc (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.abi.json (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.abi.json (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.swiftsourceinfo (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftsourceinfo (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64_32 Compiling GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriverJobDiscovery normal armv7k Compiling GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriverJobDiscovery normal arm64_32 Compiling Stringify.swift (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriverJobDiscovery normal armv7k Compiling Stringify.swift (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriver\ Compilation GraphQLer normal armv7k com.apple.xcode.tools.swift.compiler (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name GraphQLer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer-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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer_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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation GraphQLer normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name GraphQLer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for GraphQLer (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriver\ Compilation\ Requirements GraphQLer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name GraphQLer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer-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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer_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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/GraphQLer-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer-Swift.h (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/GraphQLer-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.swiftmodule (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.abi.json (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.swiftsourceinfo (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.swiftdoc (in target 'GraphQLer' from project 'GraphQLer')
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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.swiftmodule/arm64-apple-watchos.swiftdoc
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/Binary/GraphQLer.o normal armv7k (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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 -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/GraphQLer_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/Binary/GraphQLer.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Binary/GraphQLer.o normal arm64_32 (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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 -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/GraphQLer_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Binary/GraphQLer.o
SwiftDriverJobDiscovery normal arm64 Compiling Stringify.swift (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriverJobDiscovery normal arm64 Compiling GraphQL.swift (in target 'GraphQLer' from project 'GraphQLer')
SwiftDriver\ Compilation GraphQLer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name GraphQLer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.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-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer-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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer_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/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.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/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Binary/GraphQLer.o normal arm64 (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.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-15.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 -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/GraphQLer_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Binary/GraphQLer.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.o normal arm64\ armv7k\ arm64_32 (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64/Binary/GraphQLer.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/armv7k/Binary/GraphQLer.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GraphQLer.build/Debug-watchos/GraphQLer.build/Objects-normal/arm64_32/Binary/GraphQLer.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.o (in target 'GraphQLer' from project 'GraphQLer')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GraphQLer.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'GraphQLer' from project 'GraphQLer')
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "GraphQLer",
"name" : "GraphQLer",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "GraphQLer",
"targets" : [
"GraphQLer"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "GraphQLer",
"module_type" : "SwiftTarget",
"name" : "GraphQLer",
"path" : "Sources/GraphQLer",
"product_memberships" : [
"GraphQLer"
],
"sources" : [
"GraphQL.swift",
"Stringify.swift"
],
"type" : "library"
},
{
"c99name" : "GraphQLTests",
"module_type" : "SwiftTarget",
"name" : "GraphQLTests",
"path" : "Tests/GraphQLTests",
"sources" : [
"GraphQLTests.swift"
],
"target_dependencies" : [
"GraphQLer"
],
"type" : "test"
}
],
"tools_version" : "5.7"
}
Done.