This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Upsurge with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.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.0
Building package at path:  $workDir
https://github.com/alejandro-isaza/Upsurge.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/27] Emitting module Upsurge
[4/29] Compiling Upsurge PointerUtilities.swift
[5/29] Compiling Upsurge QuadraticType.swift
[6/29] Compiling Upsurge Real.swift
[7/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:)'
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:)'
   |                  `- note: use 'update(from:count:)' instead
88 |         }
89 |     }
[8/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:)'
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:)'
   |                  `- note: use 'update(from:count:)' instead
88 |         }
89 |     }
[9/29] Compiling Upsurge Sequence.swift
[10/29] Compiling Upsurge Span.swift
[11/29] Compiling Upsurge ComplexArrayRealSlice.swift
[12/29] Compiling Upsurge ComplexArraySlice.swift
[13/29] Compiling Upsurge Exponential.swift
[14/29] Compiling Upsurge Tensor.swift
[15/29] Compiling Upsurge TensorSlice.swift
[16/29] Compiling Upsurge ValueArray.swift
[17/29] Compiling Upsurge ValueArraySlice.swift
[18/29] Compiling Upsurge Complex.swift
[19/29] Compiling Upsurge ComplexArithmetic.swift
[20/29] Compiling Upsurge ComplexArray.swift
[21/29] Compiling Upsurge Interval.swift
[22/29] Compiling Upsurge LinearOperators.swift
[23/29] Compiling Upsurge LinearType.swift
[24/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:)'
 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:)'
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[25/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:)'
 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:)'
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[26/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:)'
 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:)'
    |                             `- note: use 'update(from:count:)' instead
 73 |             }
 74 |         }
[27/29] Compiling Upsurge 2DTensorSlice.swift
[28/29] Compiling Upsurge Arithmetic.swift
[29/29] Compiling Upsurge Auxiliary.swift
Build complete! (31.42s)
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.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.