Build Information
Successful build of Numerix, reference main (849b18), with Swift 6.2 for macOS (SPM) on 22 Nov 2025 13:55:27 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wigging/numerix.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/wigging/numerix
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 849b18a Fix lint warnings
Cloned https://github.com/wigging/numerix.git
Revision (git rev-parse @):
849b18a306d36a229ea6144ac8aa26012b13e909
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/wigging/numerix.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",
"dependencies": [
{
"identity": "numerix",
"name": "Numerix",
"url": "https://github.com/wigging/numerix.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/numerix",
"dependencies": [
]
}
]
}
Fetching https://github.com/wigging/numerix.git
[1/1877] Fetching numerix
Fetched https://github.com/wigging/numerix.git from cache (0.88s)
Creating working copy for https://github.com/wigging/numerix.git
Working copy of https://github.com/wigging/numerix.git resolved at main (849b18a)
warning: '.resolve-product-dependencies': dependency 'numerix' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/wigging/numerix.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-49B95AFC49DCD68C.txt
[3/36] Emitting module Numerix
[4/39] Compiling Numerix Complex+Equatable.swift
[5/39] Compiling Numerix Complex.swift
[6/39] Compiling Numerix ComplexArithmetic.swift
[7/39] Compiling Numerix DataBuffer.swift
[8/39] Compiling Numerix Vector+Equatable.swift
[9/39] Compiling Numerix Vector+StringConvertible.swift
[10/39] Compiling Numerix Vector.swift
[11/39] Compiling Numerix VectorLogarithm.swift
[12/39] Compiling Numerix VectorPower.swift
[13/39] Compiling Numerix VectorTrigonometry.swift
[14/39] Compiling Numerix Formatter.swift
[15/39] Compiling Numerix Operators.swift
[16/39] Compiling Numerix Matrix+Equatable.swift
[17/39] Compiling Numerix Matrix+StringConvertible.swift
[18/39] Compiling Numerix MatrixLogarithm.swift
[19/39] Compiling Numerix MatrixPad.swift
[20/39] Compiling Numerix MatrixPower.swift
[21/39] Compiling Numerix MatrixTrigonometry.swift
[22/39] Compiling Numerix ShapedArrayArithmetic.swift
[23/39] Compiling Numerix ShapedArrayElement.swift
[24/39] Compiling Numerix RandomVector.swift
[25/39] Compiling Numerix VectorAlgebra.swift
[26/39] Compiling Numerix VectorArithmetic.swift
[27/39] Compiling Numerix VectorExponential.swift
[28/39] Compiling Numerix Matrix.swift
[29/39] Compiling Numerix MatrixAlgebra.swift
[30/39] Compiling Numerix MatrixArithmetic.swift
[31/39] Compiling Numerix MatrixExponential.swift
[32/39] Compiling Numerix Helpers.swift
[33/39] Compiling Numerix NumberStyle.swift
[34/39] Compiling Numerix ShapedArray+StringConvertible.swift
[35/39] Compiling Numerix ShapedArray.swift
[36/39] Compiling Numerix RandomMatrix.swift
[37/39] Compiling Numerix Wyrand.swift
[38/39] Compiling Numerix Xoroshiro.swift
[39/39] Compiling Numerix Xoshiro.swift
Build complete! (8.93s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Numerix",
"name" : "Numerix",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "14.0"
},
{
"name" : "ios",
"version" : "17.0"
},
{
"name" : "tvos",
"version" : "17.0"
},
{
"name" : "watchos",
"version" : "10.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "Numerix",
"targets" : [
"Numerix"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Tests",
"module_type" : "SwiftTarget",
"name" : "Tests",
"path" : "Tests",
"sources" : [
"AlgebraTests.swift",
"ComplexTests.swift",
"MatrixTests.swift",
"PadTests.swift",
"RandomTests.swift",
"ShapedArrayTests.swift",
"TrigonometryTests.swift",
"VectorTests.swift"
],
"target_dependencies" : [
"Numerix"
],
"type" : "test"
},
{
"c99name" : "Numerix",
"module_type" : "SwiftTarget",
"name" : "Numerix",
"path" : "Sources/Numerix",
"product_memberships" : [
"Numerix"
],
"sources" : [
"Complex/Complex+Equatable.swift",
"Complex/Complex.swift",
"Complex/ComplexArithmetic.swift",
"Core/DataBuffer.swift",
"Core/Formatter.swift",
"Core/Operators.swift",
"Matrix/Matrix+Equatable.swift",
"Matrix/Matrix+StringConvertible.swift",
"Matrix/Matrix.swift",
"Matrix/MatrixAlgebra.swift",
"Matrix/MatrixArithmetic.swift",
"Matrix/MatrixExponential.swift",
"Matrix/MatrixLogarithm.swift",
"Matrix/MatrixPad.swift",
"Matrix/MatrixPower.swift",
"Matrix/MatrixTrigonometry.swift",
"Matrix/RandomMatrix.swift",
"RandomGenerators/Wyrand.swift",
"RandomGenerators/Xoroshiro.swift",
"RandomGenerators/Xoshiro.swift",
"ShapedArray/Helpers.swift",
"ShapedArray/NumberStyle.swift",
"ShapedArray/ShapedArray+StringConvertible.swift",
"ShapedArray/ShapedArray.swift",
"ShapedArray/ShapedArrayArithmetic.swift",
"ShapedArray/ShapedArrayElement.swift",
"Vector/RandomVector.swift",
"Vector/Vector+Equatable.swift",
"Vector/Vector+StringConvertible.swift",
"Vector/Vector.swift",
"Vector/VectorAlgebra.swift",
"Vector/VectorArithmetic.swift",
"Vector/VectorExponential.swift",
"Vector/VectorLogarithm.swift",
"Vector/VectorPower.swift",
"Vector/VectorTrigonometry.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/wigging/numerix/main
Repository: wigging/numerix
Swift version used: 6.2
Target: Numerix
Extracting symbol information for 'Numerix'...
Finished extracting symbol information for 'Numerix'. (2.99s)
Building documentation for 'Numerix'...
Finished building documentation for 'Numerix' (0.23s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/wigging/numerix/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2158] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.18s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (3.37s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3580] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.31s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.99s)
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.4.5
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-49B95AFC49DCD68C.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling Snippets Snippet.swift
[8/57] Emitting module Snippets
[9/57] Compiling Snippets SnippetParser.swift
[10/57] Compiling SymbolKit DeclarationFragments.swift
[11/57] Compiling SymbolKit Fragment.swift
[12/57] Compiling SymbolKit FragmentKind.swift
[13/57] Compiling SymbolKit FunctionParameter.swift
[14/57] Compiling SymbolKit FunctionSignature.swift
[15/57] Compiling SymbolKit Mixin+Equals.swift
[16/57] Compiling SymbolKit Mixin+Hash.swift
[17/57] Compiling SymbolKit Mixin.swift
[18/57] Compiling SymbolKit LineList.swift
[19/57] Compiling SymbolKit Position.swift
[20/57] Compiling SymbolKit Names.swift
[21/57] Compiling SymbolKit SPI.swift
[22/57] Compiling SymbolKit Snippet.swift
[23/57] Compiling SymbolKit Extension.swift
[24/57] Compiling SymbolKit Identifier.swift
[25/57] Compiling SymbolKit KindIdentifier.swift
[26/57] Compiling SymbolKit Location.swift
[27/57] Compiling SymbolKit Mutability.swift
[28/57] Compiling SymbolKit GenericConstraint.swift
[29/57] Compiling SymbolKit GenericParameter.swift
[30/57] Compiling SymbolKit Generics.swift
[31/57] Compiling SymbolKit Namespace.swift
[32/57] Compiling SymbolKit Symbol.swift
[33/57] Compiling SymbolKit SymbolKind.swift
[34/57] Compiling SymbolKit SymbolGraph.swift
[35/57] Compiling SymbolKit GraphCollector.swift
[36/57] Compiling SymbolKit SourceRange.swift
[37/57] Compiling SymbolKit Metadata.swift
[38/57] Compiling SymbolKit Module.swift
[39/57] Compiling SymbolKit OperatingSystem.swift
[40/57] Compiling SymbolKit Platform.swift
[41/57] Compiling SymbolKit SemanticVersion.swift
[42/57] Compiling SymbolKit AccessControl.swift
[43/57] Compiling SymbolKit Availability.swift
[44/57] Compiling SymbolKit AvailabilityItem.swift
[45/57] Compiling SymbolKit Domain.swift
[46/57] Compiling SymbolKit Relationship.swift
[47/57] Compiling SymbolKit RelationshipKind.swift
[48/57] Compiling SymbolKit SourceOrigin.swift
[49/57] Compiling SymbolKit GenericConstraints.swift
[50/57] Compiling SymbolKit Swift.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.25s)
Building for debugging...
[0/1] Write swift-version-49B95AFC49DCD68C.txt
Build of target: 'Numerix' complete! (0.23s)
572
5 /Users/admin/builder/spi-builder-workspace/.docs/wigging/numerix/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/wigging/numerix/main
File count: 572
Doc size: 5.0MB
Preparing doc bundle ...
Uploading prod-wigging-numerix-main-9608e241.zip to s3://spi-docs-inbox/prod-wigging-numerix-main-9608e241.zip
Copying... [14%]
Copying... [21%]
Copying... [34%]
Copying... [41%]
Copying... [55%]
Copying... [62%]
Copying... [75%]
Copying... [82%]
Copying... [96%]
Copying... [100%]
Done.