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

Failed to build Citadel, reference 0.11.1 (0e0830), with Swift 6.1 for Wasm on 15 Jul 2025 12:12:25 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/orlandos-nl/Citadel.git
Reference: 0.11.1
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/orlandos-nl/Citadel
 * tag               0.11.1     -> FETCH_HEAD
HEAD is now at 0e08308 Merge pull request #112 from nedithgar/main
Cloned https://github.com/orlandos-nl/Citadel.git
Revision (git rev-parse @):
0e0830867f05837b391426c68171ea19b2981dbf
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/orlandos-nl/Citadel.git at 0.11.1
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/orlandos-nl/Citadel.git
https://github.com/orlandos-nl/Citadel.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-nio-ssh",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.4",
            "upper_bound" : "0.4.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Joannis/swift-nio-ssh.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "bigint",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.2.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/attaswift/BigInt.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.12.3",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "colorizeswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/mtynior/ColorizeSwift.git"
    }
  ],
  "manifest_display_name" : "Citadel",
  "name" : "Citadel",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Citadel",
      "targets" : [
        "Citadel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CitadelServerExample",
      "targets" : [
        "CitadelServerExample"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CitadelTests",
      "module_type" : "SwiftTarget",
      "name" : "CitadelTests",
      "path" : "Tests/CitadelTests",
      "product_dependencies" : [
        "NIOSSH",
        "BigInt",
        "Logging"
      ],
      "sources" : [
        "Citadel2Tests.swift",
        "EndToEndTests.swift",
        "KeyTests.swift"
      ],
      "target_dependencies" : [
        "Citadel"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CitadelServerExample",
      "module_type" : "SwiftTarget",
      "name" : "CitadelServerExample",
      "path" : "Sources/CitadelServerExample",
      "product_dependencies" : [
        "ColorizeSwift"
      ],
      "product_memberships" : [
        "CitadelServerExample"
      ],
      "sources" : [
        "EchoShell/BasicCommands.swift",
        "EchoShell/EchoShell.swift",
        "EchoShell/Extensions.swift",
        "EchoShell/Terminal.swift",
        "HostKeyFile.swift",
        "Server.swift"
      ],
      "target_dependencies" : [
        "Citadel"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "Citadel",
      "module_type" : "SwiftTarget",
      "name" : "Citadel",
      "path" : "Sources/Citadel",
      "product_dependencies" : [
        "NIOSSH",
        "Crypto",
        "_CryptoExtras",
        "BigInt",
        "Logging"
      ],
      "product_memberships" : [
        "Citadel",
        "CitadelServerExample"
      ],
      "sources" : [
        "Algorithms/AES.swift",
        "Algorithms/DH-Helpers.swift",
        "Algorithms/DiffieHellmanGroup14Sha1.swift",
        "Algorithms/DiffieHellmanGroup14Sha256.swift",
        "Algorithms/RSA.swift",
        "BCrypt.swift",
        "ByteBufferHelpers.swift",
        "ChannelUnwrapper.swift",
        "Client.swift",
        "ClientSession.swift",
        "DirectTCPIP/Client/DirectTCPIP+Client.swift",
        "DirectTCPIP/Server/DirectTCPIP+Server.swift",
        "Errors.swift",
        "Exec/Client/ExecClient.swift",
        "Exec/Server/ExecDelegate.swift",
        "Exec/Server/ExecHandler.swift",
        "NIOGlueHandler.swift",
        "OpenSSHKey.swift",
        "SFTP/Client/SFTPClient.swift",
        "SFTP/Client/SFTPClientInboundHandler.swift",
        "SFTP/Client/SFTPFile.swift",
        "SFTP/SFTPBasicEnums.swift",
        "SFTP/SFTPFileFlags.swift",
        "SFTP/SFTPMessage.swift",
        "SFTP/SFTPMessageParser.swift",
        "SFTP/SFTPSerializer.swift",
        "SFTP/Server/SFTPServer.swift",
        "SFTP/Server/SFTPServerInboundHandler.swift",
        "SSHAuthenticationMethod.swift",
        "SSHCert.swift",
        "SSHConnectionPoolSettings.swift",
        "SSHKeyTypeDetection.swift",
        "Server.swift",
        "Shell/Server/ShellDelegate.swift",
        "TTY/Client/TTY.swift"
      ],
      "target_dependencies" : [
        "CCitadelBcrypt"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CCitadelBcrypt",
      "module_type" : "ClangTarget",
      "name" : "CCitadelBcrypt",
      "path" : "Sources/CCitadelBcrypt",
      "product_memberships" : [
        "Citadel",
        "CitadelServerExample"
      ],
      "sources" : [
        "bcrypt-kdf.c",
        "bcrypt.c",
        "blf.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/attaswift/BigInt.git
Fetching https://github.com/Joannis/swift-nio-ssh.git
Fetching https://github.com/mtynior/ColorizeSwift.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-log.git
[1/4822] Fetching bigint
[2/7607] Fetching bigint, swift-nio-ssh
[1617/7898] Fetching bigint, swift-nio-ssh, colorizeswift
[3797/11752] Fetching bigint, swift-nio-ssh, colorizeswift, swift-log
[5804/27501] Fetching bigint, swift-nio-ssh, colorizeswift, swift-log, swift-crypto
Fetched https://github.com/apple/swift-log.git from cache (0.60s)
Fetched https://github.com/Joannis/swift-nio-ssh.git from cache (0.60s)
[7946/20862] Fetching bigint, colorizeswift, swift-crypto
Fetched https://github.com/attaswift/BigInt.git from cache (0.68s)
[3439/16040] Fetching colorizeswift, swift-crypto
Fetched https://github.com/mtynior/ColorizeSwift.git from cache (2.29s)
Fetched https://github.com/apple/swift-crypto.git from cache (2.33s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (5.40s)
Fetching https://github.com/apple/swift-asn1.git
[1/1616] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (0.42s)
Computing version for https://github.com/Joannis/swift-nio-ssh.git
Computed https://github.com/Joannis/swift-nio-ssh.git at 0.3.4 (2.07s)
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-atomics.git
[1/1808] Fetching swift-atomics
[1809/78479] Fetching swift-atomics, swift-nio
Fetched https://github.com/apple/swift-atomics.git from cache (0.93s)
[4601/76671] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (9.14s)
Computing version for https://github.com/mtynior/ColorizeSwift.git
Computed https://github.com/mtynior/ColorizeSwift.git at 1.7.0 (13.20s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.4.0 (2.53s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.26s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.84.0 (1.72s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
[1/4657] Fetching swift-system
[1538/21403] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (0.80s)
[4354/16746] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (2.12s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (3.05s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (1.21s)
Computing version for https://github.com/attaswift/BigInt.git
Computed https://github.com/attaswift/BigInt.git at 5.6.0 (0.93s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.87s)
Creating working copy for https://github.com/mtynior/ColorizeSwift.git
Working copy of https://github.com/mtynior/ColorizeSwift.git resolved at 1.7.0
Creating working copy for https://github.com/attaswift/BigInt.git
Working copy of https://github.com/attaswift/BigInt.git resolved at 5.6.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.84.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/Joannis/swift-nio-ssh.git
Working copy of https://github.com/Joannis/swift-nio-ssh.git resolved at 0.3.4
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-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.4.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.6.3
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.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.12.3
Building for debugging...
[0/411] Write sources
[16/411] Compiling _AtomicsShims.c
[17/411] Compiling CNIOWASI CNIOWASI.c
[18/411] Compiling CNIOWindows shim.c
[19/411] Compiling CNIOWindows WSAStartup.c
[20/411] Compiling CNIOLinux shim.c
[21/411] Compiling CCitadelBcrypt bcrypt.c
/host/spi-builder-workspace/Sources/CCitadelBcrypt/bcrypt-kdf.c:44:9: warning: 'BCRYPT_WORDS' macro redefined [-Wmacro-redefined]
   44 | #define BCRYPT_WORDS 8
      |         ^
/host/spi-builder-workspace/Sources/CCitadelBcrypt/bcrypt.h:31:9: note: previous definition is here
   31 | #define BCRYPT_WORDS 6        /* Ciphertext words */
      |         ^
1 warning generated.
[22/411] Compiling CCitadelBcrypt bcrypt-kdf.c
[23/411] Compiling CNIODarwin shim.c
[24/411] Compiling CNIOLinux liburing_shims.c
[25/411] Compiling fiat_p256_adx_sqr.S
[26/411] Compiling CCitadelBcrypt blf.c
[27/411] Compiling fiat_curve25519_adx_square.S
[28/411] Compiling md5-x86_64-apple.S
[29/411] Compiling fiat_curve25519_adx_mul.S
[30/411] Compiling fiat_p256_adx_mul.S
[30/411] Compiling md5-586-linux.S
[32/411] Compiling md5-x86_64-linux.S
[33/411] Compiling chacha20_poly1305_x86_64-apple.S
[34/411] Compiling chacha20_poly1305_x86_64-linux.S
[35/411] Compiling md5-586-apple.S
[36/411] Compiling chacha20_poly1305_armv8-win.S
[37/411] Compiling chacha20_poly1305_armv8-linux.S
[38/411] Compiling chacha20_poly1305_armv8-apple.S
[39/411] Compiling chacha-x86_64-linux.S
[40/411] Compiling chacha-x86_64-apple.S
[41/411] Write swift-version-24593BA9C3E375BF.txt
[42/411] Compiling chacha-x86-linux.S
[43/411] Compiling chacha-x86-apple.S
[44/411] Compiling chacha-armv8-win.S
[45/411] Compiling chacha-armv8-linux.S
[46/411] Compiling CCryptoBoringSSLShims shims.c
[47/439] Compiling err_data.cc
[49/455] Emitting module Logging
[49/455] Compiling c-nioatomics.c
[50/455] Compiling chacha-armv8-apple.S
[51/455] Compiling chacha-armv4-linux.S
[52/455] Compiling aes128gcmsiv-x86_64-linux.S
[53/455] Compiling aes128gcmsiv-x86_64-apple.S
[55/455] Emitting module InternalCollectionsUtilities
[56/455] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[57/455] Compiling InternalCollectionsUtilities Integer rank.swift
[58/456] Compiling SwiftASN1 TimeUtilities.swift
[59/456] Compiling SwiftASN1 UTCTime.swift
[60/458] Compiling Logging Locks.swift
[60/458] Compiling x86_64-mont5-linux.S
[62/458] Emitting module _NIOBase64
[63/458] Compiling _NIOBase64 Base64.swift
[64/459] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[65/459] Compiling InternalCollectionsUtilities Descriptions.swift
[66/459] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[68/459] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[69/459] Compiling InternalCollectionsUtilities Debugging.swift
[70/459] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[71/459] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[73/459] Compiling InternalCollectionsUtilities _SortedCollection.swift
[74/459] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[75/459] Compiling InternalCollectionsUtilities UInt+reversed.swift
[76/459] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[77/459] Compiling x86_64-mont5-apple.S
[79/459] Compiling _NIODataStructures PriorityQueue.swift
[80/459] Compiling _NIODataStructures _TinyArray.swift
[83/459] Compiling x86_64-mont-linux.S
[89/459] Compiling x86_64-mont-apple.S
[90/459] Wrapping AST for _NIOBase64 for debugging
[91/459] Compiling x86-mont-linux.S
[92/459] Compiling x86-mont-apple.S
[94/459] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[94/460] Compiling vpaes-x86_64-linux.S
[95/460] Compiling vpaes-x86_64-apple.S
[96/460] Compiling vpaes-x86-linux.S
[97/460] Compiling vpaes-x86-apple.S
[98/460] Compiling vpaes-armv8-win.S
[100/460] Emitting module _NIODataStructures
[101/460] Compiling _NIODataStructures Heap.swift
[101/460] Compiling vpaes-armv8-linux.S
[104/461] Compiling Logging MetadataProvider.swift
[104/461] Compiling vpaes-armv8-apple.S
[105/461] Compiling vpaes-armv7-linux.S
[106/461] Compiling sha512-x86_64-linux.S
[108/461] Compiling Logging LogHandler.swift
[110/461] Compiling Logging Logging.swift
[110/462] Compiling sha512-x86_64-apple.S
[111/462] Compiling sha512-armv8-win.S
[112/462] Wrapping AST for InternalCollectionsUtilities for debugging
[114/467] Compiling sha512-armv8-linux.S
[118/471] Compiling SwiftASN1 ObjectIdentifier.swift
[119/471] Compiling SwiftASN1 PEMDocument.swift
[119/477] Compiling sha512-armv8-apple.S
[120/477] Compiling sha512-armv4-linux.S
[121/477] Wrapping AST for _NIODataStructures for debugging
[122/477] Compiling sha512-586-linux.S
[123/477] Compiling sha512-586-apple.S
[124/477] Wrapping AST for Logging for debugging
[125/477] Compiling sha256-x86_64-apple.S
[126/477] Compiling sha256-x86_64-linux.S
[127/477] Compiling sha256-armv8-win.S
[128/477] Compiling sha256-armv8-linux.S
[129/477] Compiling sha256-armv4-linux.S
[130/477] Compiling sha256-armv8-apple.S
[131/477] Compiling sha1-x86_64-linux.S
[132/477] Compiling sha1-x86_64-apple.S
[133/477] Compiling sha256-586-linux.S
[134/477] Compiling sha256-586-apple.S
[135/477] Compiling sha1-armv8-apple.S
[137/477] Emitting module SwiftASN1
[137/477] Compiling sha1-armv8-win.S
[138/477] Compiling sha1-armv8-linux.S
[139/477] Compiling sha1-armv4-large-linux.S
[140/477] Compiling sha1-586-apple.S
[141/477] Compiling sha1-586-linux.S
[142/477] Compiling rsaz-avx2-linux.S
[143/477] Compiling rsaz-avx2-apple.S
[145/477] Compiling DequeModule _DequeBuffer.swift
[146/477] Compiling DequeModule _DequeBufferHeader.swift
[146/479] Compiling rdrand-x86_64-apple.S
[147/479] Compiling p256_beeu-x86_64-asm-linux.S
[148/479] Compiling rdrand-x86_64-linux.S
[149/479] Compiling p256_beeu-x86_64-asm-apple.S
[150/479] Compiling p256_beeu-armv8-asm-win.S
[151/479] Compiling p256_beeu-armv8-asm-apple.S
error: emit-module command failed with exit code 1 (use -v to see invocation)
[152/479] Emitting module ColorizeSwift
/host/spi-builder-workspace/.build/checkouts/ColorizeSwift/Sources/ColorizeSwift/ColorizeSwift.swift:536:25: error: cannot find 'DispatchQueue' in scope
534 |     internal static let shared = StringColorizationManager()
535 |
536 |     private let queue = DispatchQueue(label: "com.github.mtynior.ColorizeSwift.StringColorizationManager")
    |                         `- error: cannot find 'DispatchQueue' in scope
537 |     private var _isColorizationEnabled = true
538 |
[154/479] Compiling ColorizeSwift ColorizeSwift.swift
/host/spi-builder-workspace/.build/checkouts/ColorizeSwift/Sources/ColorizeSwift/ColorizeSwift.swift:536:25: error: cannot find 'DispatchQueue' in scope
534 |     internal static let shared = StringColorizationManager()
535 |
536 |     private let queue = DispatchQueue(label: "com.github.mtynior.ColorizeSwift.StringColorizationManager")
    |                         `- error: cannot find 'DispatchQueue' in scope
537 |     private var _isColorizationEnabled = true
538 |
[154/479] Compiling p256-armv8-asm-win.S
[154/479] Compiling p256_beeu-armv8-asm-linux.S
[154/479] Compiling p256-x86_64-asm-apple.S
[154/479] Compiling p256-x86_64-asm-linux.S
[154/479] Compiling c-atomics.c
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
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/313] Compiling p256_beeu-armv8-asm-linux.S
[1/313] Compiling p256-x86_64-asm-linux.S
[2/313] Compiling p256-armv8-asm-win.S
[3/313] Compiling p256-armv8-asm-linux.S
[3/313] Compiling p256-x86_64-asm-apple.S
[5/313] Compiling ghashv8-armv8-win.S
[6/313] Compiling p256-armv8-asm-apple.S
[7/313] Compiling ghashv8-armv8-linux.S
[8/313] Compiling ghashv8-armv7-linux.S
[9/313] Compiling ghash-x86_64-linux.S
[10/313] Compiling ghash-x86_64-apple.S
[10/313] Compiling ghashv8-armv8-apple.S
[12/313] Compiling ghash-x86-linux.S
[13/313] Compiling ghash-x86-apple.S
[14/313] Compiling ghash-ssse3-x86_64-linux.S
[15/313] Compiling ghash-ssse3-x86-apple.S
[16/313] Compiling ghash-ssse3-x86_64-apple.S
[17/313] Compiling ghash-ssse3-x86-linux.S
[18/313] Compiling ghash-neon-armv8-apple.S
[19/313] Compiling ghash-neon-armv8-win.S
[20/313] Compiling ghash-neon-armv8-linux.S
[21/313] Compiling co-586-linux.S
[22/313] Compiling bn-armv8-win.S
[23/313] Compiling ghash-armv4-linux.S
[24/313] Compiling co-586-apple.S
[25/313] Compiling bn-armv8-apple.S
[26/313] Compiling bsaes-armv7-linux.S
[27/313] Compiling bn-armv8-linux.S
[28/313] Compiling bn-586-apple.S
[29/313] Compiling armv8-mont-linux.S
[30/313] Compiling bn-586-linux.S
[31/313] Compiling armv8-mont-win.S
[32/313] Write swift-version-24593BA9C3E375BF.txt
[33/313] Compiling armv4-mont-linux.S
[34/313] Compiling armv8-mont-apple.S
[35/313] Compiling aesv8-gcm-armv8-win.S
[36/313] Compiling aesv8-gcm-armv8-linux.S
[37/313] Compiling aesv8-armv8-win.S
[38/313] Compiling aesv8-armv8-linux.S
[39/313] Compiling aesv8-gcm-armv8-apple.S
[40/313] Compiling aesv8-armv8-apple.S
[41/313] Compiling aesv8-armv7-linux.S
[42/326] Compiling aesni-x86_64-linux.S
[43/326] Compiling aesni-x86_64-apple.S
[44/355] Compiling aesni-x86-linux.S
[45/357] Compiling aesni-x86-apple.S
error: emit-module command failed with exit code 1 (use -v to see invocation)
[47/357] Emitting module ColorizeSwift
/host/spi-builder-workspace/.build/checkouts/ColorizeSwift/Sources/ColorizeSwift/ColorizeSwift.swift:536:25: error: cannot find 'DispatchQueue' in scope
534 |     internal static let shared = StringColorizationManager()
535 |
536 |     private let queue = DispatchQueue(label: "com.github.mtynior.ColorizeSwift.StringColorizationManager")
    |                         `- error: cannot find 'DispatchQueue' in scope
537 |     private var _isColorizationEnabled = true
538 |
[47/357] Compiling aesni-gcm-x86_64-linux.S
[49/357] Compiling Logging MetadataProvider.swift
[50/357] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[51/358] Compiling Logging Locks.swift
[51/358] Compiling aesni-gcm-x86_64-apple.S
[52/358] Compiling aes-gcm-avx10-x86_64-linux.S
[54/358] Compiling ColorizeSwift ColorizeSwift.swift
/host/spi-builder-workspace/.build/checkouts/ColorizeSwift/Sources/ColorizeSwift/ColorizeSwift.swift:536:25: error: cannot find 'DispatchQueue' in scope
534 |     internal static let shared = StringColorizationManager()
535 |
536 |     private let queue = DispatchQueue(label: "com.github.mtynior.ColorizeSwift.StringColorizationManager")
    |                         `- error: cannot find 'DispatchQueue' in scope
537 |     private var _isColorizationEnabled = true
538 |
[55/358] Compiling Logging LogHandler.swift
[55/358] Compiling aes-gcm-avx10-x86_64-apple.S
[55/358] Compiling c-atomics.c
BUILD FAILURE 6.1 wasm