The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Upsurge, reference master (932b89), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 11:51:04 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/alejandro-isaza/Upsurge.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/alejandro-isaza/Upsurge
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 932b897 Fix warnings for Xcode 10.2.1 and Swift 5. (#101)
Cloned https://github.com/alejandro-isaza/Upsurge.git
Revision (git rev-parse @):
932b897a9f6e86db12e262f95278f60ba6dad8b7
SUCCESS checkout https://github.com/alejandro-isaza/Upsurge.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/alejandro-isaza/Upsurge.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/27] Compiling Upsurge ComplexArrayRealSlice.swift
[4/27] Compiling Upsurge ComplexArraySlice.swift
[5/27] Compiling Upsurge Exponential.swift
[6/29] Compiling Upsurge PointerUtilities.swift
[7/29] Compiling Upsurge QuadraticType.swift
[8/29] Compiling Upsurge Real.swift
[9/29] Compiling Upsurge Sequence.swift
[10/29] Compiling Upsurge Span.swift
[11/29] Compiling Upsurge Interval.swift
[12/29] Compiling Upsurge LinearOperators.swift
[13/29] Compiling Upsurge LinearType.swift
[14/29] Compiling Upsurge TensorType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:87:18: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
85 |         precondition(rhs.count <= count)
86 |         withPointers(&self, rhs) { lhsp, rhsp in
87 |             lhsp.assign(from: UnsafeMutablePointer(mutating: rhsp), count: count)
   |                  |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
   |                  `- note: use 'update(from:count:)' instead
88 |         }
89 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[15/29] Compiling Upsurge Value.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/TensorType.swift:87:18: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
85 |         precondition(rhs.count <= count)
86 |         withPointers(&self, rhs) { lhsp, rhsp in
87 |             lhsp.assign(from: UnsafeMutablePointer(mutating: rhsp), count: count)
   |                  |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
   |                  `- note: use 'update(from:count:)' instead
88 |         }
89 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[16/29] Compiling Upsurge Complex.swift
[17/29] Compiling Upsurge ComplexArithmetic.swift
[18/29] Compiling Upsurge ComplexArray.swift
[19/29] Compiling Upsurge Matrix.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Matrix.swift:72:29: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
 70 |                 let sourcePointer = UnsafeMutablePointer<Element>(mutating: pointer.baseAddress! + (row * quad.stride))
 71 |                 let destPointer = elements.mutablePointer + row * columns
 72 |                 destPointer.assign(from: sourcePointer, count: columns)
    |                             |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[20/29] Compiling Upsurge MatrixArithmetic.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Matrix.swift:72:29: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
 70 |                 let sourcePointer = UnsafeMutablePointer<Element>(mutating: pointer.baseAddress! + (row * quad.stride))
 71 |                 let destPointer = elements.mutablePointer + row * columns
 72 |                 destPointer.assign(from: sourcePointer, count: columns)
    |                             |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[21/29] Compiling Upsurge MatrixSlice.swift
/Users/admin/builder/spi-builder-workspace/Sources/Upsurge/Matrix.swift:72:29: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
 70 |                 let sourcePointer = UnsafeMutablePointer<Element>(mutating: pointer.baseAddress! + (row * quad.stride))
 71 |                 let destPointer = elements.mutablePointer + row * columns
 72 |                 destPointer.assign(from: sourcePointer, count: columns)
    |                             |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[22/29] Compiling Upsurge Tensor.swift
[23/29] Compiling Upsurge TensorSlice.swift
[24/29] Emitting module Upsurge
[25/29] Compiling Upsurge 2DTensorSlice.swift
[26/29] Compiling Upsurge Arithmetic.swift
[27/29] Compiling Upsurge Auxiliary.swift
[28/29] Compiling Upsurge ValueArray.swift
[29/29] Compiling Upsurge ValueArraySlice.swift
Build complete! (5.38s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Upsurge",
  "name" : "Upsurge",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Upsurge",
      "targets" : [
        "Upsurge"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UpsurgeTests",
      "module_type" : "SwiftTarget",
      "name" : "UpsurgeTests",
      "path" : "Tests/UpsurgeTests",
      "sources" : [
        "ArithmeticTests.swift",
        "AuxiliaryTests.swift",
        "ComplexTests.swift",
        "ExponentialTests.swift",
        "RealMatrixTests.swift",
        "SpanTests.swift",
        "TensorTests.swift",
        "ValueArraySliceTests.swift",
        "ValueArrayTests.swift",
        "XCTestCase+Surge.swift"
      ],
      "target_dependencies" : [
        "Upsurge"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Upsurge",
      "module_type" : "SwiftTarget",
      "name" : "Upsurge",
      "path" : "Sources/Upsurge",
      "product_memberships" : [
        "Upsurge"
      ],
      "sources" : [
        "2DTensorSlice.swift",
        "Arithmetic.swift",
        "Auxiliary.swift",
        "Complex.swift",
        "ComplexArithmetic.swift",
        "ComplexArray.swift",
        "ComplexArrayRealSlice.swift",
        "ComplexArraySlice.swift",
        "Exponential.swift",
        "Interval.swift",
        "LinearOperators.swift",
        "LinearType.swift",
        "Matrix.swift",
        "MatrixArithmetic.swift",
        "MatrixSlice.swift",
        "PointerUtilities.swift",
        "QuadraticType.swift",
        "Real.swift",
        "Sequence.swift",
        "Span.swift",
        "Tensor.swift",
        "TensorSlice.swift",
        "TensorType.swift",
        "Value.swift",
        "ValueArray.swift",
        "ValueArraySlice.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.