This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build EventBottle with Swift 6.0 for watchOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme EventBottle -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

 32 |     }
 33 |
 34 |     override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
    |                          `- error: cannot find type 'UITableViewCell' in scope
 35 |         super.init(style: style, reuseIdentifier: reuseIdentifier)
 36 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:34:14: error: initializer does not override a designated initializer from its superclass
 32 |     }
 33 |
 34 |     override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
    |              `- error: initializer does not override a designated initializer from its superclass
 35 |         super.init(style: style, reuseIdentifier: reuseIdentifier)
 36 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:76:19: error: method does not override any method from its superclass
 74 |     }
 75 |
 76 |     override func prepareForReuse() {
    |                   `- error: method does not override any method from its superclass
 77 |         super.prepareForReuse()
 78 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:3:18: error: cannot find type 'UITableViewCell' in scope
  1 | import UIKit
  2 |
  3 | class EventCell: UITableViewCell {
    |                  `- error: cannot find type 'UITableViewCell' in scope
  4 |     static let defaultIdentifier = "EventCell"
  5 |     let labelMargin: CGFloat = 4
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:9:29: error: cannot find 'UILabel' in scope
 7 |     private let labelFontSize: CGFloat = 8
 8 |
 9 |     private let textLabel = UILabel()
   |                             `- error: cannot find 'UILabel' in scope
10 |     private let labelText: String
11 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:12:24: warning: static property 'colors' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     private let labelText: String
11 |
12 |     private static var colors: [String: UIColor] = [:]
   |                        |- warning: static property 'colors' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'colors' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'colors' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     private func color(from _: String) -> UIColor {
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:45:18: error: property does not override any property from its superclass
43 |     }
44 |
45 |     override var intrinsicContentSize: CGSize {
   |                  `- error: property does not override any property from its superclass
46 |         let labelSize = textLabel.intrinsicContentSize
47 |         return CGSize(width: labelSize.width + horizontalPadding * 2, height: labelSize.height + verticalPadding * 2)
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:64:19: error: method does not override any method from its superclass
62 |     }
63 |
64 |     override func draw(_ rect: CGRect) {
   |                   `- error: method does not override any method from its superclass
65 |         let context = UIGraphicsGetCurrentContext()
66 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:3:23: error: cannot find type 'UIView' in scope
 1 | import UIKit
 2 |
 3 | class EventLabelView: UIView {
   |                       `- error: cannot find type 'UIView' in scope
 4 |     private let horizontalPadding: CGFloat = 4
 5 |     private let verticalPadding: CGFloat = 1
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
SwiftCompile normal arm64 Compiling\ EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataSource.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift:15:34: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
public protocol EventDataSource: class {
                                 ^~~~~
                                 AnyObject
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ EventBottle (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.abi.json
SwiftEmitModule normal armv7k Emitting\ module\ for\ EventBottle (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.abi.json
Command SwiftEmitModule failed with a nonzero exit code
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'EventBottle' from project 'EventBottle')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal armv7k Compiling\ EventLabelView.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift (in target 'EventBottle' from project 'EventBottle')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift (in target 'EventBottle' from project 'EventBottle')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ EventBottle (in target 'EventBottle' from project 'EventBottle')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ EventBottle (in target 'EventBottle' from project 'EventBottle')
(4 failures)
Command line invocation:
    /Applications/Xcode-15.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme EventBottle -destination generic/platform=watchos "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportToolchainOverrideForManifestLoading = org.swift.600202405261a
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
    TOOLCHAINS = org.swift.600202405261a
Resolve Package Graph
Resolved source packages:
  EventBottle: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'EventBottle' in project 'EventBottle'
        ➜ Explicit dependency on target 'EventBottle' in project 'EventBottle'
    Target 'EventBottle' in project 'EventBottle' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'.
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'EventBottle' from project 'EventBottle')
SwiftDriver EventBottle normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name EventBottle -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle-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/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.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/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.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/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver EventBottle normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name EventBottle -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle-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/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle.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/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.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/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver EventBottle normal armv7k com.apple.xcode.tools.swift.compiler (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name EventBottle -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle-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/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.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/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.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/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventDataStore.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottleFileEventDataStore.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/FileEventDataSource.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift:36:64: warning: capture of 'self' with non-sendable type 'FileEventDataSource' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            guard let handle = try? FileHandle(forReadingFrom: self.fileURL) else {
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift:3:12: note: class 'FileEventDataSource' does not conform to the 'Sendable' protocol
open class FileEventDataSource: EventDataSource {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift:38:21: warning: capture of 'completion' with non-sendable type '(Bool) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                    completion(false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift:38:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completion(false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift:38:21: warning: capture of 'completion' with non-sendable type '(Bool) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                    completion(false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift:38:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completion(false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift:78:17: warning: capture of 'completion' with non-sendable type '(Bool) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completion(true)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift:78:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(true)
                ^
SwiftEmitModule normal arm64 Emitting\ module\ for\ EventBottle (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift:15:34: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
13 | }
14 |
15 | public protocol EventDataSource: class {
   |                                  `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
16 |     var events: [Event] { get }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift:4:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EventBottleFileEventDataStore' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public class EventBottleFileEventDataStore: FileEventDataStore {
   |              `- note: class 'EventBottleFileEventDataStore' does not conform to the 'Sendable' protocol
 4 |     public static let shared = EventBottleFileEventDataStore()!
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EventBottleFileEventDataStore' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 |
 6 |     public convenience init?() {
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:14:38: error: cannot find 'UIBarButtonItem' in scope
 12 |     private let defaultRowHeight: CGFloat = 44
 13 |
 14 |     private lazy var refreshButton = UIBarButtonItem(barButtonSystemItem: .refresh, target: self, action: #selector(refresh))
    |                                      `- error: cannot find 'UIBarButtonItem' in scope
 15 |     private lazy var toggleOrderButtonAsc = UIBarButtonItem(title: "ASC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
 16 |     private lazy var toggleOrderButtonDesc = UIBarButtonItem(title: "DESC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:14:76: error: cannot infer contextual base in reference to member 'refresh'
 12 |     private let defaultRowHeight: CGFloat = 44
 13 |
 14 |     private lazy var refreshButton = UIBarButtonItem(barButtonSystemItem: .refresh, target: self, action: #selector(refresh))
    |                                                                            `- error: cannot infer contextual base in reference to member 'refresh'
 15 |     private lazy var toggleOrderButtonAsc = UIBarButtonItem(title: "ASC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
 16 |     private lazy var toggleOrderButtonDesc = UIBarButtonItem(title: "DESC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:15:45: error: cannot find 'UIBarButtonItem' in scope
 13 |
 14 |     private lazy var refreshButton = UIBarButtonItem(barButtonSystemItem: .refresh, target: self, action: #selector(refresh))
 15 |     private lazy var toggleOrderButtonAsc = UIBarButtonItem(title: "ASC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
    |                                             `- error: cannot find 'UIBarButtonItem' in scope
 16 |     private lazy var toggleOrderButtonDesc = UIBarButtonItem(title: "DESC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
 17 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:80:46: error: cannot find type 'UIBarButtonItem' in scope
 78 |     }
 79 |
 80 |     @objc private func toggleOrder(_ sender: UIBarButtonItem) {
    |                                              `- error: cannot find type 'UIBarButtonItem' in scope
 81 |         if sender == toggleOrderButtonAsc {
 82 |             order = .descending
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:15:83: error: cannot infer contextual base in reference to member 'plain'
 13 |
 14 |     private lazy var refreshButton = UIBarButtonItem(barButtonSystemItem: .refresh, target: self, action: #selector(refresh))
 15 |     private lazy var toggleOrderButtonAsc = UIBarButtonItem(title: "ASC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
    |                                                                                   `- error: cannot infer contextual base in reference to member 'plain'
 16 |     private lazy var toggleOrderButtonDesc = UIBarButtonItem(title: "DESC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
 17 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:16:46: error: cannot find 'UIBarButtonItem' in scope
 14 |     private lazy var refreshButton = UIBarButtonItem(barButtonSystemItem: .refresh, target: self, action: #selector(refresh))
 15 |     private lazy var toggleOrderButtonAsc = UIBarButtonItem(title: "ASC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
 16 |     private lazy var toggleOrderButtonDesc = UIBarButtonItem(title: "DESC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
    |                                              `- error: cannot find 'UIBarButtonItem' in scope
 17 |
 18 |     private var isLoading = false {
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:16:85: error: cannot infer contextual base in reference to member 'plain'
 14 |     private lazy var refreshButton = UIBarButtonItem(barButtonSystemItem: .refresh, target: self, action: #selector(refresh))
 15 |     private lazy var toggleOrderButtonAsc = UIBarButtonItem(title: "ASC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
 16 |     private lazy var toggleOrderButtonDesc = UIBarButtonItem(title: "DESC", style: .plain, target: self, action: #selector(toggleOrder(_:)))
    |                                                                                     `- error: cannot infer contextual base in reference to member 'plain'
 17 |
 18 |     private var isLoading = false {
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:6:29: error: cannot find 'UITableView' in scope
  4 |     public let eventDataSource: EventDataSource
  5 |
  6 |     private let tableView = UITableView()
    |                             `- error: cannot find 'UITableView' in scope
  7 |     private let activityIndicatorView = UIActivityIndicatorView()
  8 |     private let activityIndicatorBackgroundView = UIView()
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:7:41: error: cannot find 'UIActivityIndicatorView' in scope
  5 |
  6 |     private let tableView = UITableView()
  7 |     private let activityIndicatorView = UIActivityIndicatorView()
    |                                         `- error: cannot find 'UIActivityIndicatorView' in scope
  8 |     private let activityIndicatorBackgroundView = UIView()
  9 |     private let errorMessageLabel = UILabel()
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:8:51: error: cannot find 'UIView' in scope
  6 |     private let tableView = UITableView()
  7 |     private let activityIndicatorView = UIActivityIndicatorView()
  8 |     private let activityIndicatorBackgroundView = UIView()
    |                                                   `- error: cannot find 'UIView' in scope
  9 |     private let errorMessageLabel = UILabel()
 10 |     private let errorMessageBackgroundView = UIView()
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:9:37: error: cannot find 'UILabel' in scope
  7 |     private let activityIndicatorView = UIActivityIndicatorView()
  8 |     private let activityIndicatorBackgroundView = UIView()
  9 |     private let errorMessageLabel = UILabel()
    |                                     `- error: cannot find 'UILabel' in scope
 10 |     private let errorMessageBackgroundView = UIView()
 11 |     private let searchController = UISearchController(searchResultsController: nil)
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:10:46: error: cannot find 'UIView' in scope
  8 |     private let activityIndicatorBackgroundView = UIView()
  9 |     private let errorMessageLabel = UILabel()
 10 |     private let errorMessageBackgroundView = UIView()
    |                                              `- error: cannot find 'UIView' in scope
 11 |     private let searchController = UISearchController(searchResultsController: nil)
 12 |     private let defaultRowHeight: CGFloat = 44
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:11:36: error: cannot find 'UISearchController' in scope
  9 |     private let errorMessageLabel = UILabel()
 10 |     private let errorMessageBackgroundView = UIView()
 11 |     private let searchController = UISearchController(searchResultsController: nil)
    |                                    `- error: cannot find 'UISearchController' in scope
 12 |     private let defaultRowHeight: CGFloat = 44
 13 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:11:80: error: 'nil' requires a contextual type
  9 |     private let errorMessageLabel = UILabel()
 10 |     private let errorMessageBackgroundView = UIView()
 11 |     private let searchController = UISearchController(searchResultsController: nil)
    |                                                                                `- error: 'nil' requires a contextual type
 12 |     private let defaultRowHeight: CGFloat = 44
 13 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:48:26: error: method does not override any method from its superclass
 46 |     }
 47 |
 48 |     public override func viewDidLoad() {
    |                          `- error: method does not override any method from its superclass
 49 |         super.viewDidLoad()
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:56:26: error: method does not override any method from its superclass
 54 |     }
 55 |
 56 |     public override func viewWillAppear(_ animated: Bool) {
    |                          `- error: method does not override any method from its superclass
 57 |         super.viewWillAppear(animated)
 58 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:153:30: error: cannot find type 'UITableView' in scope
151 |     }
152 |
153 |     public func tableView(_: UITableView, numberOfRowsInSection _: Int) -> Int {
    |                              `- error: cannot find type 'UITableView' in scope
154 |         return searchController.isActive ? filteredEvents.count : eventDataSource.events.count
155 |     }
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:157:91: error: cannot find type 'UITableViewCell' in scope
155 |     }
156 |
157 |     public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    |                                                                                           `- error: cannot find type 'UITableViewCell' in scope
158 |         guard let cell = tableView.dequeueReusableCell(withIdentifier: EventCell.defaultIdentifier, for: indexPath) as? EventCell else {
159 |             fatalError("Unexpected cell")
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:157:40: error: cannot find type 'UITableView' in scope
155 |     }
156 |
157 |     public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    |                                        `- error: cannot find type 'UITableView' in scope
158 |         guard let cell = tableView.dequeueReusableCell(withIdentifier: EventCell.defaultIdentifier, for: indexPath) as? EventCell else {
159 |             fatalError("Unexpected cell")
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:169:59: error: cannot find type 'UISearchController' in scope
167 |     }
168 |
169 |     public func updateSearchResults(for searchController: UISearchController) {
    |                                                           `- error: cannot find type 'UISearchController' in scope
170 |         let searchText = searchController.searchBar.text ?? ""
171 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:3:41: error: cannot find type 'UIViewController' in scope
  1 | import UIKit
  2 |
  3 | public class EventBottleViewController: UIViewController, UITableViewDataSource, UISearchResultsUpdating {
    |                                         `- error: cannot find type 'UIViewController' in scope
  4 |     public let eventDataSource: EventDataSource
  5 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:3:59: error: cannot find type 'UITableViewDataSource' in scope
  1 | import UIKit
  2 |
  3 | public class EventBottleViewController: UIViewController, UITableViewDataSource, UISearchResultsUpdating {
    |                                                           `- error: cannot find type 'UITableViewDataSource' in scope
  4 |     public let eventDataSource: EventDataSource
  5 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift:3:82: error: cannot find type 'UISearchResultsUpdating' in scope
  1 | import UIKit
  2 |
  3 | public class EventBottleViewController: UIViewController, UITableViewDataSource, UISearchResultsUpdating {
    |                                                                                  `- error: cannot find type 'UISearchResultsUpdating' in scope
  4 |     public let eventDataSource: EventDataSource
  5 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:12:21: error: cannot find 'UILabel' in scope
 10 |     let bodyLines = 10
 11 |
 12 |     let dateLabel = UILabel()
    |                     `- error: cannot find 'UILabel' in scope
 13 |     let labelsView = UIStackView()
 14 |     let bodyLabel = UILabel()
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:13:22: error: cannot find 'UIStackView' in scope
 11 |
 12 |     let dateLabel = UILabel()
 13 |     let labelsView = UIStackView()
    |                      `- error: cannot find 'UIStackView' in scope
 14 |     let bodyLabel = UILabel()
 15 |     let labelsSpacerView = UIView()
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:14:21: error: cannot find 'UILabel' in scope
 12 |     let dateLabel = UILabel()
 13 |     let labelsView = UIStackView()
 14 |     let bodyLabel = UILabel()
    |                     `- error: cannot find 'UILabel' in scope
 15 |     let labelsSpacerView = UIView()
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:15:28: error: cannot find 'UIView' in scope
 13 |     let labelsView = UIStackView()
 14 |     let bodyLabel = UILabel()
 15 |     let labelsSpacerView = UIView()
    |                            `- error: cannot find 'UIView' in scope
 16 |
 17 |     var dateFormatter: DateFormatter = {
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:34:26: error: cannot find type 'UITableViewCell' in scope
 32 |     }
 33 |
 34 |     override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
    |                          `- error: cannot find type 'UITableViewCell' in scope
 35 |         super.init(style: style, reuseIdentifier: reuseIdentifier)
 36 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:34:14: error: initializer does not override a designated initializer from its superclass
 32 |     }
 33 |
 34 |     override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
    |              `- error: initializer does not override a designated initializer from its superclass
 35 |         super.init(style: style, reuseIdentifier: reuseIdentifier)
 36 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:76:19: error: method does not override any method from its superclass
 74 |     }
 75 |
 76 |     override func prepareForReuse() {
    |                   `- error: method does not override any method from its superclass
 77 |         super.prepareForReuse()
 78 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift:3:18: error: cannot find type 'UITableViewCell' in scope
  1 | import UIKit
  2 |
  3 | class EventCell: UITableViewCell {
    |                  `- error: cannot find type 'UITableViewCell' in scope
  4 |     static let defaultIdentifier = "EventCell"
  5 |     let labelMargin: CGFloat = 4
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:9:29: error: cannot find 'UILabel' in scope
 7 |     private let labelFontSize: CGFloat = 8
 8 |
 9 |     private let textLabel = UILabel()
   |                             `- error: cannot find 'UILabel' in scope
10 |     private let labelText: String
11 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:12:24: warning: static property 'colors' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     private let labelText: String
11 |
12 |     private static var colors: [String: UIColor] = [:]
   |                        |- warning: static property 'colors' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'colors' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'colors' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     private func color(from _: String) -> UIColor {
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:45:18: error: property does not override any property from its superclass
43 |     }
44 |
45 |     override var intrinsicContentSize: CGSize {
   |                  `- error: property does not override any property from its superclass
46 |         let labelSize = textLabel.intrinsicContentSize
47 |         return CGSize(width: labelSize.width + horizontalPadding * 2, height: labelSize.height + verticalPadding * 2)
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:64:19: error: method does not override any method from its superclass
62 |     }
63 |
64 |     override func draw(_ rect: CGRect) {
   |                   `- error: method does not override any method from its superclass
65 |         let context = UIGraphicsGetCurrentContext()
66 |
/Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift:3:23: error: cannot find type 'UIView' in scope
 1 | import UIKit
 2 |
 3 | class EventLabelView: UIView {
   |                       `- error: cannot find type 'UIView' in scope
 4 |     private let horizontalPadding: CGFloat = 4
 5 |     private let verticalPadding: CGFloat = 1
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
SwiftCompile normal arm64_32 Compiling\ EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottleViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/FileEventDataStore.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ EventBottle (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64_32/EventBottle.abi.json
SwiftCompile normal arm64 Compiling\ EventLabelView.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventLabelView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal armv7k Emitting\ module\ for\ EventBottle (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle.abi.json
SwiftCompile normal armv7k Compiling\ EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventDataSource.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventDataSource.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventDataSource.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventDataSource.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventDataSource.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventDataSource.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling EventDataStore.swift (in target 'EventBottle' from project 'EventBottle')
SwiftCompile normal armv7k Compiling\ EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventBottleFileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/EventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataSource/FileEventDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventBottleFileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/EventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventDataStore/FileEventDataStore.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventBottleViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventLabelView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventCell.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventCell.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventCell.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventCell.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventBottle_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name EventBottle -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventCell.o -index-unit-output-path /EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/armv7k/EventCell.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
SwiftDriver\ Compilation\ Requirements EventBottle normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EventBottle' from project 'EventBottle')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name EventBottle -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle-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/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle.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/EventBottle.build/Debug-watchos/EventBottle.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventBottle.build/Debug-watchos/EventBottle.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/EventBottle.build/Debug-watchos/EventBottle.build/Objects-normal/arm64/EventBottle-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'EventBottle' from project 'EventBottle')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ EventBottle (in target 'EventBottle' from project 'EventBottle')
	SwiftCompile normal armv7k Compiling\ EventCell.swift /Users/admin/builder/spi-builder-workspace/Sources/EventBottle/EventViewer/EventCell.swift (in target 'EventBottle' from project 'EventBottle')
(2 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.