Build Information
Failed to build DBUS, reference main (a648c7), with Swift 6.0 for macOS (SPM) on 26 Apr 2026 18:28:49 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wendylabsinc/dbus.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/wendylabsinc/dbus
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at a648c77 Merge pull request #26 from wendylabsinc/feature/dbus-codegen
Cloned https://github.com/wendylabsinc/dbus.git
Revision (git rev-parse @):
a648c770068b3fa843bc06326ec50d97aea3f152
SUCCESS checkout https://github.com/wendylabsinc/dbus.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/wendylabsinc/dbus.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[0/7] Write dbus-codegen-tool-entitlement.plist
[3/7] Write swift-version-5BDAB9E9C0126B9D.txt
[5/17] Compiling DBusCodegen SignalGenerator.swift
[6/17] Compiling DBusCodegen TypeMapper.swift
[7/17] Compiling DBusCodegen ServerGenerator.swift
[8/17] Compiling DBusCodegen DBusTypes.swift
[9/17] Compiling DBusCodegen Codegen.swift
[10/17] Compiling DBusCodegen IR.swift
[11/17] Compiling DBusCodegen Parser.swift
[12/17] Compiling DBusCodegen ClientGenerator.swift
[13/17] Compiling DBusCodegen CodeWriter.swift
[14/17] Emitting module DBusCodegen
[15/19] Compiling dbus_codegen main.swift
[16/19] Emitting module dbus_codegen
[16/19] Write Objects.LinkFileList
[17/19] Linking dbus-codegen-tool
[18/19] Applying dbus-codegen-tool
Build of product 'dbus-codegen' complete! (6.18s)
Building for debugging...
[0/3] Write swift-version-5BDAB9E9C0126B9D.txt
Build of product 'dbus-codegen' complete! (0.15s)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:13:29: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL'
11 |
12 | let tool = try context.tool(named: "dbus-codegen")
13 | let outputDir = context.pluginWorkDirectory
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL'
| `- note: use 'pluginWorkDirectoryURL' instead
14 |
15 | return target.sourceFiles
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:16:20: warning: 'path' is deprecated: renamed to 'url'
14 |
15 | return target.sourceFiles
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:16:25: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
14 |
15 | return target.sourceFiles
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:18:34: warning: 'path' is deprecated: renamed to 'url'
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:18:39: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:20:36: warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
18 | let outputName = xmlFile.path.lastComponent
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
21 |
22 | return .buildCommand(
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:22:17: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
20 | let outputFile = outputDir.appending(outputName)
21 |
22 | return .buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
24 | executable: tool.path,
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:23:49: warning: 'path' is deprecated: renamed to 'url'
21 |
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
24 | executable: tool.path,
25 | arguments: [
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:23:54: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
21 |
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
24 | executable: tool.path,
25 | arguments: [
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:24:28: warning: 'path' is deprecated: renamed to 'url'
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
24 | executable: tool.path,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
25 | arguments: [
26 | xmlFile.path.string,
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:26:21: warning: 'path' is deprecated: renamed to 'url'
24 | executable: tool.path,
25 | arguments: [
26 | xmlFile.path.string,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
27 | "--output-dir", outputDir.string,
28 | ],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:26:26: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
24 | executable: tool.path,
25 | arguments: [
26 | xmlFile.path.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
27 | "--output-dir", outputDir.string,
28 | ],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:27:39: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
25 | arguments: [
26 | xmlFile.path.string,
27 | "--output-dir", outputDir.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
28 | ],
29 | inputFiles: [xmlFile.path],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:29:32: warning: 'path' is deprecated: renamed to 'url'
27 | "--output-dir", outputDir.string,
28 | ],
29 | inputFiles: [xmlFile.path],
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
30 | outputFiles: [outputFile]
31 | )
[1/1] Compiling plugin DBusCodegenPlugin
Building for debugging...
[1/57] Write dbus-codegen-entitlement.plist
[2/57] Write BleScanner-entitlement.plist
[3/57] Write sources
[3/57] Write ExampleApp-entitlement.plist
[3/57] Write sources
[8/57] Copying PrivacyInfo.xcprivacy
[8/57] Write sources
[8/57] Copying PrivacyInfo.xcprivacy
[14/57] Write sources
[24/57] Compiling CNIOWindows shim.c
[25/57] Compiling CNIOWindows WSAStartup.c
[25/57] Compiling CNIOWASI CNIOWASI.c
[27/57] Compiling CNIOLinux shim.c
[28/57] Compiling CNIOOpenBSD shim.c
[29/57] Write swift-version-5BDAB9E9C0126B9D.txt
[30/57] Compiling CNIOLinux liburing_shims.c
Generated: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/AvahiBrowse/destination/DBusCodegenPlugin/avahi.dbus.swift
[31/57] DBus codegen: avahi.dbus.xml
Generated: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/BleScanner/destination/DBusCodegenPlugin/bluez.dbus.swift
[32/57] DBus codegen: bluez.dbus.xml
[33/57] Compiling CNIOPosix event_loop_id.c
[34/57] Compiling _AtomicsShims.c
[35/69] Compiling CNIOLLHTTP c_nio_http.c
[36/92] Compiling CNIOLLHTTP c_nio_api.c
[37/172] Compiling CNIOLLHTTP c_nio_llhttp.c
[38/172] Write sources
[40/172] Write AvahiBrowse-entitlement.plist
[41/172] Write sources
[42/191] Compiling CNIODarwin shim.c
[44/191] Compiling Atomics ManagedAtomicLazyReference.swift
[45/191] Compiling Atomics UnsafeAtomic.swift
[46/191] Emitting module InternalCollectionsUtilities
[47/192] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[48/192] Emitting module _NIOBase64
[49/192] Compiling _NIOBase64 Base64.swift
[50/192] Compiling Atomics AtomicValue.swift
[51/192] Compiling Atomics AtomicMemoryOrderings.swift
[52/192] Compiling Atomics AtomicReference.swift
[53/192] Compiling Atomics AtomicStorage.swift
[54/192] Compiling Atomics AtomicInteger.swift
[55/192] Compiling Atomics AtomicOptionalWrappable.swift
[56/192] Compiling Atomics OptionalRawRepresentable.swift
[57/192] Compiling Atomics RawRepresentable.swift
[58/192] Compiling Atomics UnsafeAtomicLazyReference.swift
[59/192] Compiling Atomics IntegerOperations.swift
[60/192] Compiling Atomics AtomicBool.swift
[61/192] Compiling Atomics IntegerConformances.swift
[62/192] Compiling Atomics PointerConformances.swift
[63/192] Compiling Atomics Primitives.native.swift
[64/192] Compiling Atomics DoubleWord.swift
[65/192] Compiling Atomics ManagedAtomic.swift
[66/226] Compiling ContainersPreview Producer+Filter.swift
[67/226] Compiling ContainersPreview Producer+Map.swift
[68/226] Compiling ContainersPreview Producer+Reduce.swift
[69/226] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[70/226] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[71/226] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[72/226] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[73/229] Compiling ContainersPreview ContainerIterator.swift
[74/229] Compiling ContainersPreview DynamicContainer.swift
[75/229] Compiling ContainersPreview MutableContainer.swift
[76/229] Compiling ContainersPreview PermutableContainer.swift
[77/229] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[78/229] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[79/229] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[80/229] Compiling ContainersPreview BorrowingSequence.swift
[81/229] Compiling ContainersPreview Drain+Reduce.swift
[82/229] Compiling ContainersPreview Drain.swift
[83/229] Compiling ContainersPreview Producer+Collect.swift
[84/229] Compiling ContainersPreview Producer.swift
[85/229] Compiling ContainersPreview Borrow.swift
[86/229] Compiling ContainersPreview Box.swift
[87/229] Compiling ContainersPreview OutputSpan+Extras.swift
[88/229] Compiling ContainersPreview TemporaryAllocation.swift
[89/229] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[90/229] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[91/229] Emitting module ContainersPreview
[92/229] Compiling ContainersPreview RandomAccessContainer.swift
[93/229] Compiling ContainersPreview RangeExpression2.swift
[94/229] Compiling ContainersPreview RangeReplaceableContainer.swift
[95/229] Compiling ContainersPreview Drain+Map.swift
[96/229] Compiling ContainersPreview BidirectionalContainer.swift
[97/229] Compiling ContainersPreview Container+Filter.swift
[98/229] Compiling ContainersPreview Container+SpanwiseZip.swift
[99/229] Compiling ContainersPreview Container.swift
[100/229] Compiling ContainersPreview Inout.swift
[101/229] Compiling ContainersPreview InputSpan.swift
[102/229] Compiling ContainersPreview Shared.swift
[103/229] Compiling Logging MetadataProvider.swift
[104/229] Compiling _NIODataStructures _TinyArray.swift
[105/229] Emitting module _NIODataStructures
[106/229] Compiling _NIODataStructures Heap.swift
[107/229] Compiling _NIODataStructures PriorityQueue.swift
[108/270] Compiling DequeModule RigidDeque+Hashable.swift
[109/270] Compiling DequeModule RigidDeque+Initializers.swift
[110/270] Compiling DequeModule RigidDeque+Insertions.swift
[111/270] Compiling DequeModule RigidDeque+Prepend.swift
[112/274] Compiling DequeModule UniqueDeque+Append.swift
[113/274] Compiling DequeModule UniqueDeque+Consumption.swift
[114/274] Compiling DequeModule UniqueDeque+Container.swift
[115/274] Compiling DequeModule UniqueDeque+Descriptions.swift
[116/274] Compiling DequeModule RigidDeque+Consumption.swift
[117/274] Compiling DequeModule RigidDeque+Container.swift
[118/274] Compiling DequeModule RigidDeque+Descriptions.swift
[119/274] Compiling DequeModule RigidDeque+Equatable.swift
[120/274] Compiling DequeModule RigidDeque+Experimental.swift
[121/274] Compiling Logging LogHandler.swift
[122/274] Compiling Logging LogEvent.swift
[123/274] Emitting module Logging
[124/274] Compiling Logging Logging.swift
[125/274] Compiling Logging Locks.swift
[126/274] Compiling DequeModule Deque.swift
[127/274] Compiling DequeModule _DequeBuffer.swift
[128/274] Compiling DequeModule UniqueDeque+Insertions.swift
[129/274] Compiling DequeModule UniqueDeque+Prepend.swift
[130/274] Compiling DequeModule RigidDeque+Replacements.swift
[131/274] Compiling DequeModule RigidDeque+Testing.swift
[132/274] Compiling DequeModule Deque+Hashable.swift
[133/274] Compiling DequeModule Deque+Testing.swift
[134/274] Compiling DequeModule Deque._Storage.swift
[135/274] Compiling DequeModule RigidDeque+Removals.swift
[136/274] Compiling DequeModule UniqueDeque+Removals.swift
[137/274] Compiling DequeModule UniqueDeque+Replacements.swift
[138/274] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[139/274] Compiling DequeModule Deque+Extras.swift
[140/274] Compiling DequeModule RigidDeque.swift
[141/274] Compiling DequeModule Deque._UnsafeHandle.swift
[142/274] Compiling DequeModule _DequeBufferHeader.swift
[143/274] Compiling DequeModule RigidDeque+Append.swift
[144/274] Emitting module Atomics
[159/275] Compiling Atomics Unmanaged extensions.swift
[160/275] Compiling DequeModule UniqueDeque+Equatable.swift
[161/275] Compiling DequeModule UniqueDeque+Experimental.swift
[162/275] Compiling DequeModule UniqueDeque+Hashable.swift
[163/275] Compiling DequeModule UniqueDeque+Initializers.swift
[168/275] Compiling DequeModule Deque+Codable.swift
[169/275] Compiling DequeModule Deque+Collection.swift
[170/275] Compiling DequeModule Deque+CustomReflectable.swift
[171/275] Compiling DequeModule Deque+Descriptions.swift
[172/275] Compiling DequeModule Deque+Equatable.swift
[172/275] Compiling c-nioatomics.c
[174/275] Emitting module DequeModule
[174/275] Compiling c-atomics.c
[176/275] Compiling DequeModule UniqueDeque.swift
[177/275] Compiling DequeModule _DequeSlot.swift
[178/275] Compiling DequeModule _UnsafeDequeHandle.swift
[179/275] Compiling DequeModule _UnsafeDequeSegments.swift
[180/282] Compiling DBusCodegen CodeWriter.swift
[181/282] Compiling DBusCodegen ClientGenerator.swift
[182/282] Emitting module DBusCodegen
[183/282] Compiling DBusCodegen Codegen.swift
[184/282] Emitting module NIOConcurrencyHelpers
[185/282] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[186/282] Compiling NIOConcurrencyHelpers lock.swift
[187/282] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[188/282] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[189/282] Compiling NIOConcurrencyHelpers atomics.swift
[190/282] Compiling NIOConcurrencyHelpers NIOLock.swift
[191/347] Compiling NIOCore IO.swift
[192/347] Compiling NIOCore IOData.swift
[193/347] Compiling NIOCore IPProtocol.swift
[194/347] Compiling NIOCore IntegerBitPacking.swift
[195/347] Compiling NIOCore IntegerTypes.swift
[196/347] Compiling NIOCore Interfaces.swift
[197/347] Compiling NIOCore Linux.swift
[198/354] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[199/354] Compiling NIOCore NIOScheduledCallback.swift
[200/354] Compiling NIOCore NIOSendable.swift
[201/354] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[202/354] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[203/354] Compiling NIOCore RecvByteBufferAllocator.swift
[204/354] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[205/354] Compiling NIOCore SocketOptionProvider.swift
[206/354] Compiling NIOCore SystemCallHelpers.swift
[207/354] Compiling NIOCore TimeAmount+Duration.swift
[208/354] Compiling NIOCore TypeAssistedChannelHandler.swift
[209/354] Compiling NIOCore UniversalBootstrapSupport.swift
[210/354] Compiling NIOCore Utilities.swift
[211/354] Compiling Crypto Signature.swift
[212/354] Compiling Crypto CryptoKitErrors_boring.swift
[220/354] Compiling NIOCore SocketAddresses.swift
[221/362] Compiling NIOCore AddressedEnvelope.swift
[222/362] Compiling NIOCore AsyncAwaitSupport.swift
[223/362] Compiling NIOCore AsyncChannel.swift
[224/362] Compiling NIOCore AsyncChannelHandler.swift
[225/362] Compiling NIOCore AsyncChannelInboundStream.swift
[226/362] Compiling NIOCore AsyncChannelOutboundWriter.swift
[227/362] Compiling NIOCore NIOAsyncSequenceProducer.swift
[228/362] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[229/362] Compiling NIOCore ByteBuffer-hex.swift
[230/362] Compiling NIOCore ByteBuffer-int.swift
[231/362] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[232/362] Compiling NIOCore ByteBuffer-multi-int.swift
[233/362] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[234/362] Compiling NIOCore ByteBuffer-views.swift
[235/362] Compiling NIOCore Channel.swift
[236/362] Compiling NIOCore ConvenienceOptionSupport.swift
[237/362] Emitting module Crypto
[238/362] Compiling DBusCodegen SignalGenerator.swift
[239/362] Compiling DBusCodegen ServerGenerator.swift
[240/362] Compiling DBusCodegen IR.swift
[241/362] Compiling DBusCodegen DBusTypes.swift
[242/362] Compiling DBusCodegen TypeMapper.swift
[243/362] Compiling DBusCodegen Parser.swift
[244/362] Compiling NIOCore NIODecodedAsyncSequence.swift
[245/362] Compiling NIOCore NIOLoopBound.swift
[246/362] Compiling NIOCore EventLoopFuture+Deprecated.swift
[247/362] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[248/362] Compiling NIOCore EventLoopFuture.swift
[249/362] Compiling NIOCore FileDescriptor.swift
[250/362] Compiling NIOCore FileHandle.swift
[251/362] Compiling NIOCore FileRegion.swift
[252/362] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[253/362] Compiling NIOCore ByteBuffer-conversions.swift
[254/362] Compiling NIOCore ByteBuffer-core.swift
[255/362] Compiling NIOCore MarkedCircularBuffer.swift
[256/362] Compiling NIOCore MulticastChannel.swift
[257/362] Compiling NIOCore NIOAny.swift
[258/362] Compiling NIOCore NIOCloseOnErrorHandler.swift
[259/362] Compiling NIOCore NIOCoreSendableMetatype.swift
[260/362] Compiling NIOCore DeadChannel.swift
[261/362] Compiling NIOCore DispatchQueue+WithFuture.swift
[262/362] Compiling NIOCore EventLoop+Deprecated.swift
[263/362] Compiling NIOCore EventLoop+SerialExecutor.swift
[264/362] Compiling NIOCore EventLoop.swift
[265/362] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[266/362] Compiling NIOCore ChannelHandler.swift
[267/362] Compiling NIOCore ChannelHandlers.swift
[268/362] Compiling NIOCore ChannelInvoker.swift
[269/362] Compiling NIOCore ChannelOption.swift
[270/362] Compiling NIOCore ChannelPipeline.swift
[271/362] Compiling NIOCore CircularBuffer.swift
[272/362] Compiling NIOCore Codec.swift
[273/362] Compiling NIOCore NIOAsyncWriter.swift
[274/362] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[275/362] Compiling NIOCore BSDSocketAPI.swift
[276/362] Compiling NIOCore ByteBuffer-aux.swift
[277/362] Compiling NIOCore GlobalSingletons.swift
[299/364] Emitting module dbus_codegen
[300/364] Compiling dbus_codegen main.swift
[300/364] Write Objects.LinkFileList
[302/364] Compiling Crypto RNG_boring.swift
[303/364] Compiling Crypto SafeCompare_boring.swift
[304/364] Compiling Crypto Zeroization_boring.swift
[305/364] Compiling Crypto PrettyBytes.swift
[306/364] Compiling Crypto SafeCompare.swift
[307/364] Compiling Crypto SecureBytes.swift
[308/364] Compiling Crypto Zeroization.swift
[309/364] Compiling Crypto resource_bundle_accessor.swift
[316/364] Linking dbus-codegen
[317/364] Applying dbus-codegen
[355/364] Emitting module NIOCore
[356/420] Emitting module NIOEmbedded
[357/420] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[358/420] Compiling NIOEmbedded AsyncTestingChannel.swift
[359/420] Compiling NIOEmbedded Embedded.swift
[360/420] Compiling NIOPosix BSDSocketAPICommon.swift
[361/420] Compiling NIOPosix BSDSocketAPIPosix.swift
[362/420] Compiling NIOPosix BSDSocketAPIWindows.swift
[363/420] Compiling NIOPosix BaseSocket.swift
[364/420] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
[365/420] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[366/425] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[367/425] Compiling NIOPosix System.swift
[368/425] Compiling NIOPosix Thread.swift
[369/425] Compiling NIOPosix ThreadPosix.swift
[370/425] Compiling NIOPosix ThreadWindows.swift
[371/425] Compiling NIOPosix FileDescriptor.swift
[372/425] Compiling NIOPosix GetaddrinfoResolver.swift
[373/425] Compiling NIOPosix HappyEyeballs.swift
[374/425] Compiling NIOPosix IO.swift
[375/425] Compiling NIOPosix IntegerBitPacking.swift
[376/425] Compiling NIOPosix IntegerTypes.swift
[377/425] Emitting module NIOPosix
[378/425] Compiling NIOPosix Utilities.swift
[379/425] Compiling NIOPosix VsockAddress.swift
[380/425] Compiling NIOPosix VsockChannelEvents.swift
[381/425] Compiling NIOPosix Windows.swift
[382/425] Compiling NIOPosix resource_bundle_accessor.swift
[383/425] Compiling NIOPosix Linux.swift
[384/425] Compiling NIOPosix LinuxCPUSet.swift
[385/425] Compiling NIOPosix LinuxUring.swift
[386/425] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[387/425] Compiling NIOPosix NIOPosixSendableMetatype.swift
[388/425] Compiling NIOPosix NIOThreadPool.swift
[389/425] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[390/425] Compiling NIOPosix PosixSingletons.swift
[391/425] Compiling NIOPosix RawSocketBootstrap.swift
[392/425] Compiling NIOPosix Resolver.swift
[393/425] Compiling NIOPosix Selectable.swift
[394/425] Compiling NIOPosix SelectableChannel.swift
[395/425] Compiling NIOPosix SelectorWSAPoll.swift
[396/425] Compiling NIOPosix ServerSocket.swift
[397/425] Compiling NIOPosix Socket.swift
[398/425] Compiling NIOPosix SocketChannel.swift
[399/425] Compiling NIOPosix SocketProtocols.swift
[400/425] Compiling NIOPosix NonBlockingFileIO.swift
[401/425] Compiling NIOPosix PendingDatagramWritesManager.swift
[402/425] Compiling NIOPosix PendingWritesManager.swift
[403/425] Compiling NIOPosix PipeChannel.swift
[404/425] Compiling NIOPosix PipePair.swift
[405/425] Compiling NIOPosix Pool.swift
[406/425] Compiling NIOPosix BaseSocketChannel.swift
[407/425] Compiling NIOPosix BaseStreamSocketChannel.swift
[408/425] Compiling NIOPosix Bootstrap.swift
[409/425] Compiling NIOPosix ControlMessage.swift
[410/425] Compiling NIOPosix DatagramVectorReadManager.swift
[411/425] Compiling NIOPosix Errors+Any.swift
[412/425] Compiling NIOPosix SelectableEventLoop.swift
[413/425] Compiling NIOPosix SelectorEpoll.swift
[414/425] Compiling NIOPosix SelectorGeneric.swift
[415/425] Compiling NIOPosix SelectorKqueue.swift
[416/425] Compiling NIOPosix SelectorUring.swift
[417/427] Emitting module NIO
[418/427] Compiling NIO Exports.swift
[419/444] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[420/444] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[421/445] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[422/445] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[423/445] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[424/445] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[425/445] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[426/445] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[427/445] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[428/445] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[429/445] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[430/445] Compiling NIOHTTP1 ByteCollectionUtils.swift
[431/445] Compiling NIOHTTP1 HTTPDecoder.swift
[432/445] Emitting module NIOHTTP1
[433/445] Compiling NIOHTTP1 HTTPEncoder.swift
[434/445] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[435/445] Compiling NIOHTTP1 HTTPTypes.swift
[436/445] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[437/464] Compiling NIOExtras NIORequestIdentifiable.swift
[438/464] Compiling NIOExtras PCAPRingBuffer.swift
[439/464] Compiling NIOExtras RequestResponseHandlers+State.swift
[440/464] Compiling NIOExtras RequestResponseWithIDHandler.swift
[441/464] Compiling NIOExtras NIOExtrasError.swift
[442/464] Compiling NIOExtras NIOLengthFieldBitLength.swift
[443/464] Compiling NIOExtras QuiescingHelper.swift
[444/464] Compiling NIOExtras RequestResponseHandler.swift
[445/465] Compiling NIOExtras JSONRPCFraming+ContentLengthHeader.swift
[446/465] Compiling NIOExtras JSONRPCFraming.swift
[447/465] Compiling NIOExtras FixedLengthFrameDecoder.swift
[448/465] Compiling NIOExtras HTTP1ProxyConnectHandler.swift
[449/465] Compiling NIOExtras DebugInboundEventsHandler.swift
[450/465] Compiling NIOExtras DebugOutboundEventsHandler.swift
[451/465] Emitting module NIOExtras
[452/465] Compiling NIOExtras LineBasedFrameDecoder.swift
[453/465] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[454/465] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[455/465] Compiling NIOExtras LengthFieldPrepender.swift
[456/465] Compiling NIOExtras WritePCAPHandler.swift
[457/485] Emitting module DBUS
[458/487] Compiling DBUS DBusError.swift
[459/487] Compiling DBUS DBusMessageCodec.swift
[460/487] Compiling DBUS DBusValidation.swift
[461/487] Compiling DBUS HeaderField+Code.swift
[462/487] Compiling DBUS ByteBuffer+DBus.swift
[463/487] Compiling DBUS DBusAddress.swift
[464/487] Compiling DBUS DBusAuthMechanism.swift
[465/487] Compiling DBUS DBusVariant.swift
[466/487] Compiling DBUS TypeSignature.swift
[467/487] Compiling DBUS DBusType.swift
[468/487] Compiling DBUS DBusValue.swift
[469/487] Compiling DBUS HeaderField.swift
[470/487] Compiling DBUS DBusString.swift
[471/487] Compiling DBUS DBusObjectServer.swift
[472/487] Compiling DBUS DBusSerialGenerator.swift
[473/487] Compiling DBUS DBusServerConnection.swift
[474/487] Compiling DBUS DBusMessage+Flags.swift
[475/487] Compiling DBUS DBusMessage+MessageType.swift
[476/487] Compiling DBUS DBusMessage.swift
[477/487] Compiling DBUS DBusAuthenticationHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/DBUS/DBusClient.swift:226:40: error: converting non-sendable function value to '@Sendable (AsyncStream<DBusMessage>.Continuation.Termination) -> Void' may introduce data races
224 | signalSubscribers.append(
225 | (id: id, interface: interface, member: member, continuation: storedContinuation))
226 | storedContinuation.onTermination = { [weak self] _ in
| `- error: converting non-sendable function value to '@Sendable (AsyncStream<DBusMessage>.Continuation.Termination) -> Void' may introduce data races
227 | Task { [weak self] in await self?.removeSignalSubscriber(id: id) }
228 | }
[478/487] Compiling DBUS DBusClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/DBUS/DBusClient.swift:226:40: error: converting non-sendable function value to '@Sendable (AsyncStream<DBusMessage>.Continuation.Termination) -> Void' may introduce data races
224 | signalSubscribers.append(
225 | (id: id, interface: interface, member: member, continuation: storedContinuation))
226 | storedContinuation.onTermination = { [weak self] _ in
| `- error: converting non-sendable function value to '@Sendable (AsyncStream<DBusMessage>.Continuation.Termination) -> Void' may introduce data races
227 | Task { [weak self] in await self?.removeSignalSubscriber(id: id) }
228 | }
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-log.git
[1/6519] Fetching swift-nio-extras
[262/13174] Fetching swift-nio-extras, swift-log
[3348/30610] Fetching swift-nio-extras, swift-log, swift-crypto
[14047/113829] Fetching swift-nio-extras, swift-log, swift-crypto, swift-nio
Fetched https://github.com/apple/swift-nio-extras.git from cache (9.64s)
Fetched https://github.com/apple/swift-nio.git from cache (9.64s)
Fetched https://github.com/apple/swift-log.git from cache (9.64s)
Fetched https://github.com/apple/swift-crypto.git from cache (9.64s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.33.0 (0.50s)
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-algorithms.git
[1/1803] Fetching swift-asn1
[164/7861] Fetching swift-asn1, swift-algorithms
[407/9681] Fetching swift-asn1, swift-algorithms, swift-atomics
[516/12426] Fetching swift-asn1, swift-algorithms, swift-atomics, swift-service-lifecycle
[1480/19578] Fetching swift-asn1, swift-algorithms, swift-atomics, swift-service-lifecycle, swift-certificates
Fetched https://github.com/apple/swift-asn1.git from cache (0.86s)
Fetching https://github.com/apple/swift-http-structured-headers.git
[6083/17775] Fetching swift-algorithms, swift-atomics, swift-service-lifecycle, swift-certificates
[8103/33215] Fetching swift-algorithms, swift-atomics, swift-service-lifecycle, swift-certificates, swift-nio-ssl
[11367/39462] Fetching swift-algorithms, swift-atomics, swift-service-lifecycle, swift-certificates, swift-nio-ssl, swift-async-algorithms
[28192/40704] Fetching swift-algorithms, swift-atomics, swift-service-lifecycle, swift-certificates, swift-nio-ssl, swift-async-algorithms, swift-http-structured-headers
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.82s)
Fetching https://github.com/apple/swift-http-types.git
[39462/39462] Fetching swift-algorithms, swift-atomics, swift-service-lifecycle, swift-certificates, swift-nio-ssl, swift-async-algorithms
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.95s)
Fetched https://github.com/apple/swift-atomics.git from cache (1.95s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.95s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.95s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.95s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.95s)
Fetching https://github.com/apple/swift-nio-http2.git
[1/1043] Fetching swift-http-types
Fetched https://github.com/apple/swift-http-types.git from cache (0.83s)
[1/12108] Fetching swift-nio-http2
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.53s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (2.90s)
Fetching https://github.com/apple/swift-numerics.git
[1/6416] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.02s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.46s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.5.1 (0.46s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.11.0 (0.47s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.1.3 (0.53s)
Fetching https://github.com/apple/swift-collections.git
[1/23686] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.90s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.36.1 (0.49s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (0.62s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.6.0 (2.49s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.97.1 (0.61s)
Fetching https://github.com/apple/swift-system.git
[1/5601] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (1.05s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.18.0 (0.56s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.6.0 (0.43s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.48s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.1 (1.10s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (0.42s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.56s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.42.0 (0.44s)
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.1.3
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.1
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.97.1
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.6.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.11.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.4.1
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.18.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.36.1
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.11.0
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.6.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.15.1
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.33.0
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.42.0
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
BUILD FAILURE 6.0 macosSpm