The Swift Package Index logo.Swift Package Index

Build Information

Successful build of swift-keychain-kit, reference v0.2.0 (0269cb), with Swift 6.1 for macOS (SPM) on 3 Apr 2026 02:35:33 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

========================================
RunAll
========================================
Builder version: 4.69.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/philiprehberger/swift-keychain-kit.git
Reference: v0.2.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/philiprehberger/swift-keychain-kit
 * tag               v0.2.0     -> FETCH_HEAD
HEAD is now at 0269cba Release v0.2.0
Cloned https://github.com/philiprehberger/swift-keychain-kit.git
Revision (git rev-parse @):
0269cba96ee68284d5791323b0c570f96dece7c2
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/philiprehberger/swift-keychain-kit.git at v0.2.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/philiprehberger/swift-keychain-kit.git
https://github.com/philiprehberger/swift-keychain-kit.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-keychain-kit",
  "name" : "swift-keychain-kit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "KeychainKit",
      "targets" : [
        "KeychainKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "KeychainKitTests",
      "module_type" : "SwiftTarget",
      "name" : "KeychainKitTests",
      "path" : "Tests/KeychainKitTests",
      "sources" : [
        "AccessControlTests.swift",
        "CodableTests.swift",
        "KeyRotationTests.swift",
        "KeychainKitTests.swift"
      ],
      "target_dependencies" : [
        "KeychainKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "KeychainKit",
      "module_type" : "SwiftTarget",
      "name" : "KeychainKit",
      "path" : "Sources/KeychainKit",
      "product_memberships" : [
        "KeychainKit"
      ],
      "sources" : [
        "AccessControl.swift",
        "BiometricAuth.swift",
        "Expirable.swift",
        "KeyRotation.swift",
        "KeychainError.swift",
        "KeychainKit.swift",
        "KeychainQuery.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/10] Compiling KeychainKit KeychainError.swift
[4/10] Compiling KeychainKit KeychainQuery.swift
/Users/admin/builder/spi-builder-workspace/Sources/KeychainKit/KeychainQuery.swift:35:13: warning: 'kSecUseOperationPrompt' was deprecated in macOS 11.0: Use kSecUseAuthenticationContext and set LAContext.localizedReason property
33 |             kSecValueData as String: data,
34 |             kSecAttrAccessControl as String: accessControl,
35 |             kSecUseOperationPrompt as String: prompt
   |             `- warning: 'kSecUseOperationPrompt' was deprecated in macOS 11.0: Use kSecUseAuthenticationContext and set LAContext.localizedReason property
36 |         ]
37 |     }
/Users/admin/builder/spi-builder-workspace/Sources/KeychainKit/KeychainQuery.swift:56:13: warning: 'kSecUseOperationPrompt' was deprecated in macOS 11.0: Use kSecUseAuthenticationContext and set LAContext.localizedReason property
54 |             kSecReturnData as String: true,
55 |             kSecMatchLimit as String: kSecMatchLimitOne,
56 |             kSecUseOperationPrompt as String: prompt
   |             `- warning: 'kSecUseOperationPrompt' was deprecated in macOS 11.0: Use kSecUseAuthenticationContext and set LAContext.localizedReason property
57 |         ]
58 |     }
[5/10] Compiling KeychainKit AccessControl.swift
[6/10] Compiling KeychainKit KeyRotation.swift
[7/10] Compiling KeychainKit KeychainKit.swift
[8/10] Compiling KeychainKit BiometricAuth.swift
/Users/admin/builder/spi-builder-workspace/Sources/KeychainKit/BiometricAuth.swift:105:19: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
103 |                         continuation.resume(throwing: self.mapBiometricStatus(status))
104 |                     }
105 |                 } catch {
    |                   `- warning: 'catch' block is unreachable because no errors are thrown in 'do' block
106 |                     continuation.resume(throwing: error)
107 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/KeychainKit/BiometricAuth.swift:151:19: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
149 |                         continuation.resume(throwing: self.mapBiometricStatus(status))
150 |                     }
151 |                 } catch {
    |                   `- warning: 'catch' block is unreachable because no errors are thrown in 'do' block
152 |                     continuation.resume(throwing: error)
153 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/KeychainKit/BiometricAuth.swift:192:19: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
190 |                         continuation.resume(throwing: self.mapBiometricStatus(status))
191 |                     }
192 |                 } catch {
    |                   `- warning: 'catch' block is unreachable because no errors are thrown in 'do' block
193 |                     continuation.resume(throwing: error)
194 |                 }
[9/10] Emitting module KeychainKit
[10/10] Compiling KeychainKit Expirable.swift
Build complete! (5.62s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-keychain-kit",
  "name" : "swift-keychain-kit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "KeychainKit",
      "targets" : [
        "KeychainKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "KeychainKitTests",
      "module_type" : "SwiftTarget",
      "name" : "KeychainKitTests",
      "path" : "Tests/KeychainKitTests",
      "sources" : [
        "AccessControlTests.swift",
        "CodableTests.swift",
        "KeyRotationTests.swift",
        "KeychainKitTests.swift"
      ],
      "target_dependencies" : [
        "KeychainKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "KeychainKit",
      "module_type" : "SwiftTarget",
      "name" : "KeychainKit",
      "path" : "Sources/KeychainKit",
      "product_memberships" : [
        "KeychainKit"
      ],
      "sources" : [
        "AccessControl.swift",
        "BiometricAuth.swift",
        "Expirable.swift",
        "KeyRotation.swift",
        "KeychainError.swift",
        "KeychainKit.swift",
        "KeychainQuery.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.