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

Failed to build Inflection, reference 0.0.1 (313cb5), with Swift 6.2 (beta) for Android on 18 Jun 2025 21:46:24 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SwiftDocOrg/Inflection.git
Reference: 0.0.1
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/SwiftDocOrg/Inflection
 * tag               0.0.1      -> FETCH_HEAD
HEAD is now at 313cb5a Create Changelog.md (#2)
Cloned https://github.com/SwiftDocOrg/Inflection.git
Revision (git rev-parse @):
313cb5a0e69933cdf731e1ddc90dc9f660286268
SUCCESS checkout https://github.com/SwiftDocOrg/Inflection.git at 0.0.1
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/SwiftDocOrg/Inflection.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/15] Compiling Inflection pt-BR.swift
[4/16] Compiling Inflection se.swift
[5/16] Compiling Inflection es.swift
[6/16] Compiling Inflection fr.swift
[7/16] Compiling Inflection la.swift
[8/16] Compiling Inflection nb.swift
[9/16] Compiling Inflection it.swift
[10/16] Compiling Inflection kk.swift
[11/16] Compiling Inflection tr.swift
[12/16] Emitting module Inflection
[13/16] Compiling Inflection az.swift
[14/16] Compiling Inflection en.swift
[15/16] Compiling Inflection StringProtocol+Extensions.swift
/host/spi-builder-workspace/Sources/Inflection/Inflector.swift:232:92: error: reference to property 'locale' in closure requires explicit use of 'self' to make capture semantics explicit
225 |
226 |             let regularExpression = try NSRegularExpression(pattern: pattern, options: [.allowCommentsAndWhitespace])
227 |             regularExpression.enumerateMatches(in: term, options: [], range: NSRange(startIndex..<term.endIndex, in: term)) { (result, _, _) in
    |                                                                                                                             `- note: capture 'self' explicitly to enable implicit 'self' in this closure
228 |                 guard let result = result,
229 |                       let resultRange = Range(result.range, in: term)
230 |                 else { return }
231 |
232 |                 term.replaceSubrange(resultRange, with: term[resultRange].lowercased(with: locale))
    |                                                                                            |- error: reference to property 'locale' in closure requires explicit use of 'self' to make capture semantics explicit
    |                                                                                            `- note: reference 'self.' explicitly
233 |             }
234 |         } catch {
/host/spi-builder-workspace/Sources/Inflection/Inflector.swift:252:36: error: reference to property 'acronyms' in closure requires explicit use of 'self' to make capture semantics explicit
242 |
243 |             var offset = 0
244 |             regularExpression.enumerateMatches(in: term, options: [], range: NSRange(term.startIndex..<term.endIndex, in: term)) { (result, _, _) in
    |                                                                                                                                  `- note: capture 'self' explicitly to enable implicit 'self' in this closure
245 |                 guard let result = result,
246 |                       let resultRange = Range(result.range, in: term),
    :
250 |                 let candidate = String(term[candidateRange])
251 |
252 |                 let replacement =  acronyms.contains(candidate) ? candidate : candidate.capitalized(with: locale)
    |                                    |- error: reference to property 'acronyms' in closure requires explicit use of 'self' to make capture semantics explicit
    |                                    `- note: reference 'self.' explicitly
253 |                 if result.range(at: 1).location != NSNotFound {
254 |                     defer { offset += 1 }
/host/spi-builder-workspace/Sources/Inflection/Inflector.swift:252:107: error: reference to property 'locale' in closure requires explicit use of 'self' to make capture semantics explicit
242 |
243 |             var offset = 0
244 |             regularExpression.enumerateMatches(in: term, options: [], range: NSRange(term.startIndex..<term.endIndex, in: term)) { (result, _, _) in
    |                                                                                                                                  `- note: capture 'self' explicitly to enable implicit 'self' in this closure
245 |                 guard let result = result,
246 |                       let resultRange = Range(result.range, in: term),
    :
250 |                 let candidate = String(term[candidateRange])
251 |
252 |                 let replacement =  acronyms.contains(candidate) ? candidate : candidate.capitalized(with: locale)
    |                                                                                                           |- error: reference to property 'locale' in closure requires explicit use of 'self' to make capture semantics explicit
    |                                                                                                           `- note: reference 'self.' explicitly
253 |                 if result.range(at: 1).location != NSNotFound {
254 |                     defer { offset += 1 }
/host/spi-builder-workspace/Sources/Inflection/Inflector.swift:545:9: warning: result of call to 'replaceMatches(in:options:range:withTemplate:)' is unused [#no-usage]
543 |         let mutableString = NSMutableString(string: string)
544 |         let range = NSRange(range ?? string.startIndex..<string.endIndex, in: string)
545 |         replaceMatches(in: mutableString, options: [], range: range, withTemplate: template)
    |         `- warning: result of call to 'replaceMatches(in:options:range:withTemplate:)' is unused [#no-usage]
546 |
547 |         return mutableString as String
[16/16] Compiling Inflection Inflector.swift
/host/spi-builder-workspace/Sources/Inflection/Inflector.swift:232:92: error: reference to property 'locale' in closure requires explicit use of 'self' to make capture semantics explicit
225 |
226 |             let regularExpression = try NSRegularExpression(pattern: pattern, options: [.allowCommentsAndWhitespace])
227 |             regularExpression.enumerateMatches(in: term, options: [], range: NSRange(startIndex..<term.endIndex, in: term)) { (result, _, _) in
    |                                                                                                                             `- note: capture 'self' explicitly to enable implicit 'self' in this closure
228 |                 guard let result = result,
229 |                       let resultRange = Range(result.range, in: term)
230 |                 else { return }
231 |
232 |                 term.replaceSubrange(resultRange, with: term[resultRange].lowercased(with: locale))
    |                                                                                            |- error: reference to property 'locale' in closure requires explicit use of 'self' to make capture semantics explicit
    |                                                                                            `- note: reference 'self.' explicitly
233 |             }
234 |         } catch {
/host/spi-builder-workspace/Sources/Inflection/Inflector.swift:252:36: error: reference to property 'acronyms' in closure requires explicit use of 'self' to make capture semantics explicit
242 |
243 |             var offset = 0
244 |             regularExpression.enumerateMatches(in: term, options: [], range: NSRange(term.startIndex..<term.endIndex, in: term)) { (result, _, _) in
    |                                                                                                                                  `- note: capture 'self' explicitly to enable implicit 'self' in this closure
245 |                 guard let result = result,
246 |                       let resultRange = Range(result.range, in: term),
    :
250 |                 let candidate = String(term[candidateRange])
251 |
252 |                 let replacement =  acronyms.contains(candidate) ? candidate : candidate.capitalized(with: locale)
    |                                    |- error: reference to property 'acronyms' in closure requires explicit use of 'self' to make capture semantics explicit
    |                                    `- note: reference 'self.' explicitly
253 |                 if result.range(at: 1).location != NSNotFound {
254 |                     defer { offset += 1 }
/host/spi-builder-workspace/Sources/Inflection/Inflector.swift:252:107: error: reference to property 'locale' in closure requires explicit use of 'self' to make capture semantics explicit
242 |
243 |             var offset = 0
244 |             regularExpression.enumerateMatches(in: term, options: [], range: NSRange(term.startIndex..<term.endIndex, in: term)) { (result, _, _) in
    |                                                                                                                                  `- note: capture 'self' explicitly to enable implicit 'self' in this closure
245 |                 guard let result = result,
246 |                       let resultRange = Range(result.range, in: term),
    :
250 |                 let candidate = String(term[candidateRange])
251 |
252 |                 let replacement =  acronyms.contains(candidate) ? candidate : candidate.capitalized(with: locale)
    |                                                                                                           |- error: reference to property 'locale' in closure requires explicit use of 'self' to make capture semantics explicit
    |                                                                                                           `- note: reference 'self.' explicitly
253 |                 if result.range(at: 1).location != NSNotFound {
254 |                     defer { offset += 1 }
/host/spi-builder-workspace/Sources/Inflection/Inflector.swift:545:9: warning: result of call to 'replaceMatches(in:options:range:withTemplate:)' is unused [#no-usage]
543 |         let mutableString = NSMutableString(string: string)
544 |         let range = NSRange(range ?? string.startIndex..<string.endIndex, in: string)
545 |         replaceMatches(in: mutableString, options: [], range: range, withTemplate: template)
    |         `- warning: result of call to 'replaceMatches(in:options:range:withTemplate:)' is unused [#no-usage]
546 |
547 |         return mutableString as String
BUILD FAILURE 6.2 android