The Swift Package Index logo.Swift Package Index

Build Information

Successful build of WealthsimpleDownloader, reference v3.1.0 (160733), with Swift 6.2 for Linux on 11 Feb 2026 08:06:48 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Nef10/WealthsimpleDownloader.git
Reference: v3.1.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/Nef10/WealthsimpleDownloader
 * tag               v3.1.0     -> FETCH_HEAD
HEAD is now at 1607337 Bump setup-swift to v3 beta (#287)
Cloned https://github.com/Nef10/WealthsimpleDownloader.git
Revision (git rev-parse @):
16073376b77ef1382b4daf872bbf9b2b1f64ca6b
SUCCESS checkout https://github.com/Nef10/WealthsimpleDownloader.git at v3.1.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/Nef10/WealthsimpleDownloader.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:257b0ae9749b4eea8553a58f7bf60a672611c061e9b845ccfee371e7c1138ce8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/11] Compiling Wealthsimple WealthsimplePosition.swift
[4/11] Compiling Wealthsimple WealthsimpleDownloader.swift
[5/12] Compiling Wealthsimple Transaction.swift
[6/12] Compiling Wealthsimple WealthsimpleAccount.swift
[7/12] Compiling Wealthsimple String+CamelCase.swift
[8/12] Compiling Wealthsimple Token.swift
[9/12] Compiling Wealthsimple URLConfiguration.swift
[10/12] Emitting module Wealthsimple
[11/12] Compiling Wealthsimple WealthsimpleAsset.swift
[12/12] Compiling Wealthsimple WealthsimpleTransaction.swift
/host/spi-builder-workspace/Sources/Wealthsimple/WealthsimpleTransaction.swift:223:25: warning: mutation of captured var 'resultError' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
221 |                     switch result {
222 |                     case .failure(let failure):
223 |                         resultError = failure
    |                         `- warning: mutation of captured var 'resultError' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
224 |                     case .success(let data):
225 |                         resultData = data
/host/spi-builder-workspace/Sources/Wealthsimple/WealthsimpleTransaction.swift:225:25: warning: mutation of captured var 'resultData' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
223 |                         resultError = failure
224 |                     case .success(let data):
225 |                         resultData = data
    |                         `- warning: mutation of captured var 'resultData' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
226 |                     }
227 |                     group.leave()
/host/spi-builder-workspace/Sources/Wealthsimple/WealthsimpleTransaction.swift:269:17: warning: mutation of captured var 'nextResult' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
267 |         DispatchQueue.global(qos: .userInitiated).async {
268 |             getTransactions(token: token, account: account, startDate: startDate, cursor: cursor) {
269 |                 nextResult = $0
    |                 `- warning: mutation of captured var 'nextResult' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
270 |                 group.leave()
271 |             }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
Build complete! (12.80s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "WealthsimpleDownloader",
  "name" : "WealthsimpleDownloader",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Wealthsimple",
      "targets" : [
        "Wealthsimple"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "WealthsimpleTests",
      "module_type" : "SwiftTarget",
      "name" : "WealthsimpleTests",
      "path" : "Tests/WealthsimpleTests",
      "sources" : [
        "CreditCardPositionTests.swift",
        "Extensions/XCTestCase.swift",
        "ExtensionsTests/StringCamelCaseTests.swift",
        "Helpers/DownloaderTestCase.swift",
        "Helpers/MockAccount.swift",
        "Helpers/MockCredentialStorage.swift",
        "Helpers/MockURLProtocol.swift",
        "TokenTests.swift",
        "TransactionTests.swift",
        "URLConfigurationTests.swift",
        "WealthsimpleAccountTests.swift",
        "WealthsimpleAssetTests.swift",
        "WealthsimpleDownloaderTests.swift",
        "WealthsimplePositionTests.swift",
        "WealthsimpleTransactionTests.swift"
      ],
      "target_dependencies" : [
        "Wealthsimple"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Wealthsimple",
      "module_type" : "SwiftTarget",
      "name" : "Wealthsimple",
      "path" : "Sources/Wealthsimple",
      "product_memberships" : [
        "Wealthsimple"
      ],
      "sources" : [
        "Extensions/String+CamelCase.swift",
        "Token.swift",
        "Transaction.swift",
        "URLConfiguration.swift",
        "WealthsimpleAccount.swift",
        "WealthsimpleAsset.swift",
        "WealthsimpleDownloader.swift",
        "WealthsimplePosition.swift",
        "WealthsimpleTransaction.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:257b0ae9749b4eea8553a58f7bf60a672611c061e9b845ccfee371e7c1138ce8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.