Build Information
Successful build of SnapshotPreviews, reference v0.11.0 (6dfb28), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 18 Nov 2025 23:24:46 UTC.
Swift 6 data race errors: 24
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SnapshotPreviews-Package -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCapturesBuild Log
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/PreviewBaseTest.swift:29:14: warning: static property 'signatureCreator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var signatureCreator: NSObject?
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/PreviewBaseTest.swift:29:14: note: convert 'signatureCreator' to a 'let' constant to make 'Sendable' shared state immutable
static var signatureCreator: NSObject?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/PreviewBaseTest.swift:29:14: note: add '@MainActor' to make static property 'signatureCreator' part of global actor 'MainActor'
static var signatureCreator: NSObject?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/PreviewBaseTest.swift:29:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var signatureCreator: NSObject?
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling RenderingModePreference.swift (in target 'SnapshotPreferences' from project 'SnapshotPreviews')
SwiftCompile normal arm64 Compiling\ PreviewFilters.swift /Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/PreviewFilters.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/PreviewFilters.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling EmergeModifierFinder.swift (in target 'SnapshotPreferences' from project 'SnapshotPreviews')
SwiftCompile normal arm64 Compiling\ SnapshotTest.swift /Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:9:22: warning: using '@_implementationOnly' without enabling library evolution for 'SnapshottingTests' may lead to instability during execution
@_implementationOnly import SnapshotPreviewsCore
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:61:22: warning: static property 'renderingStrategy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var renderingStrategy: RenderingStrategy? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:61:22: note: convert 'renderingStrategy' to a 'let' constant to make 'Sendable' shared state immutable
private static var renderingStrategy: RenderingStrategy? = nil
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:61:22: note: add '@MainActor' to make static property 'renderingStrategy' part of global actor 'MainActor'
private static var renderingStrategy: RenderingStrategy? = nil
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:61:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var renderingStrategy: RenderingStrategy? = nil
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:63:22: warning: static property 'previews' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static private var previews: [SnapshotPreviewsCore.PreviewType] = []
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:63:22: note: convert 'previews' to a 'let' constant to make 'Sendable' shared state immutable
static private var previews: [SnapshotPreviewsCore.PreviewType] = []
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:63:22: note: add '@MainActor' to make static property 'previews' part of global actor 'MainActor'
static private var previews: [SnapshotPreviewsCore.PreviewType] = []
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:63:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static private var previews: [SnapshotPreviewsCore.PreviewType] = []
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:65:22: warning: static property 'previewCountForFileId' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static private var previewCountForFileId: [String: Int] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:65:22: note: convert 'previewCountForFileId' to a 'let' constant to make 'Sendable' shared state immutable
static private var previewCountForFileId: [String: Int] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:65:22: note: add '@MainActor' to make static property 'previewCountForFileId' part of global actor 'MainActor'
static private var previewCountForFileId: [String: Int] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTests/SnapshotTest.swift:65:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static private var previewCountForFileId: [String: Int] = [:]
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling AccessibiltyPreference.swift (in target 'SnapshotPreferences' from project 'SnapshotPreviews')
SwiftDriver\ Compilation SnapshotPreviewsCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SnapshotPreviewsCore' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SnapshotPreviewsCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore-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/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore.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/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.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/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ExpansionPreference.swift (in target 'SnapshotPreferences' from project 'SnapshotPreviews')
SwiftDriver\ Compilation SnapshotPreferences normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SnapshotPreferences' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SnapshotPreferences -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences-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/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences.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/SnapshotPreviews.build/Debug/SnapshotPreferences.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.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/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ Preview+FullScreen.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/Preview+FullScreen.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/Preview+FullScreen.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ModuleScreens.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/ModuleScreens.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/ModuleScreens.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for PreviewGallery (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftDriver\ Compilation\ Requirements PreviewGallery normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name PreviewGallery -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery-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/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.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/SnapshotPreviews.build/Debug/PreviewGallery.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.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/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Preview+FullScreen.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 Compiling\ PreviewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/PreviewCell.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/PreviewCell.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/PreviewGallery-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery-Swift.h (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/PreviewGallery-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling ModuleScreens.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.swiftmodule (in target 'PreviewGallery' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.swiftdoc (in target 'PreviewGallery' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.abi.json (in target 'PreviewGallery' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.swiftsourceinfo (in target 'PreviewGallery' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ ModulePreviews.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/ModulePreviews.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/ModulePreviews.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Array+Filter.swift,\ Checkerboard.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/Array+Filter.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/Checkerboard.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/Array+Filter.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/Checkerboard.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for FlyingFox (in target 'FlyingFox' from project 'FlyingFox')
SwiftDriver\ Compilation\ Requirements FlyingFox normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FlyingFox -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox-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/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name flyingfox -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.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/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling PreviewCell.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 Compiling\ TitleSubtitleRow.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/TitleSubtitleRow.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/TitleSubtitleRow.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/FlyingFox-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox-Swift.h (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/FlyingFox-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling Array+Filter.swift, Checkerboard.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftmodule (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
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/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftdoc (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
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/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.abi.json (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
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/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftsourceinfo (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
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/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ PreviewGallery.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/PreviewGallery.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/PreviewGallery.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Colors.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/Colors.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/Colors.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling TitleSubtitleRow.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 Compiling\ PreviewData.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/PreviewData.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/PreviewData.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ModulePreviews.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 Compiling\ PreviewsDetail.swift /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/PreviewsDetail.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PreviewGallery/PreviewsDetail.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Colors.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
ExtractAppIntentsMetadata (in target 'FlyingSocks' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name FlyingSocks --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier flyingfox.FlyingSocks --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingSocks.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingSocks.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingSocks.build/Objects-normal/arm64/FlyingSocks_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingSocks.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingSocks.build/Objects-normal/arm64/FlyingSocks.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingSocks.build/FlyingSocks.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingSocks.build/FlyingSocks.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingSocks.build/Objects-normal/arm64/FlyingSocks.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-11-18 15:24:41.138 appintentsmetadataprocessor[951:5361] Starting appintentsmetadataprocessor export
2025-11-18 15:24:41.176 appintentsmetadataprocessor[951:5361] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling PreviewData.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 Compiling\ HTTPConnection.swift,\ HTTPDecoder.swift,\ HTTPEncoder.swift,\ HTTPHandler.swift,\ HTTPHeader.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPConnection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPDecoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPHeader.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPConnection.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPDecoder.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPEncoder.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPHeader.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling PreviewGallery.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftCompile normal arm64 Compiling\ HTTPServer.swift,\ HTTPStatusCode.swift,\ HTTPVersion.swift,\ ClosureHTTPHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPServer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/ClosureHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPServer.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPStatusCode.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPVersion.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/ClosureHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ HTTPRoute.swift,\ HTTPRouteParameterValue.swift,\ HTTPServer+Configuration.swift,\ HTTPServer+Listening.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRoute.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRouteParameterValue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPServer+Configuration.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPServer+Listening.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRoute.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRouteParameterValue.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPServer+Configuration.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPServer+Listening.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling PreviewsDetail.swift (in target 'PreviewGallery' from project 'SnapshotPreviews')
SwiftDriver\ Compilation PreviewGallery normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name PreviewGallery -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery-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/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.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/SnapshotPreviews.build/Debug/PreviewGallery.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.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/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPServer.swift, HTTPStatusCode.swift, HTTPVersion.swift, ClosureHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 Compiling\ HTTPLogging+OSLog.swift,\ HTTPLogging.swift,\ HTTPMethod.swift,\ HTTPRequest+Address.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPLogging+OSLog.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPLogging.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRequest+Address.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPLogging+OSLog.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPLogging.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPMethod.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRequest+Address.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UncheckedSendable.swift,\ AsyncStream+WSFrame.swift,\ SHA1.swift,\ WSFrame.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/UncheckedSendable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/SHA1.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSFrame.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/UncheckedSendable.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/SHA1.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSFrame.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling HTTPConnection.swift, HTTPDecoder.swift, HTTPEncoder.swift, HTTPHandler.swift, HTTPHeader.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 Compiling\ DirectoryHTTPHandler.swift,\ FileHTTPHandler.swift,\ ProxyHTTPHandler.swift,\ RedirectHTTPHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/DirectoryHTTPHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/FileHTTPHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/ProxyHTTPHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/RedirectHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/DirectoryHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/FileHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/ProxyHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/RedirectHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling HTTPRoute.swift, HTTPRouteParameterValue.swift, HTTPServer+Configuration.swift, HTTPServer+Listening.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 Compiling\ AsyncSequence+Extensions.swift,\ HTTPBodyPattern.swift,\ HTTPBodySequence.swift,\ HTTPChunkedEncodedSequence.swift,\ HTTPClient.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/AsyncSequence+Extensions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPBodyPattern.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPBodySequence.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPChunkedEncodedSequence.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPClient.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/AsyncSequence+Extensions.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPBodyPattern.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPBodySequence.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPChunkedEncodedSequence.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPClient.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling HTTPLogging+OSLog.swift, HTTPLogging.swift, HTTPMethod.swift, HTTPRequest+Address.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 Compiling\ WSFrameEncoder.swift,\ WSFrameValidator.swift,\ WSHandler.swift,\ WSMessage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSFrameEncoder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSFrameValidator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSMessage.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSFrameEncoder.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSFrameValidator.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/WebSocket/WSMessage.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling UncheckedSendable.swift, AsyncStream+WSFrame.swift, SHA1.swift, WSFrame.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 Compiling\ RoutedHTTPHandler.swift,\ WebSocketHTTPHandler.swift,\ SocketAddress+Glibc.swift,\ URLSession+Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/RoutedHTTPHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/WebSocketHTTPHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/SocketAddress+Glibc.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/URLSession+Async.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/RoutedHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/Handlers/WebSocketHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/SocketAddress+Glibc.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/URLSession+Async.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling DirectoryHTTPHandler.swift, FileHTTPHandler.swift, ProxyHTTPHandler.swift, RedirectHTTPHandler.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 Compiling\ HTTPRequest+QueryItem.swift,\ HTTPRequest+RouteParameter.swift,\ HTTPRequest.swift,\ HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRequest+QueryItem.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRequest+RouteParameter.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPResponse.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRequest+QueryItem.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRequest+RouteParameter.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPRequest.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox/FlyingFox/Sources/HTTPResponse.swift (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling AsyncSequence+Extensions.swift, HTTPBodyPattern.swift, HTTPBodySequence.swift, HTTPChunkedEncodedSequence.swift, HTTPClient.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftDriverJobDiscovery normal arm64 Compiling RoutedHTTPHandler.swift, WebSocketHTTPHandler.swift, SocketAddress+Glibc.swift, URLSession+Async.swift (in target 'FlyingFox' from project 'FlyingFox')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTestsObjc.o normal (in target 'SnapshottingTestsObjc' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTestsObjc.build/Objects-normal/arm64/SnapshottingTestsObjc.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTestsObjc.build/Objects-normal/arm64/SnapshottingTestsObjc_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTestsObjc.build/Objects-normal/arm64/SnapshottingTestsObjc_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTestsObjc.o
SwiftDriver SnapshottingSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SnapshottingSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift-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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SnapshottingSwift (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
EmitSwiftModule normal arm64 (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift:17:21: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Initializer' may have shared mutable state; this is an error in the Swift 6 language mode
static public let shared = Initializer()
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift:14:14: note: class 'Initializer' does not conform to the 'Sendable' protocol
public class Initializer: NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift:17:21: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
static public let shared = Initializer()
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift:17:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let shared = Initializer()
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Snapshots.swift /Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift:60:17: warning: capture of 'self' with non-sendable type 'Snapshots?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
guard let self, pathComponents.count > 3 else {
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift:26:7: note: class 'Snapshots' does not conform to the 'Sendable' protocol
class Snapshots {
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift:68:42: warning: non-sendable result type '(Result<ImageType, any Error>, Preview)' (aka '(Result<NSImage, any Error>, Preview)') cannot be sent from main actor-isolated context in call to instance method 'render(typeName:id:)'; this is an error in the Swift 6 language mode
let (imageResult, preview) = await render(typeName: typeName, id: id)
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift:41:10: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift:42:17: note: closure captures 'self' which is accessible to code in the current task
try await startServer()
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift:112:22: warning: sending 'result.image' risks causing data races; this is an error in the Swift 6 language mode
continuation.resume(returning: result.image)
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Snapshots.swift:112:22: note: main actor-isolated 'result.image' is passed as a 'sending' parameter; Uses in callee may race with later main actor-isolated uses
continuation.resume(returning: result.image)
^
SwiftDriverJobDiscovery normal arm64 Compiling WSFrameEncoder.swift, WSFrameValidator.swift, WSHandler.swift, WSMessage.swift (in target 'FlyingFox' from project 'FlyingFox')
SwiftCompile normal arm64 Compiling\ Initializer.swift /Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift:17:21: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Initializer' may have shared mutable state; this is an error in the Swift 6 language mode
static public let shared = Initializer()
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift:14:14: note: class 'Initializer' does not conform to the 'Sendable' protocol
public class Initializer: NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift:17:21: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
static public let shared = Initializer()
^
/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingSwift/Initializer.swift:17:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static public let shared = Initializer()
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling HTTPRequest+QueryItem.swift, HTTPRequest+RouteParameter.swift, HTTPRequest.swift, HTTPResponse.swift (in target 'FlyingFox' from project 'FlyingFox')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotSharedModels.o (in target 'SnapshotSharedModels' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotSharedModels.o
SwiftDriverJobDiscovery normal arm64 Emitting module for SnapshottingSwift (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
SwiftDriver\ Compilation\ Requirements SnapshottingSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SnapshottingSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift-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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingSocks.o (in target 'FlyingSocks' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingSocks.o
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SnapshottingSwift-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift-Swift.h (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SnapshottingSwift-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.swiftmodule (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.swiftdoc (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.abi.json (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.swiftsourceinfo (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriver\ Compilation FlyingFox normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FlyingFox -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox-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/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name flyingfox -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.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/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Initializer.swift (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreviewsCore.o normal (in target 'SnapshotPreviewsCore' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreviewsCore.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreferences.o normal (in target 'SnapshotPreferences' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreferences.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.o normal (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.o
ExtractAppIntentsMetadata (in target 'SnapshotPreferences' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SnapshotPreferences --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.SnapshotPreferences --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreferences.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreferences.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/SnapshotPreferences.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/SnapshotPreferences.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreferences.build/Objects-normal/arm64/SnapshotPreferences.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-11-18 15:24:42.957 appintentsmetadataprocessor[980:5516] Starting appintentsmetadataprocessor export
2025-11-18 15:24:42.994 appintentsmetadataprocessor[980:5516] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'SnapshotPreviewsCore' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SnapshotPreviewsCore --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.SnapshotPreviewsCore --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreviewsCore.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreviewsCore.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/SnapshotPreviewsCore.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/SnapshotPreviewsCore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-11-18 15:24:42.988 appintentsmetadataprocessor[982:5531] Starting appintentsmetadataprocessor export
2025-11-18 15:24:43.024 appintentsmetadataprocessor[982:5531] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name FlyingFox --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier flyingfox.FlyingFox --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/FlyingFox.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/FlyingFox.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-11-18 15:24:43.009 appintentsmetadataprocessor[983:5534] Starting appintentsmetadataprocessor export
2025-11-18 15:24:43.045 appintentsmetadataprocessor[983:5534] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTestsObjc.o (in target 'SnapshottingTestsObjc' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTestsObjc.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.o /Users/admin/builder/spi-builder-workspace/Sources/Snapshotting/Initializer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Snapshotting' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.dia -c /Users/admin/builder/spi-builder-workspace/Sources/Snapshotting/Initializer.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.o -index-unit-output-path /SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreferences.o (in target 'SnapshotPreferences' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreferences.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreviewsCore.o (in target 'SnapshotPreviewsCore' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshotPreviewsCore.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.o (in target 'FlyingFox' from project 'FlyingFox')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/FlyingFox
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FlyingFox.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.o normal (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.o
SwiftDriverJobDiscovery normal arm64 Compiling Snapshots.swift (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
SwiftDriver\ Compilation SnapshottingSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SnapshottingSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift-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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.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/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.o normal (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.o
ExtractAppIntentsMetadata (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name PreviewGallery --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.PreviewGallery --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/PreviewGallery.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/PreviewGallery.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/PreviewGallery.build/Objects-normal/arm64/PreviewGallery.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-11-18 15:24:43.113 appintentsmetadataprocessor[988:5570] Starting appintentsmetadataprocessor export
2025-11-18 15:24:43.149 appintentsmetadataprocessor[988:5570] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SnapshottingSwift --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.SnapshottingSwift --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/SnapshottingSwift.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/SnapshottingSwift.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-11-18 15:24:43.127 appintentsmetadataprocessor[989:5585] Starting appintentsmetadataprocessor export
2025-11-18 15:24:43.163 appintentsmetadataprocessor[989:5585] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.o (in target 'PreviewGallery' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PreviewGallery.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.o (in target 'SnapshottingSwift' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingSwift.o
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-56EWYQLV7QMX7GUXJUPBCHP7E.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-56EWYQLV7QMX7GUXJUPBCHP7E.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-5O1BRPNMQTURY7F03VX9IICDR.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-5O1BRPNMQTURY7F03VX9IICDR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-DO05CHWW0MYE98WON8E8GS6QW.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-DO05CHWW0MYE98WON8E8GS6QW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-A06KWORNU7HHW1C4P9GGNPTB8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-A06KWORNU7HHW1C4P9GGNPTB8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-EWT85ZV31X3MCMI9R1CUV3OS2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-EWT85ZV31X3MCMI9R1CUV3OS2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-9TSRK8QJZ4ZQDOZTV7J0ZSO3H.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-9TSRK8QJZ4ZQDOZTV7J0ZSO3H.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-CXTAJSIG6JO07TF7BSA1FR6AN.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-CXTAJSIG6JO07TF7BSA1FR6AN.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-C3R3UGNDZJ78T7YL3VYHU0397.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-C3R3UGNDZJ78T7YL3VYHU0397.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-177VBYXAD9W6937UAQW572AGW.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-177VBYXAD9W6937UAQW572AGW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-B5NKNZC4XECD3XGC1L7RJD3L6.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-B5NKNZC4XECD3XGC1L7RJD3L6.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-EF9KL0HEAYATUG1GN5BR8D1IG.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-EF9KL0HEAYATUG1GN5BR8D1IG.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-3UJM3TUX24JFWVQ14JLEBOKKA.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-3UJM3TUX24JFWVQ14JLEBOKKA.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-6Z8TXR00PJH1XWSRG0EGI1JIM.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-6Z8TXR00PJH1XWSRG0EGI1JIM.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-6ZCLF7ZCRUE2R4DEFS5NRA65T.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-6ZCLF7ZCRUE2R4DEFS5NRA65T.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-EWPZWXCWQMX4X2UMEL4J9VNY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-EWPZWXCWQMX4X2UMEL4J9VNY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-BQX86S024T30H9VMO4PIOASRY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-BQX86S024T30H9VMO4PIOASRY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-DDQEW4QPO8QI121A1N9XXCOMU.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-DDQEW4QPO8QI121A1N9XXCOMU.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-4C48OG5E0XBZHLGNEU16I7456.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-4C48OG5E0XBZHLGNEU16I7456.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-1QTVC0CNJ7P959GB7ZD4Z0RAT.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-1QTVC0CNJ7P959GB7ZD4Z0RAT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-1Z44EJWXTGWHIKAYOIK19N1F2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-1Z44EJWXTGWHIKAYOIK19N1F2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-8X0X9SDL32Y5XQWJLEAJHHQJE.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-8X0X9SDL32Y5XQWJLEAJHHQJE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-C1H2PO0GFMO01QMB0PPQYJ05B.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-C1H2PO0GFMO01QMB0PPQYJ05B.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-XC9LNNCMSTB3ET8OHW47OY8R.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-XC9LNNCMSTB3ET8OHW47OY8R.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-9A4Q40WGF3DM5745ZZXE96238.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-9A4Q40WGF3DM5745ZZXE96238.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-EOWC314NZ4IB51AR0TNE26ITJ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-EOWC314NZ4IB51AR0TNE26ITJ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-ESWUW1BEVN1ZKYEOIAKJY2OFN.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-ESWUW1BEVN1ZKYEOIAKJY2OFN.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-DMQZFDWN8DZJ4V7WR89TOXF93.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-DMQZFDWN8DZJ4V7WR89TOXF93.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-AL2A5DNKBL3EAA0I30Q3YAJOH.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-AL2A5DNKBL3EAA0I30Q3YAJOH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-E0HU1XM7GM4RALFZOE01VWJ0W.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-E0HU1XM7GM4RALFZOE01VWJ0W.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-3NAM2SWFQVB2VR7BJN4D5K35.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-3NAM2SWFQVB2VR7BJN4D5K35.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-196XO7R6EYLOATOHE6NW83KPM.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-196XO7R6EYLOATOHE6NW83KPM.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-D4IK6DBU2X5S5LYRYTZ3WI8OI.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-D4IK6DBU2X5S5LYRYTZ3WI8OI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-21LFRR2PV4ZSYDVE632KFUPL8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-21LFRR2PV4ZSYDVE632KFUPL8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-80T5SP4HXESJ7YKECVLZZHP7Y.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-80T5SP4HXESJ7YKECVLZZHP7Y.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-E9FB39LA37FTY1AT9SGQ4BPVG.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-E9FB39LA37FTY1AT9SGQ4BPVG.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-91BOSHNDCYQTHD9ZBTSO0A2NX.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-91BOSHNDCYQTHD9ZBTSO0A2NX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-43TE8RG6D7ZNW7X9RMYDQZ792.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-43TE8RG6D7ZNW7X9RMYDQZ792.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-BOOIU4G02D1SNHUWNRLE16ACC.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-BOOIU4G02D1SNHUWNRLE16ACC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-8DJPFNJWXULM2QVOHX6CQFSFP.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-8DJPFNJWXULM2QVOHX6CQFSFP.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-BQHUR854NGQLO15DETYNBV3QK.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-BQHUR854NGQLO15DETYNBV3QK.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-4HC5I1JAR4Z2SLLHV9SMHNUNV.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-4HC5I1JAR4Z2SLLHV9SMHNUNV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-84RAVLPU486TJYL1OO69JOTDM.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-84RAVLPU486TJYL1OO69JOTDM.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-803X5RZ67N1FN9A4JQFA06GLI.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-803X5RZ67N1FN9A4JQFA06GLI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-EC96TI5LIOH76VRTC9BPMR8A5.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-EC96TI5LIOH76VRTC9BPMR8A5.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-EANV9PZQC0PTSMWRUHN3HTEPV.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-EANV9PZQC0PTSMWRUHN3HTEPV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-DD4XCDNDN8NXGBF3DK53BGCL1.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-DD4XCDNDN8NXGBF3DK53BGCL1.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/libDER-809A3NVHGFK196CVLNYW9QAS7.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/libDER-809A3NVHGFK196CVLNYW9QAS7.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-7IU29GY0FO467YOFRCZNG7Y1T.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-7IU29GY0FO467YOFRCZNG7Y1T.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-ECM3GTG7DFAW7T3QFQO9FVV6Z.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-ECM3GTG7DFAW7T3QFQO9FVV6Z.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-6AWYD6D2YNA45NPXMC9ZM89PU.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-6AWYD6D2YNA45NPXMC9ZM89PU.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-B3UEIU8Z8CDDXSQEV1CZ8K5AX.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-B3UEIU8Z8CDDXSQEV1CZ8K5AX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-69SUVT6YNEER8LOTDYRCGMK5D.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-69SUVT6YNEER8LOTDYRCGMK5D.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-B3LMI8TO1EBXSEJ7BZN7964IE.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-B3LMI8TO1EBXSEJ7BZN7964IE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-95147NA0MP8276CYXKKCO2DS8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-95147NA0MP8276CYXKKCO2DS8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-3K4JWXTOAXNUM6ODEI9VRB08K.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-3K4JWXTOAXNUM6ODEI9VRB08K.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-3XWSLBQIO7U0EHY7HXV4Q2MKW.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-3XWSLBQIO7U0EHY7HXV4Q2MKW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-DY7JHDZI8IRGBI64C7X6UYR5L.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-DY7JHDZI8IRGBI64C7X6UYR5L.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-4IRZJSMUL0UZFP8EJXIN13VLQ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-4IRZJSMUL0UZFP8EJXIN13VLQ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/launch-B7ABBBP9O51FHNM1S8EEHNKRC.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/launch-B7ABBBP9O51FHNM1S8EEHNKRC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/MachO-DUK9KSHO5Q08SYKA805TE792J.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/MachO-DUK9KSHO5Q08SYKA805TE792J.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/libkern-CRDZI1U2C0D3WAF6AJVMF6LRB.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/libkern-CRDZI1U2C0D3WAF6AJVMF6LRB.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-13P9TN8Z496CTTN2WURSAV5NH.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-13P9TN8Z496CTTN2WURSAV5NH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-F0YT5FPUMGX8RBZZ653BBT0VJ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-F0YT5FPUMGX8RBZZ653BBT0VJ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-D1GBHBLSAOB3I5ODPKONX161B.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-D1GBHBLSAOB3I5ODPKONX161B.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-7620JY8SYKDCPRE13VDK1NO5Y.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-7620JY8SYKDCPRE13VDK1NO5Y.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-3AF1GRHECRYZY0K5QTV66EK8C.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-3AF1GRHECRYZY0K5QTV66EK8C.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-8ILSSHEQD1LH02TFVC1FR87BX.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-8ILSSHEQD1LH02TFVC1FR87BX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-73XBGKLOLZQMOAA3KXOHKG1Q7.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-73XBGKLOLZQMOAA3KXOHKG1Q7.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOKit-4XAG38J7ZVW8QJEKOH7IEXGTF.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOKit-4XAG38J7ZVW8QJEKOH7IEXGTF.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-1F13LHQCTKP1TUCMUERBTRZ8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-1F13LHQCTKP1TUCMUERBTRZ8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DiskArbitration-5JMP4WCQ7XILH6EUIAAT7M570.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DiskArbitration-5JMP4WCQ7XILH6EUIAAT7M570.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-4E0MTG2SN2S2HF288R2K4E8JZ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-4E0MTG2SN2S2HF288R2K4E8JZ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreServices-79U4ZYKPUTKV004P99D4Y5ATI.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreServices-79U4ZYKPUTKV004P99D4Y5ATI.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for SnapshottingTests (in target 'SnapshottingTests' from project 'SnapshotPreviews')
SwiftDriver\ Compilation\ Requirements SnapshottingTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SnapshottingTests' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SnapshottingTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SimpleDebugger.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SnapshottingTestsObjc.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests-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/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.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/SnapshotPreviews.build/Debug/SnapshottingTests.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SimpleDebugger/Sources/SimpleDebugger/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTestsObjc/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.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/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SnapshottingTests-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests-Swift.h (in target 'SnapshottingTests' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SnapshottingTests-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.swiftmodule (in target 'SnapshottingTests' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.swiftdoc (in target 'SnapshottingTests' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.abi.json (in target 'SnapshottingTests' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.swiftsourceinfo (in target 'SnapshottingTests' from project 'SnapshotPreviews')
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/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling PreviewFilters.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
SwiftDriverJobDiscovery normal arm64 Compiling DiscoveredPreview+PreviewType.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-BMB3CTJB7DVOSK7Z06M321812.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-BMB3CTJB7DVOSK7Z06M321812.scan
SwiftDriverJobDiscovery normal arm64 Compiling PreviewBaseTest.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
SwiftDriverJobDiscovery normal arm64 Compiling PreviewLayoutTest.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/SnapshottingSwift-7RPTAQ0JN833EE2MHBT8V6HX5.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/SnapshottingSwift-7RPTAQ0JN833EE2MHBT8V6HX5.scan
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.o /Users/admin/builder/spi-builder-workspace/Sources/Snapshotting/Initializer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Snapshotting' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.dia -c /Users/admin/builder/spi-builder-workspace/Sources/Snapshotting/Initializer.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.o -index-unit-output-path /SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Initializer.o
SwiftDriverJobDiscovery normal arm64 Compiling SnapshotTest.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Snapshotting.o normal (in target 'Snapshotting' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Snapshotting.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Snapshotting_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting.build/Objects-normal/arm64/Snapshotting_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Snapshotting.o
SwiftDriverJobDiscovery normal arm64 Compiling AccessibilityPreviewTest.swift (in target 'SnapshottingTests' from project 'SnapshotPreviews')
SwiftDriver\ Compilation SnapshottingTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SnapshottingTests' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SnapshottingTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SimpleDebugger.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SnapshottingTestsObjc.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.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 -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests-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/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.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/SnapshotPreviews.build/Debug/SnapshottingTests.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SimpleDebugger/Sources/SimpleDebugger/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/SnapshottingTestsObjc/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.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/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.o normal (in target 'SnapshottingTests' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Snapshotting.o (in target 'Snapshotting' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Snapshotting.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/Snapshotting.framework/Versions/A/Resources/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting\ product.build/empty-Snapshotting.plist (in target 'Snapshotting' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting\ product.build/empty-Snapshotting.plist -producttype com.apple.product-type.framework -expandbuildsettings -platform macosx -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/Snapshotting.framework/Versions/A/Resources/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/Snapshotting.framework/Versions/A/Snapshotting normal (in target 'Snapshotting' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting\ product.build/Objects-normal/arm64/Snapshotting.LinkFileList -install_name @rpath/Snapshotting.framework/Versions/A/Snapshotting -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting\ product.build/Objects-normal/arm64/Snapshotting_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/Snapshotting\ product.build/Objects-normal/arm64/Snapshotting_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework PreviewsSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/Snapshotting.framework/Versions/A/Snapshotting -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotSharedModels.build/Objects-normal/arm64/SnapshotSharedModels.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshotPreviewsCore.build/Objects-normal/arm64/SnapshotPreviewsCore.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingFox.build/Objects-normal/arm64/FlyingFox.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FlyingFox.build/Debug/FlyingSocks.build/Objects-normal/arm64/FlyingSocks.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingSwift.build/Objects-normal/arm64/SnapshottingSwift.swiftmodule
ExtractAppIntentsMetadata (in target 'SnapshottingTests' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SnapshottingTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.SnapshottingTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/SnapshottingTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/SnapshottingTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapshotPreviews.build/Debug/SnapshottingTests.build/Objects-normal/arm64/SnapshottingTests.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-11-18 15:24:45.072 appintentsmetadataprocessor[1072:5864] Starting appintentsmetadataprocessor export
2025-11-18 15:24:45.107 appintentsmetadataprocessor[1072:5864] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.o (in target 'SnapshottingTests' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SnapshottingTests.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/Snapshotting.framework (in target 'Snapshotting' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/Snapshotting.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/Snapshotting.framework (in target 'Snapshotting' from project 'SnapshotPreviews')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/Snapshotting.framework
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:8130580060af8122cbddab2d7fd574db6f72e5cc, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:8130580060af8122cbddab2d7fd574db6f72e5cc, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:8130580060af8122cbddab2d7fd574db6f72e5cc, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:8130580060af8122cbddab2d7fd574db6f72e5cc, name:My Mac }
Build complete.
{
"cxx_language_standard" : "c++11",
"dependencies" : [
{
"identity" : "flyingfox",
"requirement" : {
"exact" : [
"0.16.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/swhitty/FlyingFox.git"
},
{
"identity" : "simpledebugger",
"requirement" : {
"exact" : [
"1.0.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/EmergeTools/SimpleDebugger.git"
}
],
"manifest_display_name" : "SnapshotPreviews",
"name" : "SnapshotPreviews",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "PreviewGallery",
"targets" : [
"PreviewGallery"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SnapshottingTests",
"targets" : [
"SnapshottingTests"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "SnapshotPreferences",
"targets" : [
"SnapshotPreferences"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SnapshotPreviewsCore",
"targets" : [
"SnapshotPreviewsCore"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Snapshotting",
"targets" : [
"Snapshotting"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "SnapshottingTestsObjc",
"module_type" : "ClangTarget",
"name" : "SnapshottingTestsObjc",
"path" : "Sources/SnapshottingTestsObjc",
"product_dependencies" : [
"SimpleDebugger"
],
"product_memberships" : [
"SnapshottingTests"
],
"sources" : [
"EMGInvocationCreator.mm"
],
"type" : "library"
},
{
"c99name" : "SnapshottingTests",
"module_type" : "SwiftTarget",
"name" : "SnapshottingTests",
"path" : "Sources/SnapshottingTests",
"product_memberships" : [
"SnapshottingTests"
],
"sources" : [
"AccessibilityPreviewTest.swift",
"DiscoveredPreview+PreviewType.swift",
"PreviewBaseTest.swift",
"PreviewFilters.swift",
"PreviewLayoutTest.swift",
"SnapshotTest.swift"
],
"target_dependencies" : [
"SnapshotPreviewsCore",
"SnapshottingTestsObjc"
],
"type" : "library"
},
{
"c99name" : "SnapshottingSwift",
"module_type" : "SwiftTarget",
"name" : "SnapshottingSwift",
"path" : "Sources/SnapshottingSwift",
"product_dependencies" : [
"FlyingFox"
],
"product_memberships" : [
"Snapshotting"
],
"sources" : [
"Initializer.swift",
"Snapshots.swift"
],
"target_dependencies" : [
"SnapshotPreviewsCore"
],
"type" : "library"
},
{
"c99name" : "Snapshotting",
"module_type" : "ClangTarget",
"name" : "Snapshotting",
"path" : "Sources/Snapshotting",
"product_memberships" : [
"Snapshotting"
],
"sources" : [
"Initializer.m"
],
"target_dependencies" : [
"SnapshottingSwift"
],
"type" : "library"
},
{
"c99name" : "SnapshotSharedModels",
"module_type" : "SwiftTarget",
"name" : "SnapshotSharedModels",
"path" : "Sources/SnapshotSharedModels",
"product_memberships" : [
"PreviewGallery",
"SnapshottingTests",
"SnapshotPreferences",
"SnapshotPreviewsCore",
"Snapshotting"
],
"sources" : [
"RenderingMode.swift"
],
"type" : "library"
},
{
"c99name" : "SnapshotPreviewsTests",
"module_type" : "SwiftTarget",
"name" : "SnapshotPreviewsTests",
"path" : "Tests/SnapshotPreviewsTests",
"sources" : [
"ETBrowserTests.swift"
],
"target_dependencies" : [
"SnapshotPreviewsCore"
],
"type" : "test"
},
{
"c99name" : "SnapshotPreviewsCore",
"module_type" : "SwiftTarget",
"name" : "SnapshotPreviewsCore",
"path" : "Sources/SnapshotPreviewsCore",
"product_memberships" : [
"PreviewGallery",
"SnapshottingTests",
"SnapshotPreviewsCore",
"Snapshotting"
],
"sources" : [
"AppKitRenderingStrategy.swift",
"ConformanceLookup.swift",
"ExpandingViewController.swift",
"MetadataTypes.swift",
"ModifierFinder.swift",
"NSImage+EMG.swift",
"Orientation.swift",
"PreferredColorSchemeWrapper.swift",
"RenderingStrategy.swift",
"ScrollExpansion.swift",
"SnapshotPreviewsCore.swift",
"String+Split.swift",
"SwiftUIRenderingStrategy.swift",
"UIImage+EMG.swift",
"UIKitRenderingStrategy.swift",
"UIViewWrapper.swift",
"View+Snapshot.swift",
"ViewSelector.swift"
],
"target_dependencies" : [
"PreviewsSupport",
"SnapshotSharedModels"
],
"type" : "library"
},
{
"c99name" : "SnapshotPreferences",
"module_type" : "SwiftTarget",
"name" : "SnapshotPreferences",
"path" : "Sources/SnapshotPreferences",
"product_memberships" : [
"PreviewGallery",
"SnapshotPreferences"
],
"sources" : [
"AccessibiltyPreference.swift",
"AppStoreSnapshotPreference.swift",
"EmergeModifierFinder.swift",
"ExpansionPreference.swift",
"PrecisionPreference.swift",
"RenderingModePreference.swift"
],
"target_dependencies" : [
"SnapshotSharedModels"
],
"type" : "library"
},
{
"c99name" : "PreviewsSupport",
"module_type" : "BinaryTarget",
"name" : "PreviewsSupport",
"path" : "PreviewsSupport/PreviewsSupport.xcframework",
"product_memberships" : [
"PreviewGallery",
"SnapshottingTests",
"SnapshotPreviewsCore",
"Snapshotting"
],
"sources" : [
],
"type" : "binary"
},
{
"c99name" : "PreviewGallery",
"module_type" : "SwiftTarget",
"name" : "PreviewGallery",
"path" : "Sources/PreviewGallery",
"product_memberships" : [
"PreviewGallery"
],
"sources" : [
"Array+Filter.swift",
"Checkerboard.swift",
"Colors.swift",
"ModulePreviews.swift",
"ModuleScreens.swift",
"Preview+FullScreen.swift",
"PreviewCell.swift",
"PreviewData.swift",
"PreviewGallery.swift",
"PreviewsDetail.swift",
"TitleSubtitleRow.swift"
],
"target_dependencies" : [
"SnapshotPreviewsCore",
"SnapshotPreferences"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.