Build Information
Successful build of Updeto, reference main (27b7b7), with Swift 6.1 for Android on 8 Feb 2026 11:30:50 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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 2>&1Build 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 /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/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: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/manasv/Updeto.git
https://github.com/manasv/Updeto.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "Updeto",
"name" : "Updeto",
"path" : "/host/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 ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:08fa5f1bd27c53c71ebe7c2842e29d52715d90da2c5b8f52513c9039c232613d
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/10] Compiling Updeto AppStoreLookup.swift
[4/10] Emitting module Updeto
[5/10] Compiling Updeto AppStoreLookupResult.swift
[6/10] Compiling Updeto AppStoreProvider.swift
/host/spi-builder-workspace/Sources/Updeto/Providers/AppStoreProvider.swift:235:24: warning: capture of 'self' with non-sendable type 'AppStoreProvider' in a '@Sendable' closure; this is an error in the Swift 6 language mode
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; this is an error in the Swift 6 language mode
236 | self.executeLookup(attempt: attempt + 1, completion: completion)
237 | return
/host/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; this is an error in the Swift 6 language mode
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; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
237 | return
238 | }
[7/10] Compiling Updeto AppStoreUpdateInfo.swift
[8/10] Compiling Updeto UpdetoError.swift
[9/10] Compiling Updeto UpdateProvider.swift
[10/10] Compiling Updeto Updeto.swift
Build complete! (12.13s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Updeto",
"name" : "Updeto",
"path" : "/host/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"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:08fa5f1bd27c53c71ebe7c2842e29d52715d90da2c5b8f52513c9039c232613d
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.