The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Updeto, reference main (27b7b7), with Swift 6.1 for macOS (SPM) on 8 Feb 2026 11:31:07 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/manasv/Updeto.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/manasv/Updeto
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 27b7b72 fix(spi): harden cross-platform compilation for package builds
Cloned https://github.com/manasv/Updeto.git
Revision (git rev-parse @):
27b7b7290f7761a282a519d7b206dbb5c755ef42
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/manasv/Updeto.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/manasv/Updeto.git
https://github.com/manasv/Updeto.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Updeto",
  "name" : "Updeto",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "Updeto",
      "targets" : [
        "Updeto"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UpdetoTests",
      "module_type" : "SwiftTarget",
      "name" : "UpdetoTests",
      "path" : "Tests",
      "sources" : [
        "UpdetoLiveIntegrationTests.swift",
        "UpdetoTests.swift"
      ],
      "target_dependencies" : [
        "Updeto"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Updeto",
      "module_type" : "SwiftTarget",
      "name" : "Updeto",
      "path" : "Sources/Updeto",
      "product_memberships" : [
        "Updeto"
      ],
      "sources" : [
        "Models/AppStoreLookup.swift",
        "Models/AppStoreLookupResult.swift",
        "Models/AppStoreUpdateInfo.swift",
        "Models/UpdetoError.swift",
        "Providers/AppStoreProvider.swift",
        "Providers/UpdateProvider.swift",
        "Updeto.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/10] Compiling Updeto UpdateProvider.swift
[4/10] Compiling Updeto UpdetoError.swift
[5/10] Compiling Updeto AppStoreProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Updeto/Providers/AppStoreProvider.swift:235:24: warning: capture of 'self' with non-sendable type 'AppStoreProvider' in a '@Sendable' closure
 10 | ///
 11 | /// This provider uses the iTunes Lookup API to check for updates on the App Store.
 12 | public final class AppStoreProvider: UpdateProvider {
    |                    `- note: class 'AppStoreProvider' does not conform to the 'Sendable' protocol
 13 |     private let urlSession: URLSession
 14 |     private let decoder: JSONDecoder
    :
233 |                 if let urlError = error as? URLError {
234 |                     let failure: Result<AppStoreUpdateInfo, UpdetoError> = .failure(.network(urlError))
235 |                     if self.shouldRetry(after: .network(urlError), attempt: attempt) {
    |                        `- warning: capture of 'self' with non-sendable type 'AppStoreProvider' in a '@Sendable' closure
236 |                         self.executeLookup(attempt: attempt + 1, completion: completion)
237 |                         return
/Users/admin/builder/spi-builder-workspace/Sources/Updeto/Providers/AppStoreProvider.swift:236:78: warning: capture of 'completion' with non-sendable type '(Result<AppStoreUpdateInfo, UpdetoError>) -> Void' in a '@Sendable' closure
234 |                     let failure: Result<AppStoreUpdateInfo, UpdetoError> = .failure(.network(urlError))
235 |                     if self.shouldRetry(after: .network(urlError), attempt: attempt) {
236 |                         self.executeLookup(attempt: attempt + 1, completion: completion)
    |                                                                              |- warning: capture of 'completion' with non-sendable type '(Result<AppStoreUpdateInfo, UpdetoError>) -> Void' in a '@Sendable' closure
    |                                                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
237 |                         return
238 |                     }
[6/10] Compiling Updeto AppStoreUpdateInfo.swift
[7/10] Compiling Updeto AppStoreLookupResult.swift
[8/10] Compiling Updeto Updeto.swift
[9/10] Compiling Updeto AppStoreLookup.swift
[10/10] Emitting module Updeto
Build complete! (4.78s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Updeto",
  "name" : "Updeto",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "Updeto",
      "targets" : [
        "Updeto"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UpdetoTests",
      "module_type" : "SwiftTarget",
      "name" : "UpdetoTests",
      "path" : "Tests",
      "sources" : [
        "UpdetoLiveIntegrationTests.swift",
        "UpdetoTests.swift"
      ],
      "target_dependencies" : [
        "Updeto"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Updeto",
      "module_type" : "SwiftTarget",
      "name" : "Updeto",
      "path" : "Sources/Updeto",
      "product_memberships" : [
        "Updeto"
      ],
      "sources" : [
        "Models/AppStoreLookup.swift",
        "Models/AppStoreLookupResult.swift",
        "Models/AppStoreUpdateInfo.swift",
        "Models/UpdetoError.swift",
        "Providers/AppStoreProvider.swift",
        "Providers/UpdateProvider.swift",
        "Updeto.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Done.