Build Information
Successful build of LocaleSupport, reference main (2e258b
), with Swift 6.1 for Android on 31 Aug 2025 23:07:09 UTC.
Swift 6 data race errors: 1
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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
Build Log
========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/richardpiazza/LocaleSupport.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/richardpiazza/LocaleSupport
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 2e258b3 Deprecation Cleanup (#15)
Cloned https://github.com/richardpiazza/LocaleSupport.git
Revision (git rev-parse @):
2e258b38557504211bd5e89c555d591beda97d65
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/richardpiazza/LocaleSupport.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/richardpiazza/LocaleSupport.git
https://github.com/richardpiazza/LocaleSupport.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"default_localization" : "en",
"dependencies" : [
],
"manifest_display_name" : "LocaleSupport",
"name" : "LocaleSupport",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "16.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "LocaleSupport",
"targets" : [
"LocaleSupport"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "LocaleSupportTests",
"module_type" : "SwiftTarget",
"name" : "LocaleSupportTests",
"path" : "Tests/LocaleSupportTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/LocaleSupportTests/Resources/en.lproj/Localizable.strings",
"rule" : {
"process" : {
"localization" : "en"
}
}
}
],
"sources" : [
"LocaleTests.swift",
"LocalizedStringConvertibleTests.swift",
"LocalizedStrings.swift"
],
"target_dependencies" : [
"LocaleSupport"
],
"type" : "test"
},
{
"c99name" : "LocaleSupport",
"module_type" : "SwiftTarget",
"name" : "LocaleSupport",
"path" : "Sources/LocaleSupport",
"product_memberships" : [
"LocaleSupport"
],
"sources" : [
"Locale+LocaleSupport.swift",
"Locale.LanguageCode+LocaleSupport.swift",
"Locale.Region+LocaleSupport.swift",
"Locale.Script+LocaleSupport.swift",
"LocaleSupportConfiguration.swift",
"LocaleSupportError.swift",
"LocalizedStringConvertible.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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:8106a39f56f5bb7aad9f0d9a94f1e5362f9a40b692f7bc17efe17b7b91dc65fc
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 LocaleSupport LocaleSupportError.swift
[4/10] Compiling LocaleSupport LocaleSupportConfiguration.swift
/host/spi-builder-workspace/Sources/LocaleSupport/LocaleSupportConfiguration.swift:6:23: warning: static property 'defaultIndicators' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 |
5 | /// Characters that will be prepended/appended to any default `LocalizedStringConvertible` implementation.
6 | public static var defaultIndicators: (prefix: Character, suffix: Character)?
| |- warning: static property 'defaultIndicators' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultIndicators' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultIndicators' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | }
8 |
[5/10] Compiling LocaleSupport Locale.Script+LocaleSupport.swift
[6/10] Compiling LocaleSupport Locale.Region+LocaleSupport.swift
[7/10] Compiling LocaleSupport LocalizedStringConvertible.swift
[8/10] Emitting module LocaleSupport
/host/spi-builder-workspace/Sources/LocaleSupport/LocaleSupportConfiguration.swift:6:23: warning: static property 'defaultIndicators' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 |
5 | /// Characters that will be prepended/appended to any default `LocalizedStringConvertible` implementation.
6 | public static var defaultIndicators: (prefix: Character, suffix: Character)?
| |- warning: static property 'defaultIndicators' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultIndicators' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultIndicators' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | }
8 |
[9/10] Compiling LocaleSupport Locale+LocaleSupport.swift
[10/10] Compiling LocaleSupport Locale.LanguageCode+LocaleSupport.swift
Build complete! (18.06s)
Build complete.
{
"default_localization" : "en",
"dependencies" : [
],
"manifest_display_name" : "LocaleSupport",
"name" : "LocaleSupport",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "16.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "LocaleSupport",
"targets" : [
"LocaleSupport"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "LocaleSupportTests",
"module_type" : "SwiftTarget",
"name" : "LocaleSupportTests",
"path" : "Tests/LocaleSupportTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/LocaleSupportTests/Resources/en.lproj/Localizable.strings",
"rule" : {
"process" : {
"localization" : "en"
}
}
}
],
"sources" : [
"LocaleTests.swift",
"LocalizedStringConvertibleTests.swift",
"LocalizedStrings.swift"
],
"target_dependencies" : [
"LocaleSupport"
],
"type" : "test"
},
{
"c99name" : "LocaleSupport",
"module_type" : "SwiftTarget",
"name" : "LocaleSupport",
"path" : "Sources/LocaleSupport",
"product_memberships" : [
"LocaleSupport"
],
"sources" : [
"Locale+LocaleSupport.swift",
"Locale.LanguageCode+LocaleSupport.swift",
"Locale.Region+LocaleSupport.swift",
"Locale.Script+LocaleSupport.swift",
"LocaleSupportConfiguration.swift",
"LocaleSupportError.swift",
"LocalizedStringConvertible.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8106a39f56f5bb7aad9f0d9a94f1e5362f9a40b692f7bc17efe17b7b91dc65fc
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.