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 Updeto, reference main (d4ee73), with Swift 6.1 for macOS (SPM) on 26 May 2025 00:16:57 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.63.1
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 d4ee733 chore(readme): update badges and usage to match current codebase
Cloned https://github.com/manasv/Updeto.git
Revision (git rev-parse @):
d4ee733a798230fc026524c8606ce75625b0751d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/manasv/Updeto.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": "updeto",
      "name": "Updeto",
      "url": "https://github.com/manasv/Updeto.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Updeto",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/manasv/Updeto.git
[1/228] Fetching updeto
Fetched https://github.com/manasv/Updeto.git from cache (0.60s)
Creating working copy for https://github.com/manasv/Updeto.git
Working copy of https://github.com/manasv/Updeto.git resolved at main (d4ee733)
warning: '.resolve-product-dependencies': dependency 'updeto' is not used by any target
Found 0 product dependencies
========================================
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"
    }
  ],
  "products" : [
    {
      "name" : "Updeto",
      "targets" : [
        "Updeto"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UpdetoTests",
      "module_type" : "SwiftTarget",
      "name" : "UpdetoTests",
      "path" : "Tests",
      "sources" : [
        "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",
        "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/8] Compiling Updeto Updeto.swift
/Users/admin/builder/spi-builder-workspace/Sources/Updeto/Updeto.swift:84:34: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
82 |             return await withCheckedContinuation { continuation in
83 |                 provider.isAppUpdated { result in
84 |                     continuation.resume(returning: result)
   |                                  |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
85 |                 }
86 |             }
[4/8] Compiling Updeto UpdateProvider.swift
[5/8] Compiling Updeto AppStoreLookup.swift
[6/8] Compiling Updeto AppStoreLookupResult.swift
[7/8] Emitting module Updeto
[8/8] Compiling Updeto AppStoreProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Updeto/Providers/AppStoreProvider.swift:108:39: warning: capture of 'self' with non-sendable type 'AppStoreProvider' in a '@Sendable' closure
  7 | ///
  8 | /// This provider uses the iTunes Lookup API to check for updates on the App Store.
  9 | public final class AppStoreProvider: UpdateProvider {
    |                    `- note: class 'AppStoreProvider' does not conform to the 'Sendable' protocol
 10 |     private let urlSession: URLSession
 11 |     private let decoder: JSONDecoder
    :
106 |             .dataTask(with: lookupRequest) { data, _, _ in
107 |                 guard let data = data,
108 |                     let lookup = try? self.decoder.decode(AppStoreLookup.self, from: data)
    |                                       `- warning: capture of 'self' with non-sendable type 'AppStoreProvider' in a '@Sendable' closure
109 |                 else {
110 |                     return
/Users/admin/builder/spi-builder-workspace/Sources/Updeto/Providers/AppStoreProvider.swift:115:25: warning: capture of 'completion' with non-sendable type '(AppStoreLookupResult) -> Void' in a '@Sendable' closure
113 |                     self.appId = appStore.appId
114 |                     DispatchQueue.main.async {
115 |                         completion(
    |                         |- warning: capture of 'completion' with non-sendable type '(AppStoreLookupResult) -> Void' in a '@Sendable' closure
    |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
116 |                             self.compareVersions(appStore.version, self.installedAppVersion).appstoreLookupResult
117 |                         )
Build complete! (5.08s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Updeto",
  "name" : "Updeto",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "Updeto",
      "targets" : [
        "Updeto"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UpdetoTests",
      "module_type" : "SwiftTarget",
      "name" : "UpdetoTests",
      "path" : "Tests",
      "sources" : [
        "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",
        "Providers/AppStoreProvider.swift",
        "Providers/UpdateProvider.swift",
        "Updeto.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/manasv/updeto/main
Repository:               manasv/Updeto
Swift version used:       6.1
Target:                   Updeto
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'Updeto'...
Finished extracting symbol information for 'Updeto'. (2.62s)
Building documentation for 'Updeto'...
Finished building documentation for 'Updeto' (0.12s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/manasv/updeto/main
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.44s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (2.96s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.88s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.50s)
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.3
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
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[2/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit DeclarationFragments.swift
[8/57] Compiling SymbolKit Fragment.swift
[9/57] Compiling SymbolKit FragmentKind.swift
[10/57] Compiling SymbolKit FunctionParameter.swift
[11/57] Compiling SymbolKit FunctionSignature.swift
[12/57] Compiling SymbolKit Mixin+Equals.swift
[13/57] Compiling SymbolKit Mixin+Hash.swift
[14/57] Compiling SymbolKit Mixin.swift
[15/57] Compiling SymbolKit LineList.swift
[16/57] Compiling SymbolKit Position.swift
[17/57] Compiling SymbolKit GenericConstraint.swift
[18/57] Compiling SymbolKit GenericParameter.swift
[19/57] Compiling SymbolKit Generics.swift
[20/57] Compiling SymbolKit Namespace.swift
[21/57] Compiling SymbolKit SemanticVersion.swift
[22/57] Compiling SymbolKit AccessControl.swift
[23/57] Compiling SymbolKit Availability.swift
[24/57] Compiling SymbolKit AvailabilityItem.swift
[25/57] Compiling SymbolKit Domain.swift
[26/57] Compiling SymbolKit Names.swift
[27/57] Compiling SymbolKit SPI.swift
[28/57] Compiling SymbolKit Snippet.swift
[29/57] Compiling SymbolKit Extension.swift
[30/57] Compiling SymbolKit SourceRange.swift
[31/57] Compiling SymbolKit Metadata.swift
[32/57] Compiling SymbolKit Module.swift
[33/57] Compiling SymbolKit OperatingSystem.swift
[34/57] Compiling SymbolKit Platform.swift
[35/57] Compiling SymbolKit Relationship.swift
[36/57] Compiling SymbolKit RelationshipKind.swift
[37/57] Compiling SymbolKit SourceOrigin.swift
[38/57] Compiling SymbolKit GenericConstraints.swift
[39/57] Compiling SymbolKit Swift.swift
[40/57] Compiling SymbolKit Identifier.swift
[41/57] Compiling SymbolKit KindIdentifier.swift
[42/57] Compiling SymbolKit Location.swift
[43/57] Compiling SymbolKit Mutability.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.29s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/7] Compiling Updeto Updeto.swift
[3/7] Compiling Updeto AppStoreLookup.swift
[4/7] Compiling Updeto UpdateProvider.swift
[5/7] Compiling Updeto AppStoreLookupResult.swift
[6/7] Emitting module Updeto
[7/7] Compiling Updeto AppStoreProvider.swift
Build of target: 'Updeto' complete! (0.65s)
     130
2	/Users/admin/builder/spi-builder-workspace/.docs/manasv/updeto/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/manasv/updeto/main
File count: 130
Doc size:   2.0MB
Preparing doc bundle ...
Uploading prod-manasv-updeto-main-63b0d553.zip to s3://spi-docs-inbox/prod-manasv-updeto-main-63b0d553.zip
Copying... [16%]
Copying... [32%]
Copying... [48%]
Copying... [65%]
Copying... [81%]
Copying... [97%]
Copying... [100%]
Done.