The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SMBClient, reference main (66eafa), with Swift 6.2 for macOS (SPM) on 27 Apr 2026 21:23:23 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kishikawakatsumi/SMBClient.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kishikawakatsumi/SMBClient
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 66eafaa Merge pull request #232 from kishikawakatsumi/download
Cloned https://github.com/kishikawakatsumi/SMBClient.git
Revision (git rev-parse @):
66eafaa6d17e034e8036dee4b3ebc1b52cb53919
SUCCESS checkout https://github.com/kishikawakatsumi/SMBClient.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/kishikawakatsumi/SMBClient.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--3CB7CFEC50E0D141.txt
[3/76] Emitting module SMBClient
[4/84] Compiling SMBClient FileFsLabelInformation.swift
[5/84] Compiling SMBClient FileFsSizeInformation.swift
[6/84] Compiling SMBClient FileFsVolumeInformation.swift
[7/84] Compiling SMBClient FileSystemInfoClass.swift
[8/84] Compiling SMBClient Flush.swift
[9/84] Compiling SMBClient Header+CustomDebugStringConvertible.swift
[10/84] Compiling SMBClient Header.swift
[11/84] Compiling SMBClient IOCtl+CustomDebugStringConvertible.swift
[12/84] Compiling SMBClient Pathname.swift
[13/84] Compiling SMBClient Semaphore.swift
[14/84] Compiling SMBClient String.swift
[15/84] Compiling SMBClient UUID.swift
[16/84] Compiling SMBClient SMBClient.swift
[17/84] Compiling SMBClient Session.swift
[18/84] Compiling SMBClient Transport.swift
[19/84] Compiling SMBClient TreeAccessor.swift
[20/84] Compiling SMBClient FileBasicInformation.swift
[21/84] Compiling SMBClient FileDirectoryInformation.swift
[22/84] Compiling SMBClient FileDispositionInformation.swift
[23/84] Compiling SMBClient FileEaInformation.swift
[24/84] Compiling SMBClient FileIdBothDirectoryInformation.swift
[25/84] Compiling SMBClient FileInfoClass.swift
[26/84] Compiling SMBClient FileInformationClass.swift
[27/84] Compiling SMBClient FileInternalInformation.swift
[28/84] Compiling SMBClient TreeConnect+CustomDebugStringConvertible.swift
[29/84] Compiling SMBClient TreeConnect.swift
[30/84] Compiling SMBClient TreeDisconnect+CustomDebugStringConvertible.swift
[31/84] Compiling SMBClient TreeDisconnect.swift
[32/84] Compiling SMBClient Write+CustomDebugStringConvertible.swift
[33/84] Compiling SMBClient Write.swift
[34/84] Compiling SMBClient BinaryConvertible.swift
[35/84] Compiling SMBClient Data.swift
[36/84] Compiling SMBClient Echo+CustomDebugStringConvertible.swift
[37/84] Compiling SMBClient Echo.swift
[38/84] Compiling SMBClient ErrorResponse.swift
[39/84] Compiling SMBClient NTStatus.swift
[40/84] Compiling SMBClient FileAttributes.swift
[41/84] Compiling SMBClient FileAccessInformation.swift
[42/84] Compiling SMBClient FileAlignmentInformation.swift
[43/84] Compiling SMBClient FileAllInformation.swift
[44/84] Compiling SMBClient IOCtl.swift
[45/84] Compiling SMBClient Logoff+CustomDebugStringConvertible.swift
[46/84] Compiling SMBClient Logoff.swift
[47/84] Compiling SMBClient Message.swift
[48/84] Compiling SMBClient Negotiate+CustomDebugStringConvertible.swift
[49/84] Compiling SMBClient Negotiate.swift
[50/84] Compiling SMBClient QueryDirectory+CustomDebugStringConvertible.swift
[51/84] Compiling SMBClient QueryDirectory.swift
[52/84] Compiling SMBClient FileModeInformation.swift
[53/84] Compiling SMBClient FileNameInformation.swift
[54/84] Compiling SMBClient FilePositionInformation.swift
[55/84] Compiling SMBClient FileRenameInformation.swift
[56/84] Compiling SMBClient FileStandardInformation.swift
[57/84] Compiling SMBClient InfoType.swift
[58/84] Compiling SMBClient SecurityDescriptor.swift
[59/84] Compiling SMBClient FileFsDeviceInformation.swift
[60/84] Compiling SMBClient FileWriter.swift
[61/84] Compiling SMBClient AccessMask.swift
[62/84] Compiling SMBClient DirectoryAccessMask.swift
[63/84] Compiling SMBClient FilePipePrinterAccessMask.swift
[64/84] Compiling SMBClient Close+CustomDebugStringConvertible.swift
[65/84] Compiling SMBClient Close.swift
[66/84] Compiling SMBClient Create+CustomDebugStringConvertible.swift
[67/84] Compiling SMBClient Create.swift
[68/84] Compiling SMBClient QueryInfo+CustomDebugStringConvertible.swift
[69/84] Compiling SMBClient QueryInfo.swift
[70/84] Compiling SMBClient Read+CustomDebugStringConvertible.swift
[71/84] Compiling SMBClient Read.swift
[72/84] Compiling SMBClient SessionSetup+CustomDebugStringConvertible.swift
[73/84] Compiling SMBClient SessionSetup.swift
[74/84] Compiling SMBClient SetInfo+CustomDebugStringConvertible.swift
[75/84] Compiling SMBClient SetInfo.swift
[76/84] Compiling SMBClient Crypto.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[77/84] Compiling SMBClient NTLM.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[78/84] Compiling SMBClient ByteReader.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[79/84] Compiling SMBClient Connection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[80/84] Compiling SMBClient DCERPC.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[81/84] Compiling SMBClient NetShareEnum.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[82/84] Compiling SMBClient FileProxy.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[83/84] Compiling SMBClient FileReader.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[84/84] Compiling SMBClient FileTime.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:117:9: warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
115 |         }
116 |
117 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-Sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
118 |           switch result {
119 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
Build complete! (6.52s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SMBClient",
  "name" : "SMBClient",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SMBClient",
      "targets" : [
        "SMBClient"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SMBClientTests",
      "module_type" : "SwiftTarget",
      "name" : "SMBClientTests",
      "path" : "Tests/SMBClientTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SMBClientTests/Fixtures",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ConnectionTests.swift",
        "CryptoTests.swift",
        "SMBClientTests.swift",
        "SessionTests.swift"
      ],
      "target_dependencies" : [
        "SMBClient"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SMBClient",
      "module_type" : "SwiftTarget",
      "name" : "SMBClient",
      "path" : "Sources/SMBClient",
      "product_memberships" : [
        "SMBClient"
      ],
      "sources" : [
        "Auth/Crypto.swift",
        "Auth/NTLM.swift",
        "ByteReader.swift",
        "Connection.swift",
        "DCERPC/DCERPC.swift",
        "DCERPC/NetShareEnum.swift",
        "FileProxy.swift",
        "FileReader.swift",
        "FileTime.swift",
        "FileWriter.swift",
        "Messages/AccessMask/AccessMask.swift",
        "Messages/AccessMask/DirectoryAccessMask.swift",
        "Messages/AccessMask/FilePipePrinterAccessMask.swift",
        "Messages/Close+CustomDebugStringConvertible.swift",
        "Messages/Close.swift",
        "Messages/Create+CustomDebugStringConvertible.swift",
        "Messages/Create.swift",
        "Messages/Echo+CustomDebugStringConvertible.swift",
        "Messages/Echo.swift",
        "Messages/Errors/ErrorResponse.swift",
        "Messages/Errors/NTStatus.swift",
        "Messages/FileAttributes.swift",
        "Messages/FileInformationClasses/FileAccessInformation.swift",
        "Messages/FileInformationClasses/FileAlignmentInformation.swift",
        "Messages/FileInformationClasses/FileAllInformation.swift",
        "Messages/FileInformationClasses/FileBasicInformation.swift",
        "Messages/FileInformationClasses/FileDirectoryInformation.swift",
        "Messages/FileInformationClasses/FileDispositionInformation.swift",
        "Messages/FileInformationClasses/FileEaInformation.swift",
        "Messages/FileInformationClasses/FileIdBothDirectoryInformation.swift",
        "Messages/FileInformationClasses/FileInfoClass.swift",
        "Messages/FileInformationClasses/FileInformationClass.swift",
        "Messages/FileInformationClasses/FileInternalInformation.swift",
        "Messages/FileInformationClasses/FileModeInformation.swift",
        "Messages/FileInformationClasses/FileNameInformation.swift",
        "Messages/FileInformationClasses/FilePositionInformation.swift",
        "Messages/FileInformationClasses/FileRenameInformation.swift",
        "Messages/FileInformationClasses/FileStandardInformation.swift",
        "Messages/FileInformationClasses/InfoType.swift",
        "Messages/FileInformationClasses/SecurityDescriptor.swift",
        "Messages/FileSystemInformationClasses/FileFsDeviceInformation.swift",
        "Messages/FileSystemInformationClasses/FileFsLabelInformation.swift",
        "Messages/FileSystemInformationClasses/FileFsSizeInformation.swift",
        "Messages/FileSystemInformationClasses/FileFsVolumeInformation.swift",
        "Messages/FileSystemInformationClasses/FileSystemInfoClass.swift",
        "Messages/Flush.swift",
        "Messages/Header+CustomDebugStringConvertible.swift",
        "Messages/Header.swift",
        "Messages/IOCtl+CustomDebugStringConvertible.swift",
        "Messages/IOCtl.swift",
        "Messages/Logoff+CustomDebugStringConvertible.swift",
        "Messages/Logoff.swift",
        "Messages/Message.swift",
        "Messages/Negotiate+CustomDebugStringConvertible.swift",
        "Messages/Negotiate.swift",
        "Messages/QueryDirectory+CustomDebugStringConvertible.swift",
        "Messages/QueryDirectory.swift",
        "Messages/QueryInfo+CustomDebugStringConvertible.swift",
        "Messages/QueryInfo.swift",
        "Messages/Read+CustomDebugStringConvertible.swift",
        "Messages/Read.swift",
        "Messages/SessionSetup+CustomDebugStringConvertible.swift",
        "Messages/SessionSetup.swift",
        "Messages/SetInfo+CustomDebugStringConvertible.swift",
        "Messages/SetInfo.swift",
        "Messages/TreeConnect+CustomDebugStringConvertible.swift",
        "Messages/TreeConnect.swift",
        "Messages/TreeDisconnect+CustomDebugStringConvertible.swift",
        "Messages/TreeDisconnect.swift",
        "Messages/Write+CustomDebugStringConvertible.swift",
        "Messages/Write.swift",
        "Misc/BinaryConvertible.swift",
        "Misc/Data.swift",
        "Misc/Pathname.swift",
        "Misc/Semaphore.swift",
        "Misc/String.swift",
        "Misc/UUID.swift",
        "SMBClient.swift",
        "Session.swift",
        "Transport.swift",
        "TreeAccessor.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.