The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of swift-nio-ssh, reference main (8f33ca), with Swift 6.1 for Linux on 4 Nov 2025 19:29:54 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apple/swift-nio-ssh.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/apple/swift-nio-ssh
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 8f33cac Bump minimum Swift version to 6.0 (#216)
Cloned https://github.com/apple/swift-nio-ssh.git
Revision (git rev-parse @):
8f33cac67309a13aecc0a4d95044543549b20ffb
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/apple/swift-nio-ssh.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/apple/swift-nio-ssh.git
https://github.com/apple/swift-nio-ssh.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.81.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics.git"
    }
  ],
  "manifest_display_name" : "swift-nio-ssh",
  "name" : "swift-nio-ssh",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "NIOSSH",
      "targets" : [
        "NIOSSH"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "NIOSSHServer",
      "targets" : [
        "NIOSSHServer"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "NIOSSHPerformanceTester",
      "targets" : [
        "NIOSSHPerformanceTester"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "NIOSSHClient",
      "targets" : [
        "NIOSSHClient"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NIOSSHTests",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHTests",
      "path" : "Tests/NIOSSHTests",
      "product_dependencies" : [
        "NIOCore",
        "NIOEmbedded",
        "NIOFoundationCompat"
      ],
      "sources" : [
        "AESGCMTests.swift",
        "ByteBuffer+SSHTests.swift",
        "CertifiedKeyTests.swift",
        "ChildChannelMultiplexerTests.swift",
        "ECKeyExchangeTests.swift",
        "EndToEndTests.swift",
        "FuzzResultTests.swift",
        "HostKeyTests.swift",
        "SSHConnectionStateMachineTests.swift",
        "SSHEncryptedTrafficTests.swift",
        "SSHHandlerTests.swift",
        "SSHKeyExchangeStateMachineTests.swift",
        "SSHMessagesTests.swift",
        "SSHPackerSerializerTests.swift",
        "SSHPacketParserTests.swift",
        "UserAuthenticationStateMachineTests.swift",
        "Utilities.swift",
        "UtilitiesTests.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "test"
    },
    {
      "c99name" : "NIOSSHServer",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHServer",
      "path" : "Sources/NIOSSHServer",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "NIOFoundationCompat",
        "Crypto"
      ],
      "product_memberships" : [
        "NIOSSHServer"
      ],
      "sources" : [
        "DataToBufferCodec.swift",
        "ExecHandler.swift",
        "GlueHandler.swift",
        "RemotePortForwarding.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSHPerformanceTester",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHPerformanceTester",
      "path" : "Sources/NIOSSHPerformanceTester",
      "product_dependencies" : [
        "NIOCore",
        "NIOEmbedded",
        "Crypto"
      ],
      "product_memberships" : [
        "NIOSSHPerformanceTester"
      ],
      "sources" : [
        "Benchmark.swift",
        "BenchmarkHandshake.swift",
        "BenchmarkLinearThroughput.swift",
        "main.swift",
        "shared.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSHClient",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHClient",
      "path" : "Sources/NIOSSHClient",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "NIOConcurrencyHelpers"
      ],
      "product_memberships" : [
        "NIOSSHClient"
      ],
      "sources" : [
        "ExecHandler.swift",
        "GlueHandler.swift",
        "InteractivePasswordPromptDelegate.swift",
        "PortForwardingServer.swift",
        "SimpleCLIParser.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSH",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSH",
      "path" : "Sources/NIOSSH",
      "product_dependencies" : [
        "NIOCore",
        "NIOConcurrencyHelpers",
        "NIOFoundationCompat",
        "Crypto",
        "Atomics"
      ],
      "product_memberships" : [
        "NIOSSH",
        "NIOSSHServer",
        "NIOSSHPerformanceTester",
        "NIOSSHClient"
      ],
      "sources" : [
        "ByteBuffer+SSH.swift",
        "CSPRNG/CSPRNG.swift",
        "Child Channels/ChildChannelOptions.swift",
        "Child Channels/ChildChannelStateMachine.swift",
        "Child Channels/ChildChannelUserEvents.swift",
        "Child Channels/ChildChannelWindowManager.swift",
        "Child Channels/ChildChannelWritabilityManager.swift",
        "Child Channels/OutboundFlowController.swift",
        "Child Channels/SSHChannelData.swift",
        "Child Channels/SSHChannelIdentifier.swift",
        "Child Channels/SSHChannelMultiplexer.swift",
        "Child Channels/SSHChannelType.swift",
        "Child Channels/SSHChildChannel.swift",
        "Connection State Machine/Operations/AcceptsChannelMessages.swift",
        "Connection State Machine/Operations/AcceptsKeyExchangeMessages.swift",
        "Connection State Machine/Operations/AcceptsUserAuthMessages.swift",
        "Connection State Machine/Operations/AcceptsVersionMessages.swift",
        "Connection State Machine/Operations/SendsChannelMessages.swift",
        "Connection State Machine/Operations/SendsKeyExchangeMessages.swift",
        "Connection State Machine/Operations/SendsUserAuthMessages.swift",
        "Connection State Machine/SSHConnectionStateMachine.swift",
        "Connection State Machine/States/ActiveState.swift",
        "Connection State Machine/States/IdleState.swift",
        "Connection State Machine/States/KeyExchangeState.swift",
        "Connection State Machine/States/ReceivedKexInitWhenActiveState.swift",
        "Connection State Machine/States/ReceivedNewKeysState.swift",
        "Connection State Machine/States/RekeyingReceivedNewKeysState.swift",
        "Connection State Machine/States/RekeyingSentNewKeysState.swift",
        "Connection State Machine/States/RekeyingState.swift",
        "Connection State Machine/States/SentKexInitWhenActiveState.swift",
        "Connection State Machine/States/SentNewKeysState.swift",
        "Connection State Machine/States/SentVersionState.swift",
        "Connection State Machine/States/UserAuthenticationState.swift",
        "Constants.swift",
        "GlobalRequestDelegate.swift",
        "Key Exchange/ECDHCompatibleKey.swift",
        "Key Exchange/EllipticCurveKeyExchange.swift",
        "Key Exchange/SSHKeyExchangeResult.swift",
        "Key Exchange/SSHKeyExchangeStateMachine.swift",
        "Keys And Signatures/ClientServerAuthenticationDelegate.swift",
        "Keys And Signatures/NIOSSHCertifiedPublicKey.swift",
        "Keys And Signatures/NIOSSHPrivateKey.swift",
        "Keys And Signatures/NIOSSHPublicKey.swift",
        "Keys And Signatures/NIOSSHSignature.swift",
        "NIOSSHError.swift",
        "NIOSSHHandler.swift",
        "Role.swift",
        "SSHClientConfiguration.swift",
        "SSHEncryptablePacketPayload.swift",
        "SSHMessages.swift",
        "SSHPacketParser.swift",
        "SSHPacketSerializer.swift",
        "SSHServerConfiguration.swift",
        "SSHTerminalModes.swift",
        "TransportProtection/AESGCM.swift",
        "TransportProtection/SSHTransportProtection.swift",
        "User Authentication/ClientUserAuthenticationDelegate.swift",
        "User Authentication/DenyAllServerAuthDelegate.swift",
        "User Authentication/ServerUserAuthenticationDelegate.swift",
        "User Authentication/SimplePasswordDelegate.swift",
        "User Authentication/UserAuthDelegate.swift",
        "User Authentication/UserAuthSignablePayload.swift",
        "User Authentication/UserAuthenticationMethod.swift",
        "User Authentication/UserAuthenticationStateMachine.swift",
        "_NIOSSHSendableMetatype.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:808cb2b2a6cec76654a3acbd283c6c2205bc60d2b29562c95b9f5147612f6d32
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-atomics.git
[1/1820] Fetching swift-atomics
[1821/19248] Fetching swift-atomics, swift-crypto
[3390/99172] Fetching swift-atomics, swift-crypto, swift-nio
Fetched https://github.com/apple/swift-atomics.git from cache (3.14s)
Fetched https://github.com/apple/swift-crypto.git from cache (3.19s)
[59144/79924] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (9.24s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (12.22s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.88.0 (1.42s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
[1/5167] Fetching swift-system
[3153/23453] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (0.82s)
[7681/18286] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.96s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.3 (3.80s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.3.0 (1.02s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.1 (4.42s)
Fetching https://github.com/apple/swift-asn1.git
[1/1653] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (0.31s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.5.0 (3.62s)
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.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.88.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-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.5.0
Building for debugging...
[0/418] Write sources
[11/418] Compiling _AtomicsShims.c
[12/418] Write sources
[18/418] Compiling CNIOWindows shim.c
[19/418] Compiling CNIOWindows WSAStartup.c
[20/418] Compiling CNIOWASI CNIOWASI.c
[21/418] Compiling CNIOPosix event_loop_id.c
[22/418] Compiling CNIOLinux shim.c
[23/418] Write swift-version-24593BA9C3E375BF.txt
[24/418] Compiling CNIOLinux liburing_shims.c
[25/418] Compiling CNIODarwin shim.c
[26/418] Compiling a_d2i_fp.cc
[27/440] Compiling a_bool.cc
[28/458] Compiling pem_xaux.cc
[29/458] Compiling pem_pk8.cc
[30/458] Compiling pem_pkey.cc
[31/458] Compiling pem_x509.cc
[32/458] Compiling fiat_p256_adx_sqr.S
[33/458] Compiling fiat_p256_adx_mul.S
[34/458] Compiling fiat_curve25519_adx_square.S
[35/458] Compiling fiat_curve25519_adx_mul.S
[36/458] Compiling md5-x86_64-linux.S
[37/458] Compiling md5-x86_64-apple.S
[38/458] Compiling CCryptoBoringSSLShims shims.c
[39/458] Compiling md5-586-linux.S
[40/458] Compiling md5-586-apple.S
[41/458] Compiling chacha20_poly1305_x86_64-linux.S
[42/458] Compiling chacha20_poly1305_x86_64-apple.S
[43/458] Compiling err_data.cc
[44/458] Compiling chacha20_poly1305_armv8-win.S
[45/458] Compiling chacha20_poly1305_armv8-linux.S
[46/458] Compiling chacha20_poly1305_armv8-apple.S
[47/458] Compiling chacha-x86_64-linux.S
[48/458] Compiling chacha-x86_64-apple.S
[49/458] Compiling chacha-x86-linux.S
[50/458] Compiling chacha-x86-apple.S
[51/458] Compiling chacha-armv8-win.S
[52/458] Compiling chacha-armv8-linux.S
[53/458] Compiling chacha-armv8-apple.S
[54/458] Compiling chacha-armv4-linux.S
[55/458] Compiling aes128gcmsiv-x86_64-linux.S
[56/458] Compiling x86_64-mont5-linux.S
[57/458] Compiling aes128gcmsiv-x86_64-apple.S
[58/458] Compiling x86_64-mont5-apple.S
[59/458] Compiling x86_64-mont-linux.S
[60/458] Compiling x86_64-mont-apple.S
[61/458] Compiling x86-mont-linux.S
[62/458] Compiling x86-mont-apple.S
[63/458] Compiling vpaes-x86_64-linux.S
[64/458] Compiling vpaes-x86_64-apple.S
[65/458] Compiling vpaes-x86-linux.S
[66/458] Compiling vpaes-x86-apple.S
[67/458] Compiling vpaes-armv8-win.S
[68/458] Compiling vpaes-armv8-linux.S
[69/458] Compiling vpaes-armv8-apple.S
[70/458] Compiling vpaes-armv7-linux.S
[71/458] Compiling sha512-x86_64-linux.S
[72/458] Compiling sha512-x86_64-apple.S
[73/458] Compiling sha512-armv8-win.S
[74/458] Compiling sha512-armv8-linux.S
[75/458] Compiling sha512-armv8-apple.S
[76/458] Compiling sha512-armv4-linux.S
[77/458] Compiling sha512-586-linux.S
[78/458] Compiling sha512-586-apple.S
[79/458] Compiling sha256-x86_64-linux.S
[80/458] Compiling sha256-x86_64-apple.S
[81/458] Compiling sha256-armv8-win.S
[82/458] Compiling sha256-armv8-linux.S
[83/458] Compiling sha256-armv8-apple.S
[84/458] Compiling sha256-armv4-linux.S
[85/458] Compiling sha256-586-apple.S
[86/458] Compiling sha256-586-linux.S
[87/458] Compiling sha1-x86_64-apple.S
[88/458] Compiling sha1-x86_64-linux.S
[89/458] Compiling sha1-armv8-win.S
[90/458] Compiling sha1-armv8-linux.S
[91/458] Compiling sha1-armv8-apple.S
[92/458] Compiling sha1-armv4-large-linux.S
[93/458] Compiling sha1-586-linux.S
[93/458] Compiling sha1-586-apple.S
[96/458] Compiling Atomics IntegerConformances.swift
[97/458] Compiling Atomics PointerConformances.swift
[98/460] Emitting module _NIOBase64
[99/460] Compiling _NIOBase64 Base64.swift
[100/461] Compiling Atomics Primitives.native.swift
[101/461] Compiling Atomics OptionalRawRepresentable.swift
[102/461] Compiling rsaz-avx2-linux.S
[103/461] Compiling rsaz-avx2-apple.S
[105/461] Compiling Atomics UnsafeAtomic.swift
[106/461] Compiling Atomics UnsafeAtomicLazyReference.swift
[107/461] Compiling Atomics ManagedAtomic.swift
[108/461] Compiling Atomics ManagedAtomicLazyReference.swift
[109/461] Compiling Atomics AtomicStorage.swift
[110/461] Compiling Atomics AtomicValue.swift
[111/461] Compiling Atomics AtomicInteger.swift
[112/461] Compiling Atomics AtomicOptionalWrappable.swift
[113/461] Compiling Atomics AtomicReference.swift
[116/463] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.swift
[117/463] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[117/463] Compiling rdrand-x86_64-linux.S
[119/463] Compiling _NIODataStructures PriorityQueue.swift
[120/463] Compiling _NIODataStructures _TinyArray.swift
[121/463] Compiling Atomics RawRepresentable.swift
[122/463] Compiling Atomics AtomicBool.swift
[124/463] Emitting module InternalCollectionsUtilities
[129/463] Emitting module Atomics
[133/464] Compiling rdrand-x86_64-apple.S
[141/464] Compiling p256_beeu-x86_64-asm-linux.S
[142/464] Wrapping AST for _NIOBase64 for debugging
[143/464] Compiling p256_beeu-x86_64-asm-apple.S
[144/464] Compiling p256_beeu-armv8-asm-win.S
[145/464] Compiling c-nioatomics.c
[147/464] Compiling Atomics IntegerOperations.swift
[148/464] Compiling Atomics Unmanaged extensions.swift
[148/465] Compiling p256_beeu-armv8-asm-linux.S
[149/465] Compiling p256_beeu-armv8-asm-apple.S
[150/465] Compiling p256-armv8-asm-win.S
[151/465] Compiling p256-x86_64-asm-apple.S
[152/465] Compiling p256-x86_64-asm-linux.S
[153/465] Compiling p256-armv8-asm-apple.S
[154/465] Compiling p256-armv8-asm-linux.S
[155/465] Compiling ghashv8-armv8-win.S
[157/465] Wrapping AST for InternalCollectionsUtilities for debugging
[158/465] Compiling ghashv8-armv7-linux.S
[159/465] Compiling ghashv8-armv8-apple.S
[160/465] Compiling ghashv8-armv8-linux.S
[161/470] Compiling ghash-x86-apple.S
[162/474] Compiling ghash-x86_64-linux.S
[163/480] Compiling ghash-x86-linux.S
[164/480] Compiling ghash-ssse3-x86_64-linux.S
[165/480] Compiling ghash-x86_64-apple.S
[166/480] Compiling ghash-ssse3-x86_64-apple.S
[167/480] Compiling ghash-ssse3-x86-linux.S
[168/480] Compiling ghash-neon-armv8-win.S
[169/480] Compiling ghash-ssse3-x86-apple.S
[170/480] Compiling ghash-neon-armv8-linux.S
[172/480] Emitting module _NIODataStructures
[173/480] Compiling _NIODataStructures Heap.swift
[173/481] Compiling ghash-neon-armv8-apple.S
[174/481] Compiling ghash-armv4-linux.S
[175/481] Compiling co-586-linux.S
[176/481] Compiling bsaes-armv7-linux.S
[177/481] Compiling co-586-apple.S
[178/481] Compiling bn-armv8-win.S
[179/481] Compiling bn-586-linux.S
[180/481] Compiling bn-armv8-linux.S
[181/481] Compiling bn-armv8-apple.S
[183/481] Compiling bn-586-apple.S
[184/481] Compiling armv8-mont-win.S
[185/481] Compiling armv4-mont-linux.S
[186/481] Compiling armv8-mont-linux.S
[187/481] Compiling armv8-mont-apple.S
[188/481] Compiling aesv8-gcm-armv8-win.S
[189/481] Compiling aesv8-gcm-armv8-apple.S
[190/481] Compiling aesv8-gcm-armv8-linux.S
[191/481] Compiling aesv8-armv8-win.S
[192/481] Compiling aesv8-armv7-linux.S
[193/481] Compiling aesv8-armv8-apple.S
[194/481] Compiling aesv8-armv8-linux.S
[196/481] Compiling DequeModule _DequeBuffer.swift
[197/481] Compiling DequeModule _DequeBufferHeader.swift
[197/483] Wrapping AST for _NIODataStructures for debugging
[198/483] Compiling aesni-x86_64-linux.S
[199/483] Compiling aesni-x86_64-apple.S
[200/483] Compiling aesni-gcm-x86_64-linux.S
[201/483] Compiling aesni-x86-apple.S
[202/483] Compiling aesni-x86-linux.S
[203/483] Compiling aesni-gcm-x86_64-apple.S
[205/483] Compiling DequeModule Deque+CustomReflectable.swift
[206/483] Compiling DequeModule Deque+Descriptions.swift
[207/483] Compiling DequeModule Deque+Equatable.swift
[208/483] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[208/483] Compiling aes-gcm-avx2-x86_64-linux.S
[209/483] Compiling aes-gcm-avx512-x86_64-linux.S
[210/483] Compiling aes-gcm-avx512-x86_64-apple.S
[211/483] Compiling aes-gcm-avx2-x86_64-apple.S
[213/483] Compiling DequeModule Deque+Extras.swift
[214/483] Compiling DequeModule Deque+Hashable.swift
[215/483] Compiling DequeModule _DequeSlot.swift
[216/483] Compiling DequeModule _UnsafeWrappedBuffer.swift
[216/483] Compiling x_req.cc
[218/483] Compiling DequeModule Deque+Testing.swift
[219/483] Compiling DequeModule Deque._Storage.swift
[220/483] Compiling DequeModule Deque._UnsafeHandle.swift
[221/483] Compiling DequeModule Deque.swift
[221/483] Compiling c-atomics.c
[222/483] Compiling xwing.cc
[224/488] Compiling DequeModule Deque+Codable.swift
[225/488] Compiling DequeModule Deque+Collection.swift
[226/489] Emitting module DequeModule
[226/490] Compiling x_sig.cc
[228/490] Wrapping AST for DequeModule for debugging
[229/490] Compiling x_x509.cc
[231/490] Compiling NIOConcurrencyHelpers NIOLock.swift
[231/490] Compiling x_spki.cc
[232/490] Compiling x_x509a.cc
[234/490] Compiling NIOConcurrencyHelpers lock.swift
[235/490] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[236/490] Compiling NIOConcurrencyHelpers atomics.swift
[236/490] Compiling x_pubkey.cc
[238/490] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[239/490] Emitting module NIOConcurrencyHelpers
[240/491] Compiling x_name.cc
[241/491] Compiling x509spki.cc
[242/491] Wrapping AST for NIOConcurrencyHelpers for debugging
[243/554] Compiling x_exten.cc
[244/554] Compiling x_crl.cc
[245/554] Compiling x_attrib.cc
[246/554] Compiling x_all.cc
[247/554] Compiling x_algor.cc
[248/554] Compiling x509_v3.cc
[248/554] Compiling x509rset.cc
[250/554] Compiling x509name.cc
[251/554] Compiling x509_vpm.cc
[252/554] Compiling x509cset.cc
[254/554] Compiling NIOCore NIOCoreSendableMetatype.swift
[255/554] Compiling NIOCore NIODecodedAsyncSequence.swift
[256/554] Compiling NIOCore NIOLoopBound.swift
[257/554] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[258/554] Compiling NIOCore NIOScheduledCallback.swift
[259/554] Compiling NIOCore NIOSendable.swift
[260/554] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[261/554] Compiling NIOCore RecvByteBufferAllocator.swift
[261/562] Compiling x509_vfy.cc
[262/562] Compiling x509_txt.cc
[264/562] Compiling NIOCore IPProtocol.swift
[265/562] Compiling NIOCore IntegerBitPacking.swift
[266/562] Compiling NIOCore IntegerTypes.swift
[267/562] Compiling NIOCore Interfaces.swift
[268/562] Compiling NIOCore Linux.swift
[269/562] Compiling NIOCore MarkedCircularBuffer.swift
[270/562] Compiling NIOCore MulticastChannel.swift
[271/562] Compiling NIOCore NIOAny.swift
[272/562] Compiling NIOCore NIOCloseOnErrorHandler.swift
[272/562] Compiling x509_set.cc
[273/562] Compiling x509_req.cc
[274/562] Compiling x509_trs.cc
[275/562] Compiling x509_obj.cc
[276/562] Compiling x509_lu.cc
[277/562] Compiling x509_ext.cc
[278/562] Compiling x509_def.cc
[280/562] Compiling NIOCore EventLoopFuture+Deprecated.swift
[281/562] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[282/562] Compiling NIOCore EventLoopFuture.swift
[283/562] Compiling NIOCore FileDescriptor.swift
[284/562] Compiling NIOCore FileHandle.swift
[285/562] Compiling NIOCore FileRegion.swift
[286/562] Compiling NIOCore GlobalSingletons.swift
[287/562] Compiling NIOCore IO.swift
[288/562] Compiling NIOCore IOData.swift
[289/562] Compiling NIOCore CircularBuffer.swift
[290/562] Compiling NIOCore Codec.swift
[291/562] Compiling NIOCore ConvenienceOptionSupport.swift
[292/562] Compiling NIOCore DeadChannel.swift
[293/562] Compiling NIOCore DispatchQueue+WithFuture.swift
[294/562] Compiling NIOCore EventLoop+Deprecated.swift
[295/562] Compiling NIOCore EventLoop+SerialExecutor.swift
[296/562] Compiling NIOCore EventLoop.swift
[297/562] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[297/562] Compiling x509_d2.cc
[298/562] Compiling x509_cmp.cc
[299/562] Compiling x509.cc
[300/562] Compiling x509_att.cc
[301/562] Compiling v3_pcons.cc
[302/562] Compiling v3_utl.cc
[304/562] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[305/562] Compiling NIOCore SocketAddresses.swift
[306/562] Compiling NIOCore SocketOptionProvider.swift
[307/562] Compiling NIOCore SystemCallHelpers.swift
[308/562] Compiling NIOCore TimeAmount+Duration.swift
[309/562] Compiling NIOCore TypeAssistedChannelHandler.swift
[310/562] Compiling NIOCore UniversalBootstrapSupport.swift
[311/562] Compiling NIOCore Utilities.swift
[311/562] Compiling v3_ncons.cc
[312/562] Compiling v3_skey.cc
[313/562] Compiling v3_purp.cc
[314/562] Compiling v3_int.cc
[315/562] Compiling v3_prn.cc
[316/562] Compiling v3_pmaps.cc
[317/562] Compiling v3_genn.cc
[318/562] Compiling v3_ocsp.cc
[319/562] Compiling v3_crld.cc
[320/562] Compiling v3_lib.cc
[321/562] Compiling v3_cpols.cc
[322/562] Compiling v3_ia5.cc
[323/562] Compiling v3_info.cc
[324/562] Compiling v3_extku.cc
[325/562] Compiling v3_enum.cc
[326/562] Compiling v3_alt.cc
[327/562] Compiling t_x509a.cc
[328/562] Compiling v3_conf.cc
[329/562] Compiling v3_bitst.cc
[330/562] Compiling v3_bcons.cc
[332/562] Emitting module NIOCore
[332/562] Compiling v3_akeya.cc
[333/562] Compiling v3_akey.cc
[334/562] Compiling t_x509.cc
[335/562] Compiling t_req.cc
[336/562] Compiling t_crl.cc
[337/562] Compiling i2d_pr.cc
[338/562] Compiling policy.cc
[339/562] Compiling rsa_pss.cc
[340/562] Compiling name_print.cc
[341/562] Compiling by_dir.cc
[342/562] Compiling by_file.cc
[343/562] Compiling algorithm.cc
[344/562] Compiling asn1_gen.cc
[345/562] Compiling a_digest.cc
[346/562] Compiling a_verify.cc
[347/562] Compiling a_sign.cc
[349/562] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[350/562] Compiling NIOCore BSDSocketAPI.swift
[351/562] Compiling NIOCore ByteBuffer-aux.swift
[352/562] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[353/562] Compiling NIOCore ByteBuffer-conversions.swift
[354/562] Compiling NIOCore ByteBuffer-core.swift
[355/562] Compiling NIOCore ByteBuffer-hex.swift
[356/562] Compiling NIOCore ByteBuffer-int.swift
[357/562] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[358/562] Compiling NIOCore AddressedEnvelope.swift
[359/562] Compiling NIOCore AsyncAwaitSupport.swift
[360/562] Compiling NIOCore AsyncChannel.swift
[361/562] Compiling NIOCore AsyncChannelHandler.swift
[362/562] Compiling NIOCore AsyncChannelInboundStream.swift
[363/562] Compiling NIOCore AsyncChannelOutboundWriter.swift
[364/562] Compiling NIOCore NIOAsyncSequenceProducer.swift
[365/562] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[366/562] Compiling NIOCore NIOAsyncWriter.swift
[367/562] Compiling NIOCore ByteBuffer-multi-int.swift
[368/562] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[369/562] Compiling NIOCore ByteBuffer-views.swift
[370/562] Compiling NIOCore Channel.swift
[371/562] Compiling NIOCore ChannelHandler.swift
[372/562] Compiling NIOCore ChannelHandlers.swift
[373/562] Compiling NIOCore ChannelInvoker.swift
[374/562] Compiling NIOCore ChannelOption.swift
[375/562] Compiling NIOCore ChannelPipeline.swift
[375/563] Compiling thread_win.cc
[377/563] Compiling voprf.cc
[378/563] Compiling thread_pthread.cc
[379/563] Compiling thread.cc
[380/563] Compiling thread_none.cc
[381/563] Compiling pmbtoken.cc
[382/563] Wrapping AST for NIOCore for debugging
[383/617] Compiling trust_token.cc
[384/617] Compiling stack.cc
[385/617] Compiling sha256.cc
[386/617] Compiling sha512.cc
[387/617] Compiling siphash.cc
[388/617] Compiling slhdsa.cc
[389/617] Compiling sha1.cc
[390/617] Compiling spake2plus.cc
[391/617] Compiling rsa_print.cc
[392/617] Compiling rsa_extra.cc
[394/617] Compiling NIOEmbedded AsyncTestingChannel.swift
[395/617] Emitting module NIOEmbedded
[395/617] Compiling refcount.cc
[396/617] Compiling rsa_crypt.cc
[397/617] Compiling rc4.cc
[398/617] Compiling urandom.cc
[400/617] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[401/617] Compiling NIOEmbedded Embedded.swift
[402/618] Compiling NIOPosix Pool.swift
[403/618] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[404/618] Compiling NIOPosix PosixSingletons.swift
[405/618] Compiling NIOPosix RawSocketBootstrap.swift
[406/618] Compiling NIOPosix Resolver.swift
[407/618] Compiling NIOPosix Selectable.swift
[408/618] Compiling NIOPosix SelectableChannel.swift
[408/618] Compiling windows.cc
[409/624] Compiling trusty.cc
[411/624] Compiling rand.cc
[412/624] Compiling passive.cc
[413/624] Wrapping AST for NIOEmbedded for debugging
[414/624] Compiling forkunsafe.cc
[415/624] Compiling ios.cc
[416/624] Compiling poly1305_arm_asm.S
[417/624] Compiling getentropy.cc
[418/624] Compiling rsa_asn1.cc
[419/624] Compiling deterministic.cc
[420/624] Compiling poly1305_arm.cc
[421/624] Compiling fork_detect.cc
[422/624] Compiling poly1305_vec.cc
[424/624] Compiling NIOPosix ThreadWindows.swift
[425/624] Compiling NIOPosix UnsafeTransfer.swift
[426/624] Compiling NIOPosix Utilities.swift
[427/624] Compiling NIOPosix VsockAddress.swift
[428/624] Compiling NIOPosix VsockChannelEvents.swift
[429/624] Compiling NIOPosix Windows.swift
[429/624] Compiling poly1305.cc
[430/624] Compiling pool.cc
[431/624] Compiling pem_oth.cc
[433/624] Emitting module NIOPosix
[433/624] Compiling pkcs7.cc
[434/624] Compiling pem_lib.cc
[435/624] Compiling pkcs8_x509.cc
[436/624] Compiling pkcs8.cc
[437/624] Compiling obj_xref.cc
[439/624] Compiling NIOPosix Bootstrap.swift
[440/624] Compiling NIOPosix ControlMessage.swift
[441/624] Compiling NIOPosix DatagramVectorReadManager.swift
[442/624] Compiling NIOPosix Errors+Any.swift
[443/624] Compiling NIOPosix FileDescriptor.swift
[444/624] Compiling NIOPosix GetaddrinfoResolver.swift
[445/624] Compiling NIOPosix HappyEyeballs.swift
[446/624] Compiling NIOPosix SelectableEventLoop.swift
[447/624] Compiling NIOPosix SelectorEpoll.swift
[448/624] Compiling NIOPosix SelectorGeneric.swift
[449/624] Compiling NIOPosix SelectorKqueue.swift
[450/624] Compiling NIOPosix SelectorUring.swift
[451/624] Compiling NIOPosix SelectorWSAPoll.swift
[452/624] Compiling NIOPosix ServerSocket.swift
[452/624] Compiling pem_all.cc
[453/624] Compiling pem_info.cc
[455/624] Compiling NIOPosix Socket.swift
[456/624] Compiling NIOPosix SocketChannel.swift
[457/624] Compiling NIOPosix SocketProtocols.swift
[458/624] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[459/624] Compiling NIOPosix System.swift
[460/624] Compiling NIOPosix Thread.swift
[461/624] Compiling NIOPosix ThreadPosix.swift
[461/624] Compiling p5_pbev2.cc
[462/624] Compiling mlkem.cc
[463/624] Compiling mldsa.cc
[464/624] Compiling pkcs7_x509.cc
[465/624] Compiling md4.cc
[466/624] Compiling mem.cc
[467/624] Compiling poly_rq_mul.S
[468/624] Compiling md5.cc
[469/624] Compiling fips_shared_support.cc
[471/624] Compiling NIOPosix IO.swift
[472/624] Compiling NIOPosix IntegerBitPacking.swift
[473/624] Compiling NIOPosix IntegerTypes.swift
[474/624] Compiling NIOPosix Linux.swift
[475/624] Compiling NIOPosix LinuxCPUSet.swift
[476/624] Compiling NIOPosix LinuxUring.swift
[477/624] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[478/624] Compiling NIOPosix BSDSocketAPICommon.swift
[479/624] Compiling NIOPosix BSDSocketAPIPosix.swift
[480/624] Compiling NIOPosix BSDSocketAPIWindows.swift
[481/624] Compiling NIOPosix BaseSocket.swift
[482/624] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[483/624] Compiling NIOPosix BaseSocketChannel.swift
[484/624] Compiling NIOPosix BaseStreamSocketChannel.swift
[485/624] Compiling NIOPosix NIOPosixSendableMetatype.swift
[486/624] Compiling NIOPosix NIOThreadPool.swift
[487/624] Compiling NIOPosix NonBlockingFileIO.swift
[488/624] Compiling NIOPosix PendingDatagramWritesManager.swift
[489/624] Compiling NIOPosix PendingWritesManager.swift
[490/624] Compiling NIOPosix PipeChannel.swift
[491/624] Compiling NIOPosix PipePair.swift
[491/624] Compiling lhash.cc
[492/625] Compiling obj.cc
[494/625] Compiling fuzzer_mode.cc
[495/625] Wrapping AST for NIOPosix for debugging
[496/625] Compiling kyber.cc
[497/627] Compiling hrss.cc
[498/627] Compiling ex_data.cc
[500/627] Compiling NIO Exports.swift
[500/627] Compiling hpke.cc
[502/627] Emitting module NIO
[503/628] Compiling print.cc
[504/628] Compiling scrypt.cc
[505/628] Compiling sign.cc
[506/628] Compiling pbkdf.cc
[507/633] Wrapping AST for NIO for debugging
[508/633] Compiling p_x25519_asn1.cc
[509/633] Compiling p_x25519.cc
[510/633] Compiling p_rsa_asn1.cc
[511/633] Compiling p_hkdf.cc
[512/633] Compiling p_ed25519_asn1.cc
[513/633] Compiling p_rsa.cc
[514/633] Compiling p_ed25519.cc
[515/633] Compiling p_ec_asn1.cc
[516/633] Compiling p_ec.cc
[517/633] Compiling p_dsa_asn1.cc
[518/633] Compiling p_dh_asn1.cc
[519/633] Compiling p_dh.cc
[520/633] Compiling evp_asn1.cc
[521/633] Compiling evp_ctx.cc
[522/633] Compiling err.cc
[523/633] Compiling engine.cc
[524/633] Compiling evp.cc
[525/633] Compiling ecdsa_p1363.cc
[526/633] Compiling ecdh.cc
[527/633] Compiling dsa_asn1.cc
[528/633] Compiling ec_derive.cc
[529/633] Compiling ecdsa_asn1.cc
[530/633] Compiling hash_to_curve.cc
[531/633] Compiling digest_extra.cc
[532/633] Compiling spake25519.cc
[533/633] Compiling dsa.cc
[535/633] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[536/633] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[537/633] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[537/633] Compiling ec_asn1.cc
[538/633] Compiling des.cc
[539/633] Compiling x25519-asm-arm.S
[540/633] Compiling params.cc
[542/633] Emitting module NIOFoundationCompat
[543/633] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[544/634] Compiling dh_asn1.cc
[545/634] Compiling cpu_arm_linux.cc
[546/634] Compiling cpu_intel.cc
[547/634] Compiling cpu_aarch64_sysreg.cc
[548/634] Compiling crypto.cc
[549/634] Wrapping AST for NIOFoundationCompat for debugging
[550/634] Compiling curve25519.cc
[551/634] Compiling cpu_aarch64_win.cc
[552/634] Compiling cpu_arm_freebsd.cc
[553/634] Compiling cpu_aarch64_openbsd.cc
[554/634] Compiling cpu_aarch64_linux.cc
[555/634] Compiling cpu_aarch64_fuchsia.cc
[556/634] Compiling curve25519_64_adx.cc
[557/634] Compiling cpu_aarch64_apple.cc
[558/634] Compiling conf.cc
[559/634] Compiling get_cipher.cc
[560/634] Compiling tls_cbc.cc
[561/634] Compiling e_rc4.cc
[562/634] Compiling e_tls.cc
[563/634] Compiling e_rc2.cc
[564/634] Compiling e_null.cc
[565/634] Compiling e_des.cc
[566/634] Compiling cms.cc
[567/634] Compiling e_chacha20poly1305.cc
[568/634] Compiling derive_key.cc
[569/634] Compiling e_aesgcmsiv.cc
[570/634] Compiling e_aeseax.cc
[571/634] Compiling unicode.cc
[572/634] Compiling e_aesctrhmac.cc
[573/634] Compiling chacha.cc
[574/634] Compiling buf.cc
[575/634] Compiling div.cc
[576/634] Compiling ber.cc
[577/634] Compiling sqrt.cc
[578/634] Compiling exponentiation.cc
[579/634] Compiling blake2.cc
[580/634] Compiling cbb.cc
[581/634] Compiling cbs.cc
[582/634] Compiling asn1_compat.cc
[583/634] Compiling pair.cc
[584/634] Compiling bn_asn1.cc
[585/634] Compiling printf.cc
[586/634] Compiling convert.cc
[587/634] Compiling file.cc
[588/634] Compiling hexdump.cc
[589/634] Compiling fd.cc
[590/634] Compiling base64.cc
[591/634] Compiling bio.cc
[592/634] Compiling errno.cc
[593/634] Compiling bio_mem.cc
[594/634] Compiling tasn_dec.cc
[595/634] Compiling tasn_typ.cc
[596/634] Compiling tasn_fre.cc
[597/634] Compiling posix_time.cc
[598/634] Compiling tasn_enc.cc
[599/634] Compiling f_string.cc
[600/634] Compiling tasn_utl.cc
[601/634] Compiling a_utctm.cc
[602/634] Compiling tasn_new.cc
[603/634] Compiling f_int.cc
[604/634] Compiling asn_pack.cc
[605/634] Compiling asn1_par.cc
[606/634] Compiling asn1_lib.cc
[607/634] Compiling a_octet.cc
[608/634] Compiling a_type.cc
[609/634] Compiling a_time.cc
[610/634] Compiling a_strex.cc
[611/634] Compiling a_strnid.cc
[612/634] Compiling a_object.cc
[613/634] Compiling a_i2d_fp.cc
[614/634] Compiling aes.cc
[615/634] Wrapping AST for Atomics for debugging
[616/634] Compiling a_mbstr.cc
[617/634] Compiling a_dup.cc
[618/634] Compiling a_int.cc
[619/634] Compiling a_gentm.cc
[620/634] Compiling a_bitstr.cc
[621/634] Compiling bcm.cc
[623/642] Compiling CryptoBoringWrapper RandomBytes.swift
[624/642] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[625/642] Compiling CryptoBoringWrapper EllipticCurve.swift
[626/642] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[627/642] Emitting module CryptoBoringWrapper
[628/642] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[629/642] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[630/642] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[631/643] Wrapping AST for CryptoBoringWrapper for debugging
[633/714] Compiling Crypto HPKE-Errors.swift
[634/714] Compiling Crypto HPKE.swift
[635/714] Compiling Crypto HPKE-Context.swift
[636/714] Compiling Crypto HPKE-KeySchedule.swift
[637/714] Compiling Crypto HPKE-Modes.swift
[638/714] Compiling Crypto Insecure.swift
[639/714] Compiling Crypto Insecure_HashFunctions.swift
[640/714] Compiling Crypto KEM.swift
[641/714] Compiling Crypto ECDH_boring.swift
[642/714] Compiling Crypto DH.swift
[643/724] Compiling Crypto X25519Keys.swift
[644/724] Compiling Crypto SymmetricKeys.swift
[645/724] Compiling Crypto HMAC.swift
[646/724] Compiling Crypto MACFunctions.swift
[647/724] Compiling Crypto MessageAuthenticationCode.swift
[648/724] Compiling Crypto AES.swift
[649/724] Compiling Crypto ECDSASignature_boring.swift
[650/724] Compiling Crypto ECDSA_boring.swift
[651/724] Compiling Crypto EdDSA_boring.swift
[652/724] Compiling Crypto ECDSA.swift
[653/724] Emitting module Crypto
[654/724] Compiling Crypto AES-GCM.swift
[655/724] Compiling Crypto AES-GCM_boring.swift
[656/724] Compiling Crypto ChaChaPoly_boring.swift
[657/724] Compiling Crypto ChaChaPoly.swift
[658/724] Compiling Crypto Cipher.swift
[659/724] Compiling Crypto Nonces.swift
[660/724] Compiling Crypto ASN1.swift
[661/724] Compiling Crypto ASN1Any.swift
[662/724] Compiling Crypto ASN1BitString.swift
[663/724] Compiling Crypto ASN1Boolean.swift
[664/724] Compiling Crypto ECDH.swift
[665/724] Compiling Crypto HKDF.swift
[666/724] Compiling Crypto AESWrap.swift
[667/724] Compiling Crypto AESWrap_boring.swift
[668/724] Compiling Crypto Ed25519_boring.swift
[669/724] Compiling Crypto NISTCurvesKeys_boring.swift
[670/724] Compiling Crypto X25519Keys_boring.swift
[671/724] Compiling Crypto Curve25519.swift
[672/724] Compiling Crypto Ed25519Keys.swift
[673/724] Compiling Crypto NISTCurvesKeys.swift
[674/724] Compiling Crypto PKCS8PrivateKey.swift
[675/724] Compiling Crypto SEC1PrivateKey.swift
[676/724] Compiling Crypto SubjectPublicKeyInfo.swift
[677/724] Compiling Crypto CryptoError_boring.swift
[678/724] Compiling Crypto CryptoKitErrors.swift
[679/724] Compiling Crypto Digest_boring.swift
[680/724] Compiling Crypto Digest.swift
[681/724] Compiling Crypto Digests.swift
[682/724] Compiling Crypto HashFunctions.swift
[683/724] Compiling Crypto HashFunctions_SHA2.swift
[684/724] Compiling Crypto HPKE-AEAD.swift
[685/724] Compiling Crypto HPKE-Ciphersuite.swift
[686/724] Compiling Crypto HPKE-KDF.swift
[687/724] Compiling Crypto HPKE-KexKeyDerivation.swift
[688/724] Compiling Crypto HPKE-LabeledExtract.swift
[689/724] Compiling Crypto HPKE-Utils.swift
[690/724] Compiling Crypto DHKEM.swift
[691/724] Compiling Crypto HPKE-KEM-Curve25519.swift
[692/724] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[693/724] Compiling Crypto HPKE-KEM.swift
[694/724] Compiling Crypto ASN1Identifier.swift
[695/724] Compiling Crypto ASN1Integer.swift
[696/724] Compiling Crypto ASN1Null.swift
[697/724] Compiling Crypto ASN1OctetString.swift
[698/724] Compiling Crypto ASN1Strings.swift
[699/724] Compiling Crypto ArraySliceBigint.swift
[700/724] Compiling Crypto GeneralizedTime.swift
[701/724] Compiling Crypto ObjectIdentifier.swift
[702/724] Compiling Crypto ECDSASignature.swift
[703/724] Compiling Crypto PEMDocument.swift
[704/724] Compiling Crypto Ed25519.swift
[705/724] Compiling Crypto Signature.swift
[706/724] Compiling Crypto CryptoKitErrors_boring.swift
[707/724] Compiling Crypto RNG_boring.swift
[708/724] Compiling Crypto SafeCompare_boring.swift
[709/724] Compiling Crypto Zeroization_boring.swift
[710/724] Compiling Crypto PrettyBytes.swift
[711/724] Compiling Crypto SafeCompare.swift
[712/724] Compiling Crypto SecureBytes.swift
[713/724] Compiling Crypto Zeroization.swift
[714/725] Wrapping AST for Crypto for debugging
[716/783] Compiling NIOSSH NIOSSHPrivateKey.swift
[717/783] Compiling NIOSSH NIOSSHPublicKey.swift
[718/783] Compiling NIOSSH NIOSSHSignature.swift
[719/783] Compiling NIOSSH NIOSSHError.swift
[720/783] Compiling NIOSSH NIOSSHHandler.swift
[721/783] Compiling NIOSSH Role.swift
[722/783] Compiling NIOSSH SSHClientConfiguration.swift
[723/783] Compiling NIOSSH SSHEncryptablePacketPayload.swift
[724/791] Compiling NIOSSH ByteBuffer+SSH.swift
[725/791] Compiling NIOSSH CSPRNG.swift
[726/791] Compiling NIOSSH ChildChannelOptions.swift
[727/791] Compiling NIOSSH ChildChannelStateMachine.swift
[728/791] Compiling NIOSSH ChildChannelUserEvents.swift
[729/791] Compiling NIOSSH ChildChannelWindowManager.swift
[730/791] Compiling NIOSSH ChildChannelWritabilityManager.swift
[731/791] Compiling NIOSSH OutboundFlowController.swift
[732/791] Compiling NIOSSH SSHChannelData.swift
[733/791] Emitting module NIOSSH
[734/791] Compiling NIOSSH SendsChannelMessages.swift
[735/791] Compiling NIOSSH SendsKeyExchangeMessages.swift
[736/791] Compiling NIOSSH SendsUserAuthMessages.swift
[737/791] Compiling NIOSSH SSHConnectionStateMachine.swift
[738/791] Compiling NIOSSH ActiveState.swift
[739/791] Compiling NIOSSH IdleState.swift
[740/791] Compiling NIOSSH KeyExchangeState.swift
[741/791] Compiling NIOSSH ReceivedKexInitWhenActiveState.swift
[742/791] Compiling NIOSSH SSHChannelIdentifier.swift
[743/791] Compiling NIOSSH SSHChannelMultiplexer.swift
[744/791] Compiling NIOSSH SSHChannelType.swift
[745/791] Compiling NIOSSH SSHChildChannel.swift
[746/791] Compiling NIOSSH AcceptsChannelMessages.swift
[747/791] Compiling NIOSSH AcceptsKeyExchangeMessages.swift
[748/791] Compiling NIOSSH AcceptsUserAuthMessages.swift
[749/791] Compiling NIOSSH AcceptsVersionMessages.swift
[750/791] Compiling NIOSSH Constants.swift
[751/791] Compiling NIOSSH GlobalRequestDelegate.swift
[752/791] Compiling NIOSSH ECDHCompatibleKey.swift
[753/791] Compiling NIOSSH EllipticCurveKeyExchange.swift
[754/791] Compiling NIOSSH SSHKeyExchangeResult.swift
[755/791] Compiling NIOSSH SSHKeyExchangeStateMachine.swift
[756/791] Compiling NIOSSH ClientServerAuthenticationDelegate.swift
[757/791] Compiling NIOSSH NIOSSHCertifiedPublicKey.swift
[758/791] Compiling NIOSSH ReceivedNewKeysState.swift
[759/791] Compiling NIOSSH RekeyingReceivedNewKeysState.swift
[760/791] Compiling NIOSSH RekeyingSentNewKeysState.swift
[761/791] Compiling NIOSSH RekeyingState.swift
[762/791] Compiling NIOSSH SentKexInitWhenActiveState.swift
[763/791] Compiling NIOSSH SentNewKeysState.swift
[764/791] Compiling NIOSSH SentVersionState.swift
[765/791] Compiling NIOSSH UserAuthenticationState.swift
[766/791] Compiling NIOSSH DenyAllServerAuthDelegate.swift
[767/791] Compiling NIOSSH ServerUserAuthenticationDelegate.swift
[768/791] Compiling NIOSSH SimplePasswordDelegate.swift
[769/791] Compiling NIOSSH UserAuthDelegate.swift
[770/791] Compiling NIOSSH UserAuthSignablePayload.swift
[771/791] Compiling NIOSSH UserAuthenticationMethod.swift
[772/791] Compiling NIOSSH UserAuthenticationStateMachine.swift
[773/791] Compiling NIOSSH _NIOSSHSendableMetatype.swift
[774/791] Compiling NIOSSH SSHMessages.swift
[775/791] Compiling NIOSSH SSHPacketParser.swift
[776/791] Compiling NIOSSH SSHPacketSerializer.swift
[777/791] Compiling NIOSSH SSHServerConfiguration.swift
[778/791] Compiling NIOSSH SSHTerminalModes.swift
[779/791] Compiling NIOSSH AESGCM.swift
[780/791] Compiling NIOSSH SSHTransportProtection.swift
[781/791] Compiling NIOSSH ClientUserAuthenticationDelegate.swift
[782/798] Wrapping AST for NIOSSH for debugging
[784/811] Compiling NIOSSHPerformanceTester Benchmark.swift
[785/811] Emitting module NIOSSHPerformanceTester
[786/811] Compiling NIOSSHServer main.swift
[787/811] Compiling NIOSSHPerformanceTester BenchmarkHandshake.swift
[788/811] Compiling NIOSSHPerformanceTester main.swift
[789/811] Compiling NIOSSHPerformanceTester BenchmarkLinearThroughput.swift
[790/811] Compiling NIOSSHPerformanceTester shared.swift
[791/812] Compiling NIOSSHServer GlueHandler.swift
[792/812] Emitting module NIOSSHClient
[793/812] Compiling NIOSSHClient ExecHandler.swift
[795/812] Compiling NIOSSHClient PortForwardingServer.swift
[796/812] Compiling NIOSSHClient GlueHandler.swift
[797/812] Compiling NIOSSHClient InteractivePasswordPromptDelegate.swift
[797/812] Wrapping AST for NIOSSHPerformanceTester for debugging
[798/812] Write Objects.LinkFileList
[800/812] Compiling NIOSSHServer RemotePortForwarding.swift
[801/812] Compiling NIOSSHClient SimpleCLIParser.swift
[802/812] Compiling NIOSSHClient main.swift
[803/813] Compiling NIOSSHServer DataToBufferCodec.swift
[804/813] Emitting module NIOSSHServer
[805/813] Compiling NIOSSHServer ExecHandler.swift
[807/814] Wrapping AST for NIOSSHClient for debugging
[808/814] Write Objects.LinkFileList
[809/814] Wrapping AST for NIOSSHServer for debugging
[810/814] Write Objects.LinkFileList
[811/814] Linking NIOSSHPerformanceTester
[812/814] Linking NIOSSHServer
[813/814] Linking NIOSSHClient
Build complete! (262.64s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.81.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics.git"
    }
  ],
  "manifest_display_name" : "swift-nio-ssh",
  "name" : "swift-nio-ssh",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "NIOSSH",
      "targets" : [
        "NIOSSH"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "NIOSSHServer",
      "targets" : [
        "NIOSSHServer"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "NIOSSHPerformanceTester",
      "targets" : [
        "NIOSSHPerformanceTester"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "NIOSSHClient",
      "targets" : [
        "NIOSSHClient"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NIOSSHTests",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHTests",
      "path" : "Tests/NIOSSHTests",
      "product_dependencies" : [
        "NIOCore",
        "NIOEmbedded",
        "NIOFoundationCompat"
      ],
      "sources" : [
        "AESGCMTests.swift",
        "ByteBuffer+SSHTests.swift",
        "CertifiedKeyTests.swift",
        "ChildChannelMultiplexerTests.swift",
        "ECKeyExchangeTests.swift",
        "EndToEndTests.swift",
        "FuzzResultTests.swift",
        "HostKeyTests.swift",
        "SSHConnectionStateMachineTests.swift",
        "SSHEncryptedTrafficTests.swift",
        "SSHHandlerTests.swift",
        "SSHKeyExchangeStateMachineTests.swift",
        "SSHMessagesTests.swift",
        "SSHPackerSerializerTests.swift",
        "SSHPacketParserTests.swift",
        "UserAuthenticationStateMachineTests.swift",
        "Utilities.swift",
        "UtilitiesTests.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "test"
    },
    {
      "c99name" : "NIOSSHServer",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHServer",
      "path" : "Sources/NIOSSHServer",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "NIOFoundationCompat",
        "Crypto"
      ],
      "product_memberships" : [
        "NIOSSHServer"
      ],
      "sources" : [
        "DataToBufferCodec.swift",
        "ExecHandler.swift",
        "GlueHandler.swift",
        "RemotePortForwarding.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSHPerformanceTester",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHPerformanceTester",
      "path" : "Sources/NIOSSHPerformanceTester",
      "product_dependencies" : [
        "NIOCore",
        "NIOEmbedded",
        "Crypto"
      ],
      "product_memberships" : [
        "NIOSSHPerformanceTester"
      ],
      "sources" : [
        "Benchmark.swift",
        "BenchmarkHandshake.swift",
        "BenchmarkLinearThroughput.swift",
        "main.swift",
        "shared.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSHClient",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSHClient",
      "path" : "Sources/NIOSSHClient",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "NIOConcurrencyHelpers"
      ],
      "product_memberships" : [
        "NIOSSHClient"
      ],
      "sources" : [
        "ExecHandler.swift",
        "GlueHandler.swift",
        "InteractivePasswordPromptDelegate.swift",
        "PortForwardingServer.swift",
        "SimpleCLIParser.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "NIOSSH"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "NIOSSH",
      "module_type" : "SwiftTarget",
      "name" : "NIOSSH",
      "path" : "Sources/NIOSSH",
      "product_dependencies" : [
        "NIOCore",
        "NIOConcurrencyHelpers",
        "NIOFoundationCompat",
        "Crypto",
        "Atomics"
      ],
      "product_memberships" : [
        "NIOSSH",
        "NIOSSHServer",
        "NIOSSHPerformanceTester",
        "NIOSSHClient"
      ],
      "sources" : [
        "ByteBuffer+SSH.swift",
        "CSPRNG/CSPRNG.swift",
        "Child Channels/ChildChannelOptions.swift",
        "Child Channels/ChildChannelStateMachine.swift",
        "Child Channels/ChildChannelUserEvents.swift",
        "Child Channels/ChildChannelWindowManager.swift",
        "Child Channels/ChildChannelWritabilityManager.swift",
        "Child Channels/OutboundFlowController.swift",
        "Child Channels/SSHChannelData.swift",
        "Child Channels/SSHChannelIdentifier.swift",
        "Child Channels/SSHChannelMultiplexer.swift",
        "Child Channels/SSHChannelType.swift",
        "Child Channels/SSHChildChannel.swift",
        "Connection State Machine/Operations/AcceptsChannelMessages.swift",
        "Connection State Machine/Operations/AcceptsKeyExchangeMessages.swift",
        "Connection State Machine/Operations/AcceptsUserAuthMessages.swift",
        "Connection State Machine/Operations/AcceptsVersionMessages.swift",
        "Connection State Machine/Operations/SendsChannelMessages.swift",
        "Connection State Machine/Operations/SendsKeyExchangeMessages.swift",
        "Connection State Machine/Operations/SendsUserAuthMessages.swift",
        "Connection State Machine/SSHConnectionStateMachine.swift",
        "Connection State Machine/States/ActiveState.swift",
        "Connection State Machine/States/IdleState.swift",
        "Connection State Machine/States/KeyExchangeState.swift",
        "Connection State Machine/States/ReceivedKexInitWhenActiveState.swift",
        "Connection State Machine/States/ReceivedNewKeysState.swift",
        "Connection State Machine/States/RekeyingReceivedNewKeysState.swift",
        "Connection State Machine/States/RekeyingSentNewKeysState.swift",
        "Connection State Machine/States/RekeyingState.swift",
        "Connection State Machine/States/SentKexInitWhenActiveState.swift",
        "Connection State Machine/States/SentNewKeysState.swift",
        "Connection State Machine/States/SentVersionState.swift",
        "Connection State Machine/States/UserAuthenticationState.swift",
        "Constants.swift",
        "GlobalRequestDelegate.swift",
        "Key Exchange/ECDHCompatibleKey.swift",
        "Key Exchange/EllipticCurveKeyExchange.swift",
        "Key Exchange/SSHKeyExchangeResult.swift",
        "Key Exchange/SSHKeyExchangeStateMachine.swift",
        "Keys And Signatures/ClientServerAuthenticationDelegate.swift",
        "Keys And Signatures/NIOSSHCertifiedPublicKey.swift",
        "Keys And Signatures/NIOSSHPrivateKey.swift",
        "Keys And Signatures/NIOSSHPublicKey.swift",
        "Keys And Signatures/NIOSSHSignature.swift",
        "NIOSSHError.swift",
        "NIOSSHHandler.swift",
        "Role.swift",
        "SSHClientConfiguration.swift",
        "SSHEncryptablePacketPayload.swift",
        "SSHMessages.swift",
        "SSHPacketParser.swift",
        "SSHPacketSerializer.swift",
        "SSHServerConfiguration.swift",
        "SSHTerminalModes.swift",
        "TransportProtection/AESGCM.swift",
        "TransportProtection/SSHTransportProtection.swift",
        "User Authentication/ClientUserAuthenticationDelegate.swift",
        "User Authentication/DenyAllServerAuthDelegate.swift",
        "User Authentication/ServerUserAuthenticationDelegate.swift",
        "User Authentication/SimplePasswordDelegate.swift",
        "User Authentication/UserAuthDelegate.swift",
        "User Authentication/UserAuthSignablePayload.swift",
        "User Authentication/UserAuthenticationMethod.swift",
        "User Authentication/UserAuthenticationStateMachine.swift",
        "_NIOSSHSendableMetatype.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:808cb2b2a6cec76654a3acbd283c6c2205bc60d2b29562c95b9f5147612f6d32
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.