Build Information
Successful build of swift-security, reference 2.4.0 (568085
), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 02:28:32 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dm-zharov/swift-security.git
Reference: 2.4.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/dm-zharov/swift-security
* tag 2.4.0 -> FETCH_HEAD
HEAD is now at 5680858 Improves type-checking for SecItemQuery
Cloned https://github.com/dm-zharov/swift-security.git
Revision (git rev-parse @):
56808589e8b5b02095afdd23357df7915639c6a2
SUCCESS checkout https://github.com/dm-zharov/swift-security.git at 2.4.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/dm-zharov/swift-security.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/31] Emitting module SwiftSecurity
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemQuery.swift:100:5: warning: 'public' modifier is redundant for static method declared in a public extension
98 | /// See [Developer Documentation](https://developer.apple.com/documentation/security/ksecattrsynchronizable).
99 | /// - Returns: ``SecItemQuery<SecKey>``.
100 | public static func key(
| `- warning: 'public' modifier is redundant for static method declared in a public extension
101 | for applicationTag: String? = nil,
102 | descriptor: SecKeyDescriptor = .ecPrivateKey,
[4/34] Compiling SwiftSecurity SecImportItemInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemQuery.swift:100:5: warning: 'public' modifier is redundant for static method declared in a public extension
98 | /// See [Developer Documentation](https://developer.apple.com/documentation/security/ksecattrsynchronizable).
99 | /// - Returns: ``SecItemQuery<SecKey>``.
100 | public static func key(
| `- warning: 'public' modifier is redundant for static method declared in a public extension
101 | for applicationTag: String? = nil,
102 | descriptor: SecKeyDescriptor = .ecPrivateKey,
[5/34] Compiling SwiftSecurity SecItemInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemQuery.swift:100:5: warning: 'public' modifier is redundant for static method declared in a public extension
98 | /// See [Developer Documentation](https://developer.apple.com/documentation/security/ksecattrsynchronizable).
99 | /// - Returns: ``SecItemQuery<SecKey>``.
100 | public static func key(
| `- warning: 'public' modifier is redundant for static method declared in a public extension
101 | for applicationTag: String? = nil,
102 | descriptor: SecKeyDescriptor = .ecPrivateKey,
[6/34] Compiling SwiftSecurity SecItemQuery.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemQuery.swift:100:5: warning: 'public' modifier is redundant for static method declared in a public extension
98 | /// See [Developer Documentation](https://developer.apple.com/documentation/security/ksecattrsynchronizable).
99 | /// - Returns: ``SecItemQuery<SecKey>``.
100 | public static func key(
| `- warning: 'public' modifier is redundant for static method declared in a public extension
101 | for applicationTag: String? = nil,
102 | descriptor: SecKeyDescriptor = .ecPrivateKey,
[7/34] Compiling SwiftSecurity SecItem.swift
[8/34] Compiling SwiftSecurity SecItemAttrKey.swift
[9/34] Compiling SwiftSecurity SecItemClass.swift
[10/34] Compiling SwiftSecurity KeyType.swift
[11/34] Compiling SwiftSecurity ProtocolType.swift
[12/34] Compiling SwiftSecurity TokenID.swift
[13/34] Compiling SwiftSecurity AccessGroup.swift
[14/34] Compiling SwiftSecurity Keychain.swift
[15/34] Compiling SwiftSecurity SecImportItemKey.swift
[16/34] Compiling SwiftSecurity SecCertificateConvertible.swift
[17/34] Compiling SwiftSecurity SecDataConvertible.swift
[18/34] Compiling SwiftSecurity SecIdentityConvertible.swift
[19/34] Compiling SwiftSecurity SecKeyConvertible.swift
[20/34] Compiling SwiftSecurity AccessPolicy.swift
[21/34] Compiling SwiftSecurity AuthenticationType.swift
[22/34] Compiling SwiftSecurity KeyClass.swift
[23/34] Compiling SwiftSecurity SecItemStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemStore.swift:161:18: warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
117 | /// - authenticationContext: A local authentication context.
118 | /// - Returns: On return, the found secure data.
119 | func retrieve<T: SecDataConvertible>(_ query: SecItemQuery<GenericPassword>, authenticationContext: LAContext?) throws -> T?
| `- note: 'retrieve(_:authenticationContext:)' declared here
120 |
121 | // MARK: Internet Password
:
159 | /// - Returns: On return, the first found secure data.
160 | public func retrieve(_ query: SecItemQuery<GenericPassword>) throws -> Data? {
161 | try self.retrieve<Data>(query, authenticationContext: nil)
| `- warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
162 | }
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemStore.swift:169:18: warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
148 | /// - authenticationContext: A local authentication context.
149 | /// - Returns: On return, the found web credential.
150 | func retrieve<T: SecDataConvertible>(_ query: SecItemQuery<InternetPassword>, authenticationContext: LAContext?) throws -> T?
| `- note: 'retrieve(_:authenticationContext:)' declared here
151 | }
152 |
:
167 | /// - Returns: On return, the first found web credential.
168 | public func retrieve(_ query: SecItemQuery<InternetPassword>) throws -> Data? {
169 | try self.retrieve<Data>(query, authenticationContext: nil)
| `- warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
170 | }
171 | }
[24/34] Compiling SwiftSecurity SecureRandomDataGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemStore.swift:161:18: warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
117 | /// - authenticationContext: A local authentication context.
118 | /// - Returns: On return, the found secure data.
119 | func retrieve<T: SecDataConvertible>(_ query: SecItemQuery<GenericPassword>, authenticationContext: LAContext?) throws -> T?
| `- note: 'retrieve(_:authenticationContext:)' declared here
120 |
121 | // MARK: Internet Password
:
159 | /// - Returns: On return, the first found secure data.
160 | public func retrieve(_ query: SecItemQuery<GenericPassword>) throws -> Data? {
161 | try self.retrieve<Data>(query, authenticationContext: nil)
| `- warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
162 | }
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemStore.swift:169:18: warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
148 | /// - authenticationContext: A local authentication context.
149 | /// - Returns: On return, the found web credential.
150 | func retrieve<T: SecDataConvertible>(_ query: SecItemQuery<InternetPassword>, authenticationContext: LAContext?) throws -> T?
| `- note: 'retrieve(_:authenticationContext:)' declared here
151 | }
152 |
:
167 | /// - Returns: On return, the first found web credential.
168 | public func retrieve(_ query: SecItemQuery<InternetPassword>) throws -> Data? {
169 | try self.retrieve<Data>(query, authenticationContext: nil)
| `- warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
170 | }
171 | }
[25/34] Compiling SwiftSecurity Certificate.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemStore.swift:161:18: warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
117 | /// - authenticationContext: A local authentication context.
118 | /// - Returns: On return, the found secure data.
119 | func retrieve<T: SecDataConvertible>(_ query: SecItemQuery<GenericPassword>, authenticationContext: LAContext?) throws -> T?
| `- note: 'retrieve(_:authenticationContext:)' declared here
120 |
121 | // MARK: Internet Password
:
159 | /// - Returns: On return, the first found secure data.
160 | public func retrieve(_ query: SecItemQuery<GenericPassword>) throws -> Data? {
161 | try self.retrieve<Data>(query, authenticationContext: nil)
| `- warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
162 | }
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSecurity/Keychain/SecItemStore/SecItemStore.swift:169:18: warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
148 | /// - authenticationContext: A local authentication context.
149 | /// - Returns: On return, the found web credential.
150 | func retrieve<T: SecDataConvertible>(_ query: SecItemQuery<InternetPassword>, authenticationContext: LAContext?) throws -> T?
| `- note: 'retrieve(_:authenticationContext:)' declared here
151 | }
152 |
:
167 | /// - Returns: On return, the first found web credential.
168 | public func retrieve(_ query: SecItemQuery<InternetPassword>) throws -> Data? {
169 | try self.retrieve<Data>(query, authenticationContext: nil)
| `- warning: cannot explicitly specialize instance method 'retrieve(_:authenticationContext:)'
170 | }
171 | }
[26/34] Compiling SwiftSecurity SecItemSearchKey.swift
[27/34] Compiling SwiftSecurity SecReturnType.swift
[28/34] Compiling SwiftSecurity SecValue.swift
[29/34] Compiling SwiftSecurity DigitalIdentity.swift
[30/34] Compiling SwiftSecurity PKCS12.swift
[31/34] Compiling SwiftSecurity WebProtectionSpace.swift
[32/34] Compiling SwiftSecurity SharedWebCredential.swift
[33/34] Compiling SwiftSecurity SwiftSecurityError.swift
[34/34] Compiling SwiftSecurity Credential.swift
Build complete! (8.63s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-security",
"name" : "swift-security",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "maccatalyst",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "7.0"
},
{
"name" : "tvos",
"version" : "14.0"
}
],
"products" : [
{
"name" : "SwiftSecurity",
"targets" : [
"SwiftSecurity"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftSecurityTests",
"module_type" : "SwiftTarget",
"name" : "SwiftSecurityTests",
"path" : "Tests/SwiftSecurityTests",
"sources" : [
"AccessPolicyTests.swift",
"EnumTests.swift",
"KeychainTests.swift"
],
"target_dependencies" : [
"SwiftSecurity"
],
"type" : "test"
},
{
"c99name" : "SwiftSecurity",
"module_type" : "SwiftTarget",
"name" : "SwiftSecurity",
"path" : "Sources/SwiftSecurity",
"product_memberships" : [
"SwiftSecurity"
],
"sources" : [
"CryptoKit/SecCertificateConvertible.swift",
"CryptoKit/SecDataConvertible.swift",
"CryptoKit/SecIdentityConvertible.swift",
"CryptoKit/SecKeyConvertible.swift",
"Keychain/AccessGroup.swift",
"Keychain/Keychain.swift",
"Keychain/SecItem/SecImportItemKey.swift",
"Keychain/SecItem/SecItem.swift",
"Keychain/SecItem/SecItemAttrKey.swift",
"Keychain/SecItem/SecItemClass.swift",
"Keychain/SecItem/SecItemSearchKey.swift",
"Keychain/SecItem/SecReturnType.swift",
"Keychain/SecItem/SecValue.swift",
"Keychain/SecItemAttr/AccessPolicy.swift",
"Keychain/SecItemAttr/AuthenticationType.swift",
"Keychain/SecItemAttr/KeyClass.swift",
"Keychain/SecItemAttr/KeyType.swift",
"Keychain/SecItemAttr/ProtocolType.swift",
"Keychain/SecItemAttr/TokenID.swift",
"Keychain/SecItemStore/SecImportItemInfo.swift",
"Keychain/SecItemStore/SecItemInfo.swift",
"Keychain/SecItemStore/SecItemQuery.swift",
"Keychain/SecItemStore/SecItemStore.swift",
"Randomization/SecureRandomDataGenerator.swift",
"Security/Certificate.swift",
"Security/DigitalIdentity.swift",
"Security/PKCS12.swift",
"Security/WebProtectionSpace.swift",
"SharedWebCredential/SharedWebCredential.swift",
"SwiftSecurityError.swift",
"SwiftUI/Credential.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.