Build Information
Successful build of CryptorRSA, reference 1.0.203 (f40325), with Swift 6.1 for macOS (SPM) on 1 May 2025 05:30:20 UTC.
Swift 6 data race errors: 4
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 -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 InferSendableFromCapturesBuild Log
========================================
RunAll
========================================
Builder version: 4.61.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Kitura/BlueRSA.git
Reference: 1.0.203
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Kitura/BlueRSA
* tag 1.0.203 -> FETCH_HEAD
HEAD is now at f403255 Updating version to 1.0.203 (#87)
Cloned https://github.com/Kitura/BlueRSA.git
Revision (git rev-parse @):
f40325520344a966523b214394aa350132a6af68
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Kitura/BlueRSA.git at 1.0.203
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "bluersa",
"name": "CryptorRSA",
"url": "https://github.com/Kitura/BlueRSA.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/BlueRSA",
"dependencies": [
]
}
]
}
Fetching https://github.com/Kitura/BlueRSA.git
[1/2018] Fetching bluersa
Fetched https://github.com/Kitura/BlueRSA.git from cache (0.86s)
Creating working copy for https://github.com/Kitura/BlueRSA.git
Working copy of https://github.com/Kitura/BlueRSA.git resolved at 1.0.203 (f403255)
warning: '.resolve-product-dependencies': dependency 'bluersa' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/Kitura/BlueRSA.git
https://github.com/Kitura/BlueRSA.git
{
"dependencies" : [
],
"manifest_display_name" : "CryptorRSA",
"name" : "CryptorRSA",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CryptorRSA",
"targets" : [
"CryptorRSA"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CryptorRSATests",
"module_type" : "SwiftTarget",
"name" : "CryptorRSATests",
"path" : "Tests/CryptorRSATests",
"sources" : [
"CryptorRSATests.swift"
],
"target_dependencies" : [
"CryptorRSA"
],
"type" : "test"
},
{
"c99name" : "CryptorRSA",
"module_type" : "SwiftTarget",
"name" : "CryptorRSA",
"path" : "Sources/CryptorRSA",
"product_memberships" : [
"CryptorRSA"
],
"sources" : [
"CryptorRSA.swift",
"CryptorRSAConstants.swift",
"CryptorRSADigest.swift",
"CryptorRSAErrors.swift",
"CryptorRSAKey.swift",
"CryptorRSAUtilities.swift",
"Data+Extensions.swift",
"SSLPointerTricks.swift"
],
"type" : "library"
}
],
"tools_version" : "5.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 -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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/11] Compiling CryptorRSA CryptorRSADigest.swift
[4/11] Compiling CryptorRSA SSLPointerTricks.swift
[5/11] Compiling CryptorRSA CryptorRSAKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:614:22: warning: static property 'bits1024' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | /// Denotes the size of the RSA key.
611 | public struct KeySize {
| `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | let bits: Int
613 | /// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
614 | public static let bits1024 = KeySize(bits: 1024)
| |- warning: static property 'bits1024' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bits1024' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
615 | /// A 2048 bit RSA key. Recommended if security will not be required beyond 2030.
616 | public static let bits2048 = KeySize(bits: 2048)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:616:22: warning: static property 'bits2048' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | /// Denotes the size of the RSA key.
611 | public struct KeySize {
| `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | let bits: Int
613 | /// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
614 | public static let bits1024 = KeySize(bits: 1024)
615 | /// A 2048 bit RSA key. Recommended if security will not be required beyond 2030.
616 | public static let bits2048 = KeySize(bits: 2048)
| |- warning: static property 'bits2048' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bits2048' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
617 | /// A 3072 bit RSA key. Recommended if security is required beyond 2030.
618 | public static let bits3072 = KeySize(bits: 3072)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:618:22: warning: static property 'bits3072' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | /// Denotes the size of the RSA key.
611 | public struct KeySize {
| `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | let bits: Int
613 | /// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
:
616 | public static let bits2048 = KeySize(bits: 2048)
617 | /// A 3072 bit RSA key. Recommended if security is required beyond 2030.
618 | public static let bits3072 = KeySize(bits: 3072)
| |- warning: static property 'bits3072' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bits3072' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 | /// A 4096 bit RSA key.
620 | public static let bits4096 = KeySize(bits: 4096)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:620:22: warning: static property 'bits4096' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | /// Denotes the size of the RSA key.
611 | public struct KeySize {
| `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | let bits: Int
613 | /// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
:
618 | public static let bits3072 = KeySize(bits: 3072)
619 | /// A 4096 bit RSA key.
620 | public static let bits4096 = KeySize(bits: 4096)
| |- warning: static property 'bits4096' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bits4096' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
621 | }
622 |
[6/11] Compiling CryptorRSA CryptorRSAUtilities.swift
[7/11] Compiling CryptorRSA Data+Extensions.swift
[8/11] Compiling CryptorRSA CryptorRSAErrors.swift
[9/11] Compiling CryptorRSA CryptorRSAConstants.swift
[10/11] Compiling CryptorRSA CryptorRSA.swift
[11/11] Emitting module CryptorRSA
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:614:22: warning: static property 'bits1024' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | /// Denotes the size of the RSA key.
611 | public struct KeySize {
| `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | let bits: Int
613 | /// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
614 | public static let bits1024 = KeySize(bits: 1024)
| |- warning: static property 'bits1024' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bits1024' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
615 | /// A 2048 bit RSA key. Recommended if security will not be required beyond 2030.
616 | public static let bits2048 = KeySize(bits: 2048)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:616:22: warning: static property 'bits2048' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | /// Denotes the size of the RSA key.
611 | public struct KeySize {
| `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | let bits: Int
613 | /// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
614 | public static let bits1024 = KeySize(bits: 1024)
615 | /// A 2048 bit RSA key. Recommended if security will not be required beyond 2030.
616 | public static let bits2048 = KeySize(bits: 2048)
| |- warning: static property 'bits2048' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bits2048' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
617 | /// A 3072 bit RSA key. Recommended if security is required beyond 2030.
618 | public static let bits3072 = KeySize(bits: 3072)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:618:22: warning: static property 'bits3072' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | /// Denotes the size of the RSA key.
611 | public struct KeySize {
| `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | let bits: Int
613 | /// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
:
616 | public static let bits2048 = KeySize(bits: 2048)
617 | /// A 3072 bit RSA key. Recommended if security is required beyond 2030.
618 | public static let bits3072 = KeySize(bits: 3072)
| |- warning: static property 'bits3072' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bits3072' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 | /// A 4096 bit RSA key.
620 | public static let bits4096 = KeySize(bits: 4096)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:620:22: warning: static property 'bits4096' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | /// Denotes the size of the RSA key.
611 | public struct KeySize {
| `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | let bits: Int
613 | /// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
:
618 | public static let bits3072 = KeySize(bits: 3072)
619 | /// A 4096 bit RSA key.
620 | public static let bits4096 = KeySize(bits: 4096)
| |- warning: static property 'bits4096' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bits4096' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
621 | }
622 |
Build complete! (4.74s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CryptorRSA",
"name" : "CryptorRSA",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CryptorRSA",
"targets" : [
"CryptorRSA"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CryptorRSATests",
"module_type" : "SwiftTarget",
"name" : "CryptorRSATests",
"path" : "Tests/CryptorRSATests",
"sources" : [
"CryptorRSATests.swift"
],
"target_dependencies" : [
"CryptorRSA"
],
"type" : "test"
},
{
"c99name" : "CryptorRSA",
"module_type" : "SwiftTarget",
"name" : "CryptorRSA",
"path" : "Sources/CryptorRSA",
"product_memberships" : [
"CryptorRSA"
],
"sources" : [
"CryptorRSA.swift",
"CryptorRSAConstants.swift",
"CryptorRSADigest.swift",
"CryptorRSAErrors.swift",
"CryptorRSAKey.swift",
"CryptorRSAUtilities.swift",
"Data+Extensions.swift",
"SSLPointerTricks.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/kitura/bluersa/1.0.203
Repository: Kitura/BlueRSA
Swift version used: 6.1
Target: CryptorRSA
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch release/6.2 -> FETCH_HEAD
* [new branch] release/6.2 -> origin/release/6.2
HEAD is now at 8799b69 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'CryptorRSA'...
Finished extracting symbol information for 'CryptorRSA'. (3.05s)
Building documentation for 'CryptorRSA'...
warning: Parameter 'type' is missing documentation
--> Sources/CryptorRSA/CryptorRSAUtilities.swift:219:5-219:5
217 | /// - Parameters:
218 | /// - keyData: `Data` containing the public key with or without the x509 header.
219 + ///
| ╰─suggestion: Document 'type' parameter
220 | /// - Returns: `Data` containing the public with header (if present) removed.
221 | ///
Finished building documentation for 'CryptorRSA' (0.17s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/kitura/bluersa/1.0.203
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.42s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (1.04s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.74s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.41s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Mixin+Equals.swift
[8/57] Compiling SymbolKit Mixin+Hash.swift
[9/57] Compiling SymbolKit Mixin.swift
[10/57] Compiling SymbolKit LineList.swift
[11/57] Compiling SymbolKit Position.swift
[12/57] Compiling SymbolKit DeclarationFragments.swift
[13/57] Compiling SymbolKit Fragment.swift
[14/57] Compiling SymbolKit FragmentKind.swift
[15/57] Compiling SymbolKit FunctionParameter.swift
[16/57] Compiling SymbolKit FunctionSignature.swift
[17/57] Compiling SymbolKit SemanticVersion.swift
[18/57] Compiling SymbolKit AccessControl.swift
[19/57] Compiling SymbolKit Availability.swift
[20/57] Compiling SymbolKit AvailabilityItem.swift
[21/57] Compiling SymbolKit Domain.swift
[22/57] Compiling SymbolKit Identifier.swift
[23/57] Compiling SymbolKit KindIdentifier.swift
[24/57] Compiling SymbolKit Location.swift
[25/57] Compiling SymbolKit Mutability.swift
[26/57] Compiling SymbolKit Names.swift
[27/57] Compiling SymbolKit SPI.swift
[28/57] Compiling SymbolKit Snippet.swift
[29/57] Compiling SymbolKit Extension.swift
[30/57] Compiling SymbolKit GenericConstraint.swift
[31/57] Compiling SymbolKit GenericParameter.swift
[32/57] Compiling SymbolKit Generics.swift
[33/57] Compiling SymbolKit Namespace.swift
[34/57] Compiling SymbolKit Relationship.swift
[35/57] Compiling SymbolKit RelationshipKind.swift
[36/57] Compiling SymbolKit SourceOrigin.swift
[37/57] Compiling SymbolKit GenericConstraints.swift
[38/57] Compiling SymbolKit Swift.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit SourceRange.swift
[44/57] Compiling SymbolKit Metadata.swift
[45/57] Compiling SymbolKit Module.swift
[46/57] Compiling SymbolKit OperatingSystem.swift
[47/57] Compiling SymbolKit Platform.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Emitting module Snippets
[53/57] Compiling Snippets Snippet.swift
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.27s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/10] Compiling CryptorRSA SSLPointerTricks.swift
[3/10] Compiling CryptorRSA CryptorRSAKey.swift
[4/10] Compiling CryptorRSA CryptorRSA.swift
[5/10] Compiling CryptorRSA Data+Extensions.swift
[6/10] Emitting module CryptorRSA
[7/10] Compiling CryptorRSA CryptorRSAUtilities.swift
[8/10] Compiling CryptorRSA CryptorRSADigest.swift
[9/10] Compiling CryptorRSA CryptorRSAConstants.swift
[10/10] Compiling CryptorRSA CryptorRSAErrors.swift
Build of target: 'CryptorRSA' complete! (1.10s)
308
3 /Users/admin/builder/spi-builder-workspace/.docs/kitura/bluersa/1.0.203
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/kitura/bluersa/1.0.203
File count: 308
Doc size: 3.0MB
Preparing doc bundle ...
Uploading prod-kitura-bluersa-1.0.203-084ba518.zip to s3://spi-docs-inbox/prod-kitura-bluersa-1.0.203-084ba518.zip
Copying... [10%]
Copying... [21%]
Copying... [31%]
Copying... [41%]
Copying... [52%]
Copying... [62%]
Copying... [72%]
Copying... [83%]
Copying... [93%]
Copying... [100%]
Done.