The Swift Package Index logo.Swift Package Index

Build Information

Successful build of DRBGs, reference main (82e589), with Swift 6.3 for macOS (SPM) on 30 Apr 2026 21:58:50 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.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/sbooth/DRBGs.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sbooth/DRBGs
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 82e589c Format workflow steps in swift.yml (#33)
Cloned https://github.com/sbooth/DRBGs.git
Revision (git rev-parse @):
82e589c9b05aa4ae82f73812382fd040405007ea
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/sbooth/DRBGs.git at main
========================================
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",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "drbgs",
      "name": "DRBGs",
      "url": "https://github.com/sbooth/DRBGs.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/DRBGs",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/sbooth/DRBGs.git
[1/332] Fetching drbgs
Fetched https://github.com/sbooth/DRBGs.git from cache (0.91s)
Creating working copy for https://github.com/sbooth/DRBGs.git
Working copy of https://github.com/sbooth/DRBGs.git resolved at main (82e589c)
warning: '.resolve-product-dependencies': dependency 'drbgs' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/sbooth/DRBGs.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/16] Compiling DRBGs Xoroshiro128PlusPlus.swift
[4/16] Compiling DRBGs Xoroshiro128StarStar.swift
[5/16] Compiling DRBGs Xoshiro512PlusPlus.swift
[6/16] Compiling DRBGs Xoshiro256PlusPlus.swift
[7/17] Compiling DRBGs Xoshiro256Plus.swift
[8/17] Compiling DRBGs WYRand.swift
[9/17] Compiling DRBGs Xoroshiro128Plus.swift
[10/17] Compiling DRBGs Xoshiro256StarStar.swift
[11/17] Compiling DRBGs RandomNumberGenerator+unitFloat.swift
[12/17] Compiling DRBGs SplitMix64.swift
[13/17] Compiling DRBGs FixedWidthInteger+Rotation.swift
[14/17] Compiling DRBGs RandomNumberGenerator+unitDouble.swift
[15/17] Emitting module DRBGs
[16/17] Compiling DRBGs Xoshiro512Plus.swift
[17/17] Compiling DRBGs Xoshiro512StarStar.swift
Build complete! (2.33s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "DRBGs",
  "name" : "DRBGs",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "DRBGs",
      "targets" : [
        "DRBGs"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "DRBGsTests",
      "module_type" : "SwiftTarget",
      "name" : "DRBGsTests",
      "path" : "Tests/DRBGsTests",
      "sources" : [
        "DRBGsTests.swift"
      ],
      "target_dependencies" : [
        "DRBGs"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DRBGs",
      "module_type" : "SwiftTarget",
      "name" : "DRBGs",
      "path" : "Sources/DRBGs",
      "product_memberships" : [
        "DRBGs"
      ],
      "sources" : [
        "FixedWidthInteger+Rotation.swift",
        "RandomNumberGenerator+unitDouble.swift",
        "RandomNumberGenerator+unitFloat.swift",
        "SplitMix64.swift",
        "WYRand.swift",
        "Xoroshiro128Plus.swift",
        "Xoroshiro128PlusPlus.swift",
        "Xoroshiro128StarStar.swift",
        "Xoshiro256Plus.swift",
        "Xoshiro256PlusPlus.swift",
        "Xoshiro256StarStar.swift",
        "Xoshiro512Plus.swift",
        "Xoshiro512PlusPlus.swift",
        "Xoshiro512StarStar.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/sbooth/drbgs/main
Repository:               sbooth/DRBGs
Swift version used:       6.3
Target:                   DRBGs
Extracting symbol information for 'DRBGs'...
Finished extracting symbol information for 'DRBGs'. (21.81s)
Building documentation for 'DRBGs'...
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/SplitMix64.swift:35:6-35:41
33 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
34 | 	///
35 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
36 | 	public init(generator: inout RandomNumberGenerator) {
37 | 		state = generator.next()
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/WYRand.swift:40:6-40:41
38 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
39 | 	///
40 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
41 | 	public init(generator: inout RandomNumberGenerator) {
42 | 		state = generator.next()
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoroshiro128Plus.swift:64:6-64:41
62 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
63 | 	///
64 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
65 | 	public init(generator: inout RandomNumberGenerator) {
66 | 		state = (generator.next(), generator.next())
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoroshiro128PlusPlus.swift:52:6-52:41
50 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
51 | 	///
52 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
53 | 	public init(generator: inout RandomNumberGenerator) {
54 | 		state = (generator.next(), generator.next())
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoroshiro128StarStar.swift:52:6-52:41
50 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
51 | 	///
52 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
53 | 	public init(generator: inout RandomNumberGenerator) {
54 | 		state = (generator.next(), generator.next())
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoshiro256Plus.swift:55:6-55:41
53 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
54 | 	///
55 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
56 | 	public init(generator: inout RandomNumberGenerator) {
57 | 		state = (generator.next(), generator.next(), generator.next(), generator.next())
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoshiro256PlusPlus.swift:51:6-51:41
49 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
50 | 	///
51 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
52 | 	public init(generator: inout RandomNumberGenerator) {
53 | 		state = (generator.next(), generator.next(), generator.next(), generator.next())
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoshiro256StarStar.swift:51:6-51:41
49 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
50 | 	///
51 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
52 | 	public init(generator: inout RandomNumberGenerator) {
53 | 		state = (generator.next(), generator.next(), generator.next(), generator.next())
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoshiro512Plus.swift:55:6-55:41
53 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
54 | 	///
55 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
56 | 	public init(generator: inout RandomNumberGenerator) {
57 | 		state = (generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next())
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoshiro512PlusPlus.swift:51:6-51:41
49 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
50 | 	///
51 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
52 | 	public init(generator: inout RandomNumberGenerator) {
53 | 		state = (generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next())
warning: Parameter 'seed' not found in initializer declaration
  --> Sources/DRBGs/Xoshiro512StarStar.swift:51:6-51:41
49 | 	///  - parameter generator: A `RandomNumberGenerator` used to seed the generator
50 | 	///
51 + 	/// - parameter seed: The initial state
   |      ╰─suggestion: Remove 'seed' parameter documentation
52 | 	public init(generator: inout RandomNumberGenerator) {
53 | 		state = (generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next(), generator.next())
Finished building documentation for 'DRBGs' (0.41s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/sbooth/drbgs/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2287] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.11s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.5.0 (1.86s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3708] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.15s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.90s)
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
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.5.0
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--6988338F2F200930.txt
[6/54] Emitting module SymbolKit
[7/58] Compiling SymbolKit DeclarationFragments.swift
[8/58] Compiling SymbolKit Fragment.swift
[9/58] Compiling SymbolKit FragmentKind.swift
[10/58] Compiling SymbolKit FunctionParameter.swift
[11/58] Compiling SymbolKit FunctionSignature.swift
[12/58] Compiling SymbolKit Identifier.swift
[13/58] Compiling SymbolKit KindIdentifier.swift
[14/58] Compiling SymbolKit Location.swift
[15/58] Compiling SymbolKit Mutability.swift
[16/58] Compiling SymbolKit GenericConstraint.swift
[17/58] Compiling SymbolKit GenericParameter.swift
[18/58] Compiling SymbolKit Generics.swift
[19/58] Compiling SymbolKit Namespace.swift
[20/58] Compiling SymbolKit Mixin+Equals.swift
[21/58] Compiling SymbolKit Mixin+Hash.swift
[22/58] Compiling SymbolKit Mixin.swift
[23/58] Compiling SymbolKit LineList.swift
[24/58] Compiling SymbolKit Position.swift
[25/58] Compiling SymbolKit Symbol.swift
[26/58] Compiling SymbolKit SymbolKind.swift
[27/58] Compiling SymbolKit SymbolGraph.swift
[28/58] Compiling SymbolKit GraphCollector.swift
[29/58] Compiling SymbolKit Names.swift
[30/58] Compiling SymbolKit SPI.swift
[31/58] Compiling SymbolKit Snippet.swift
[32/58] Compiling SymbolKit Extension.swift
[33/58] Compiling SymbolKit SemanticVersion.swift
[34/58] Compiling SymbolKit AccessControl.swift
[35/58] Compiling SymbolKit Availability.swift
[36/58] Compiling SymbolKit AvailabilityItem.swift
[37/58] Compiling SymbolKit Domain.swift
[38/58] Compiling SymbolKit SourceRange.swift
[39/58] Compiling SymbolKit Metadata.swift
[40/58] Compiling SymbolKit Module.swift
[41/58] Compiling SymbolKit OperatingSystem.swift
[42/58] Compiling SymbolKit Platform.swift
[43/58] Compiling SymbolKit Relationship.swift
[44/58] Compiling SymbolKit RelationshipKind.swift
[45/58] Compiling SymbolKit SourceOrigin.swift
[46/58] Compiling SymbolKit GenericConstraints.swift
[47/58] Compiling SymbolKit Swift.swift
[48/58] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/58] Compiling SymbolKit UnifiedSymbol.swift
[50/58] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/58] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/58] Compiling Snippets SnippetLanguage.swift
[53/58] Compiling Snippets SnippetParser.swift
[54/58] Compiling Snippets Snippet.swift
[55/58] Emitting module Snippets
[56/62] Compiling snippet_extract URL+Status.swift
[57/62] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/62] Emitting module snippet_extract
[59/62] Compiling snippet_extract SnippetBuildCommand.swift
[59/62] Write Objects.LinkFileList
[60/62] Linking snippet-extract-tool
[61/62] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.20s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'DRBGs' complete! (0.19s)
     450
3	/Users/admin/builder/spi-builder-workspace/.docs/sbooth/drbgs/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/sbooth/drbgs/main
File count: 450
Doc size:   3.0MB
Preparing doc bundle ...
Uploading prod-sbooth-drbgs-main-3a25beba.zip to s3://spi-docs-inbox/prod-sbooth-drbgs-main-3a25beba.zip
Copying... [17%]
Copying... [25%]
Copying... [34%]
Copying... [42%]
Copying... [50%]
Copying... [67%]
Copying... [76%]
Copying... [84%]
Copying... [93%]
Copying... [100%]
Done.