Build Information
Failed to build mqtt-nio, reference main (36c3ff), with Swift 6.1 for Wasm on 28 May 2025 12:42:57 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sroebert/mqtt-nio.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/sroebert/mqtt-nio
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 36c3ff0 Updated README test badge
Cloned https://github.com/sroebert/mqtt-nio.git
Revision (git rev-parse @):
36c3ff059a7ecfcea708a13b166bdd443b2f201b
SUCCESS checkout https://github.com/sroebert/mqtt-nio.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/sroebert/mqtt-nio.git
https://github.com/sroebert/mqtt-nio.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.41.1",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-nio-ssl",
"requirement" : {
"range" : [
{
"lower_bound" : "2.22.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio-ssl.git"
},
{
"identity" : "swift-nio-transport-services",
"requirement" : {
"range" : [
{
"lower_bound" : "1.13.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio-transport-services.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "mqtt-nio",
"name" : "mqtt-nio",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "MQTTNIO",
"targets" : [
"MQTTNIO"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MQTTNIOTests",
"module_type" : "SwiftTarget",
"name" : "MQTTNIOTests",
"path" : "Tests/MQTTNIOTests",
"product_dependencies" : [
"NIOTestUtils"
],
"sources" : [
"Core/MQTTNIOTestCase.swift",
"Core/TestUtils.swift",
"Tests/AuthenticationTests.swift",
"Tests/ConfigurationTests.swift",
"Tests/ConnectTests.swift",
"Tests/MQTT5Tests.swift",
"Tests/PublishTests.swift",
"Tests/SizeTests.swift",
"Tests/TopicTests.swift"
],
"target_dependencies" : [
"MQTTNIO"
],
"type" : "test"
},
{
"c99name" : "MQTTNIO",
"module_type" : "SwiftTarget",
"name" : "MQTTNIO",
"path" : "Sources/MQTTNIO",
"product_dependencies" : [
"Logging",
"NIO",
"NIOHTTP1",
"NIOWebSocket",
"NIOSSL",
"NIOTransportServices"
],
"product_memberships" : [
"MQTTNIO"
],
"sources" : [
"Connection/MQTTConnectResponse.swift",
"Connection/MQTTConnection.swift",
"Connection/MQTTConnectionEvent.swift",
"Connection/MQTTDisconnectReason.swift",
"Errors/MQTTConnectionError.swift",
"Errors/MQTTProtocolError.swift",
"Errors/MQTTPublishError.swift",
"Errors/MQTTSubscribeError.swift",
"Errors/MQTTUnsubscribeError.swift",
"Errors/MQTTValueError.swift",
"Errors/MQTTWebSocketError.swift",
"Handlers/MQTTErrorHandler.swift",
"Handlers/MQTTFallbackPacketHandler.swift",
"Handlers/MQTTKeepAliveHandler.swift",
"Handlers/MQTTSubscriptionsHandler.swift",
"Handlers/WebSocketHandler.swift",
"Handlers/WebSocketInitialRequestHandler.swift",
"MQTT+Sendable.swift",
"MQTTAuthenticationHandler.swift",
"MQTTCancellable.swift",
"MQTTClient+Concurrency.swift",
"MQTTClient.swift",
"MQTTConfiguration.swift",
"MQTTProtocolVersion.swift",
"Messages/MQTTAcknowledgementHandler.swift",
"Messages/MQTTMessage+Properties.swift",
"Messages/MQTTMessage.swift",
"Messages/MQTTPayload.swift",
"Messages/MQTTQoS.swift",
"Messages/MQTTSubscription.swift",
"Messages/MQTTUnsubscribeResponse.swift",
"Messages/MQTTUserProperty.swift",
"Messages/MQTTWillMessage+Properties.swift",
"Messages/MQTTWillMessage.swift",
"Packet/DataTypes/MQTTReasonCode.swift",
"Packet/DataTypes/MQTTStringPair.swift",
"Packet/DataTypes/MQTTVariableByteInteger.swift",
"Packet/MQTTPacket+Kind.swift",
"Packet/MQTTPacket.swift",
"Packet/MQTTPacketDecoder.swift",
"Packet/MQTTPacketEncoder.swift",
"Packet/MQTTPacketType.swift",
"Packet/MQTTPacketTypeParser.swift",
"Packet/MQTTPacketTypeSerializer.swift",
"Packet/Properties/MQTTProperties.swift",
"Packet/Properties/MQTTProperty.swift",
"Packet/Properties/MQTTPropertyValue.swift",
"Packet/Types/MQTTPacket+Acknowledgement.swift",
"Packet/Types/MQTTPacket+Auth.swift",
"Packet/Types/MQTTPacket+ConnAck.swift",
"Packet/Types/MQTTPacket+Connect.swift",
"Packet/Types/MQTTPacket+Disconnect.swift",
"Packet/Types/MQTTPacket+Ping.swift",
"Packet/Types/MQTTPacket+Publish.swift",
"Packet/Types/MQTTPacket+SubAck.swift",
"Packet/Types/MQTTPacket+Subscribe.swift",
"Packet/Types/MQTTPacket+UnsubAck.swift",
"Packet/Types/MQTTPacket+Unsubscribe.swift",
"Request/MQTTRequest.swift",
"Request/MQTTRequestHandler.swift",
"Request/Types/MQTTConnectRequest.swift",
"Request/Types/MQTTDisconnectRequest.swift",
"Request/Types/MQTTPingRequest.swift",
"Request/Types/MQTTPublishRequest.swift",
"Request/Types/MQTTReAuthenticateRequest.swift",
"Request/Types/MQTTSubscribeRequest.swift",
"Request/Types/MQTTUnsubscribeRequest.swift",
"TSTSLConfiguration.swift",
"Utilities/ByteBuffer+Extensions.swift",
"Utilities/CallbackList.swift",
"Utilities/Collection+Extensions.swift",
"Utilities/String+Extensions.swift",
"Utilities/TimeAmount+Extensions.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-log.git
[1/3836] Fetching swift-log
[845/6503] Fetching swift-log, swift-nio-transport-services
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.45s)
Fetched https://github.com/apple/swift-log.git from cache (0.45s)
[1/14843] Fetching swift-nio-ssl
[1783/90927] Fetching swift-nio-ssl, swift-nio
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.01s)
[53259/76084] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (5.41s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (5.93s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (1.13s)
Fetching https://github.com/apple/swift-atomics.git
[1/1710] Fetching swift-atomics
Fetched https://github.com/apple/swift-atomics.git from cache (0.48s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (1.34s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
[1/4391] Fetching swift-system
[1670/20982] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (0.43s)
[4314/16591] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.24s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (2.11s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.2 (0.46s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (0.62s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.31.0 (0.59s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.2.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.31.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.2.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.4.2
Building for debugging...
[0/31] Write sources
[16/31] Compiling CNIOWASI CNIOWASI.c
[16/31] Compiling CNIOWindows WSAStartup.c
[18/31] Compiling CNIOLinux liburing_shims.c
[19/31] Compiling CNIOWindows shim.c
[19/31] Compiling _AtomicsShims.c
[21/31] Compiling CNIOLinux shim.c
[22/31] Compiling CNIOSHA1 c_nio_sha1.c
[23/31] Write sources
[24/31] Compiling CNIOLLHTTP c_nio_http.c
[25/31] Compiling CNIODarwin shim.c
[26/31] Compiling CNIOLLHTTP c_nio_api.c
[27/31] Write swift-version-24593BA9C3E375BF.txt
[28/75] Compiling CNIOLLHTTP c_nio_llhttp.c
[29/75] Compiling c-nioatomics.c
[31/75] Emitting module _NIOBase64
[32/75] Compiling _NIOBase64 Base64.swift
[33/76] Compiling Atomics UnsafeAtomic.swift
[34/76] Compiling Atomics UnsafeAtomicLazyReference.swift
[35/78] Compiling _NIODataStructures PriorityQueue.swift
[36/78] Emitting module InternalCollectionsUtilities
[37/78] Compiling Atomics OptionalRawRepresentable.swift
[38/78] Compiling Atomics RawRepresentable.swift
[39/78] Compiling Atomics AtomicBool.swift
[40/78] Compiling Atomics Primitives.shims.swift
[41/79] Compiling _NIODataStructures _TinyArray.swift
[42/79] Compiling InternalCollectionsUtilities Descriptions.swift
[43/79] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[44/79] Compiling Atomics AtomicInteger.swift
[45/79] Compiling Atomics AtomicOptionalWrappable.swift
[46/79] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[47/79] Compiling InternalCollectionsUtilities Debugging.swift
[48/79] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[49/79] Compiling InternalCollectionsUtilities _SortedCollection.swift
[50/79] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[51/79] Emitting module Atomics
[59/79] Compiling Atomics AtomicStorage.swift
[60/79] Compiling Atomics AtomicValue.swift
[61/79] Compiling Atomics ManagedAtomic.swift
[62/79] Compiling Atomics ManagedAtomicLazyReference.swift
[69/79] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[71/80] Compiling Atomics IntegerOperations.swift
[72/80] Compiling Atomics Unmanaged extensions.swift
[73/81] Compiling Logging MetadataProvider.swift
[74/81] Compiling _NIODataStructures Heap.swift
[75/81] Emitting module _NIODataStructures
[76/82] Compiling Logging LogHandler.swift
[77/82] Compiling Logging Locks.swift
[78/82] Emitting module Logging
[79/82] Compiling Logging Logging.swift
[80/83] Compiling c-atomics.c
[84/99] Compiling DequeModule _DequeBuffer.swift
[85/99] Compiling DequeModule _DequeBufferHeader.swift
[86/106] Compiling DequeModule Deque+CustomReflectable.swift
[87/106] Compiling DequeModule Deque+Descriptions.swift
[88/106] Compiling DequeModule Deque+Extras.swift
[89/106] Compiling DequeModule Deque+Hashable.swift
[90/106] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[91/106] Compiling DequeModule Deque+Equatable.swift
[92/106] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[93/106] Compiling DequeModule Deque+Testing.swift
[94/106] Compiling DequeModule Deque._Storage.swift
[95/106] Compiling NIOConcurrencyHelpers lock.swift
[96/106] Compiling NIOConcurrencyHelpers NIOLock.swift
[97/106] Compiling DequeModule Deque._UnsafeHandle.swift
[98/106] Compiling DequeModule Deque.swift
[99/106] Compiling DequeModule _DequeSlot.swift
[100/106] Compiling DequeModule _UnsafeWrappedBuffer.swift
[101/106] Emitting module NIOConcurrencyHelpers
[102/106] Compiling DequeModule Deque+Codable.swift
[103/106] Compiling DequeModule Deque+Collection.swift
[104/106] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[105/106] Compiling NIOConcurrencyHelpers atomics.swift
[107/107] Emitting module DequeModule
[109/168] Compiling NIOCore MulticastChannel.swift
[110/168] Compiling NIOCore NIOAny.swift
[111/168] Compiling NIOCore NIOCloseOnErrorHandler.swift
[112/168] Compiling NIOCore NIOLoopBound.swift
[113/168] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[114/168] Compiling NIOCore NIOScheduledCallback.swift
[115/168] Compiling NIOCore NIOSendable.swift
[116/168] Compiling NIOCore RecvByteBufferAllocator.swift
[117/176] Compiling NIOCore IO.swift
[118/176] Compiling NIOCore IOData.swift
[119/176] Compiling NIOCore IPProtocol.swift
[120/176] Compiling NIOCore IntegerBitPacking.swift
[121/176] Compiling NIOCore IntegerTypes.swift
[122/176] Compiling NIOCore Interfaces.swift
[123/176] Compiling NIOCore Linux.swift
[124/176] Compiling NIOCore MarkedCircularBuffer.swift
[125/176] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[126/176] Compiling NIOCore EventLoopFuture+Deprecated.swift
[127/176] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[128/176] Compiling NIOCore EventLoopFuture.swift
[129/176] Compiling NIOCore FileDescriptor.swift
[130/176] Compiling NIOCore FileHandle.swift
[131/176] Compiling NIOCore FileRegion.swift
[132/176] Compiling NIOCore GlobalSingletons.swift
[133/176] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[134/176] Compiling NIOCore SocketAddresses.swift
[135/176] Compiling NIOCore SocketOptionProvider.swift
[136/176] Compiling NIOCore SystemCallHelpers.swift
[137/176] Compiling NIOCore TimeAmount+Duration.swift
[138/176] Compiling NIOCore TypeAssistedChannelHandler.swift
[139/176] Compiling NIOCore UniversalBootstrapSupport.swift
[140/176] Compiling NIOCore Utilities.swift
[141/176] Compiling NIOCore CircularBuffer.swift
[142/176] Compiling NIOCore Codec.swift
[143/176] Compiling NIOCore ConvenienceOptionSupport.swift
[144/176] Compiling NIOCore DeadChannel.swift
[145/176] Compiling NIOCore DispatchQueue+WithFuture.swift
[146/176] Compiling NIOCore EventLoop+Deprecated.swift
[147/176] Compiling NIOCore EventLoop+SerialExecutor.swift
[148/176] Compiling NIOCore EventLoop.swift
[149/176] Compiling NIOCore AddressedEnvelope.swift
[150/176] Compiling NIOCore AsyncAwaitSupport.swift
[151/176] Compiling NIOCore AsyncChannel.swift
[152/176] Compiling NIOCore AsyncChannelHandler.swift
[153/176] Compiling NIOCore AsyncChannelInboundStream.swift
[154/176] Compiling NIOCore AsyncChannelOutboundWriter.swift
[155/176] Compiling NIOCore NIOAsyncSequenceProducer.swift
[156/176] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[157/176] Compiling NIOCore NIOAsyncWriter.swift
[158/176] Compiling NIOCore ByteBuffer-multi-int.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[159/176] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[160/176] Compiling NIOCore ByteBuffer-views.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[161/176] Compiling NIOCore Channel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[162/176] Compiling NIOCore ChannelHandler.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[163/176] Compiling NIOCore ChannelHandlers.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[164/176] Compiling NIOCore ChannelInvoker.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[165/176] Compiling NIOCore ChannelOption.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[166/176] Compiling NIOCore ChannelPipeline.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[167/176] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[168/176] Compiling NIOCore BSDSocketAPI.swift
[169/176] Compiling NIOCore ByteBuffer-aux.swift
[170/176] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[171/176] Compiling NIOCore ByteBuffer-conversions.swift
[172/176] Compiling NIOCore ByteBuffer-core.swift
[173/176] Compiling NIOCore ByteBuffer-hex.swift
[174/176] Compiling NIOCore ByteBuffer-int.swift
[175/176] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[176/176] Emitting module NIOCore
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/46] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[3/52] Compiling Atomics UnsafeAtomic.swift
[4/52] Compiling Atomics UnsafeAtomicLazyReference.swift
[5/52] Compiling Atomics AtomicMemoryOrderings.swift
[6/52] Compiling Atomics DoubleWord.swift
[7/52] Compiling NIOConcurrencyHelpers lock.swift
[8/52] Compiling Logging Locks.swift
[11/52] Compiling Atomics ManagedAtomic.swift
[12/52] Compiling Atomics ManagedAtomicLazyReference.swift
[13/54] Compiling Logging MetadataProvider.swift
[14/54] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[15/54] Compiling NIOConcurrencyHelpers NIOLock.swift
[18/54] Compiling Atomics OptionalRawRepresentable.swift
[19/54] Compiling Atomics RawRepresentable.swift
[20/54] Compiling Atomics AtomicBool.swift
[21/54] Emitting module _NIODataStructures
[22/54] Compiling _NIODataStructures Heap.swift
[23/54] Emitting module _NIOBase64
[24/54] Compiling _NIOBase64 Base64.swift
[25/55] Compiling _NIODataStructures _TinyArray.swift
[26/55] Compiling _NIODataStructures PriorityQueue.swift
[27/56] Emitting module NIOConcurrencyHelpers
[28/56] Emitting module InternalCollectionsUtilities
[31/56] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[32/56] Compiling Atomics Primitives.shims.swift
[33/56] Compiling Atomics AtomicInteger.swift
[34/56] Compiling Atomics AtomicOptionalWrappable.swift
[35/56] Compiling Atomics AtomicReference.swift
[36/56] Compiling Atomics AtomicStorage.swift
[37/56] Compiling Atomics AtomicValue.swift
[38/56] Compiling Atomics IntegerOperations.swift
[39/56] Compiling Atomics Unmanaged extensions.swift
[42/56] Compiling Atomics PointerConformances.swift
[43/56] Compiling Atomics Primitives.native.swift
[45/56] Compiling Atomics IntegerConformances.swift
[48/57] Compiling NIOConcurrencyHelpers atomics.swift
[49/57] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[52/73] Compiling DequeModule Deque+CustomReflectable.swift
[53/73] Compiling DequeModule Deque+Descriptions.swift
[54/75] Compiling DequeModule _DequeBuffer.swift
[55/75] Compiling DequeModule _DequeBufferHeader.swift
[56/75] Compiling Logging Logging.swift
[57/75] Compiling Logging LogHandler.swift
[58/75] Emitting module Logging
[59/76] Compiling DequeModule _DequeSlot.swift
[60/76] Compiling DequeModule _UnsafeWrappedBuffer.swift
[62/76] Compiling DequeModule Deque+Testing.swift
[63/76] Compiling DequeModule Deque._Storage.swift
[64/76] Compiling DequeModule Deque+Extras.swift
[65/76] Compiling DequeModule Deque+Hashable.swift
[66/76] Compiling DequeModule Deque+Equatable.swift
[67/76] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[68/76] Compiling DequeModule Deque._UnsafeHandle.swift
[69/76] Compiling DequeModule Deque.swift
[70/76] Emitting module Atomics
[71/76] Compiling DequeModule Deque+Codable.swift
[72/76] Compiling DequeModule Deque+Collection.swift
[73/76] Emitting module DequeModule
[79/138] Compiling NIOCore MulticastChannel.swift
[80/138] Compiling NIOCore NIOAny.swift
[81/138] Compiling NIOCore NIOCloseOnErrorHandler.swift
[82/138] Compiling NIOCore NIOLoopBound.swift
[83/138] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[84/138] Compiling NIOCore NIOScheduledCallback.swift
[85/138] Compiling NIOCore NIOSendable.swift
[86/138] Compiling NIOCore RecvByteBufferAllocator.swift
[87/146] Compiling NIOCore IO.swift
[88/146] Compiling NIOCore IOData.swift
[89/146] Compiling NIOCore IPProtocol.swift
[90/146] Compiling NIOCore IntegerBitPacking.swift
[91/146] Compiling NIOCore IntegerTypes.swift
[92/146] Compiling NIOCore Interfaces.swift
[93/146] Compiling NIOCore Linux.swift
[94/146] Compiling NIOCore MarkedCircularBuffer.swift
[95/146] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[96/146] Compiling NIOCore EventLoopFuture+Deprecated.swift
[97/146] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[98/146] Compiling NIOCore EventLoopFuture.swift
[99/146] Compiling NIOCore FileDescriptor.swift
[100/146] Compiling NIOCore FileHandle.swift
[101/146] Compiling NIOCore FileRegion.swift
[102/146] Compiling NIOCore GlobalSingletons.swift
[103/146] Compiling NIOCore ByteBuffer-multi-int.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[104/146] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[105/146] Compiling NIOCore ByteBuffer-views.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[106/146] Compiling NIOCore Channel.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[107/146] Compiling NIOCore ChannelHandler.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[108/146] Compiling NIOCore ChannelHandlers.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[109/146] Compiling NIOCore ChannelInvoker.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[110/146] Compiling NIOCore ChannelOption.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[111/146] Compiling NIOCore ChannelPipeline.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Channel.swift:461:19: error: type 'ChannelError' has no member 'multicastNotSupported'
459 | case let .illegalMulticastAddress(address):
460 | "Illegal multicast address \(address)"
461 | case let .multicastNotSupported(interface):
| `- error: type 'ChannelError' has no member 'multicastNotSupported'
462 | "Multicast not supported on interface \(interface)"
463 | case .inappropriateOperationForState:
[112/146] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[113/146] Compiling NIOCore SocketAddresses.swift
[114/146] Compiling NIOCore SocketOptionProvider.swift
[115/146] Compiling NIOCore SystemCallHelpers.swift
[116/146] Compiling NIOCore TimeAmount+Duration.swift
[117/146] Compiling NIOCore TypeAssistedChannelHandler.swift
[118/146] Compiling NIOCore UniversalBootstrapSupport.swift
[119/146] Compiling NIOCore Utilities.swift
[120/146] Compiling NIOCore AddressedEnvelope.swift
[121/146] Compiling NIOCore AsyncAwaitSupport.swift
[122/146] Compiling NIOCore AsyncChannel.swift
[123/146] Compiling NIOCore AsyncChannelHandler.swift
[124/146] Compiling NIOCore AsyncChannelInboundStream.swift
[125/146] Compiling NIOCore AsyncChannelOutboundWriter.swift
[126/146] Compiling NIOCore NIOAsyncSequenceProducer.swift
[127/146] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[128/146] Compiling NIOCore NIOAsyncWriter.swift
[129/146] Emitting module NIOCore
[130/146] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[131/146] Compiling NIOCore BSDSocketAPI.swift
[132/146] Compiling NIOCore ByteBuffer-aux.swift
[133/146] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[134/146] Compiling NIOCore ByteBuffer-conversions.swift
[135/146] Compiling NIOCore ByteBuffer-core.swift
[136/146] Compiling NIOCore ByteBuffer-hex.swift
[137/146] Compiling NIOCore ByteBuffer-int.swift
[138/146] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[139/146] Compiling NIOCore CircularBuffer.swift
[140/146] Compiling NIOCore Codec.swift
[141/146] Compiling NIOCore ConvenienceOptionSupport.swift
[142/146] Compiling NIOCore DeadChannel.swift
[143/146] Compiling NIOCore DispatchQueue+WithFuture.swift
[144/146] Compiling NIOCore EventLoop+Deprecated.swift
[145/146] Compiling NIOCore EventLoop+SerialExecutor.swift
[146/146] Compiling NIOCore EventLoop.swift
BUILD FAILURE 6.1 wasm