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 INI, reference master (60b788), with Swift 6.1 for Android on 27 May 2025 09:16:04 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/bouke/ini.git
Reference: master
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/bouke/ini
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 60b7887 Release 1.2.0
Cloned https://github.com/bouke/ini.git
Revision (git rev-parse @):
60b7887c6f4051e5cb76b5faa0a7d6db510ddcb0
SUCCESS checkout https://github.com/bouke/ini.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/bouke/ini.git
https://github.com/bouke/ini.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "INI",
  "name" : "INI",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "INI",
      "targets" : [
        "INI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "INITests",
      "module_type" : "SwiftTarget",
      "name" : "INITests",
      "path" : "Tests/INITests",
      "sources" : [
        "ParseINITests.swift"
      ],
      "target_dependencies" : [
        "INI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "INI",
      "module_type" : "SwiftTarget",
      "name" : "INI",
      "path" : "Sources/INI",
      "product_memberships" : [
        "INI"
      ],
      "sources" : [
        "Error.swift",
        "Scanner+Swift.swift",
        "parseINI().swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" 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:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
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/6] Compiling INI parseINI().swift
[4/6] Emitting module INI
[5/6] Compiling INI Error.swift
/host/spi-builder-workspace/Sources/INI/Error.swift:14:32: warning: enum case 'invalidSyntax' has one associated value that is a tuple of 3 elements
 5 | }
 6 | enum ParseError: Error {
 7 |     case invalidSyntax(Scanner.Position)
   |          `- note: 'invalidSyntax' declared here
 8 |     case unsupportedToken(Scanner.Position)
 9 | }
   :
12 |     var description: String {
13 |         switch self {
14 |         case let .invalidSyntax(_, row, pos): return "Invalid syntax at row \(row), position \(pos)"
   |                                `- warning: enum case 'invalidSyntax' has one associated value that is a tuple of 3 elements
15 |         case let .unsupportedToken(_, row, pos): return "Unsupported token at row \(row), position \(pos)"
16 |         }
/host/spi-builder-workspace/Sources/INI/Error.swift:15:35: warning: enum case 'unsupportedToken' has one associated value that is a tuple of 3 elements
 6 | enum ParseError: Error {
 7 |     case invalidSyntax(Scanner.Position)
 8 |     case unsupportedToken(Scanner.Position)
   |          `- note: 'unsupportedToken' declared here
 9 | }
10 |
   :
13 |         switch self {
14 |         case let .invalidSyntax(_, row, pos): return "Invalid syntax at row \(row), position \(pos)"
15 |         case let .unsupportedToken(_, row, pos): return "Unsupported token at row \(row), position \(pos)"
   |                                   `- warning: enum case 'unsupportedToken' has one associated value that is a tuple of 3 elements
16 |         }
17 |     }
[6/6] Compiling INI Scanner+Swift.swift
/host/spi-builder-workspace/Sources/INI/Scanner+Swift.swift:21:44: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 19 |     func scanCharacters(from set: CharacterSet) -> String? {
 20 |         var value: NSString? = ""
 21 |         if scanCharacters(from: set, into: &value),
    |                                            |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
    |                                            `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 22 |             let value = value as String? {
 23 |             return value
/host/spi-builder-workspace/Sources/INI/Scanner+Swift.swift:39:48: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 37 |     func scanUpToCharacters(from set: CharacterSet) -> String? {
 38 |         var value: NSString? = ""
 39 |         if scanUpToCharacters(from: set, into: &value),
    |                                                |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
    |                                                `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 40 |             let value = value as String? {
 41 |             return value
/host/spi-builder-workspace/Sources/INI/Scanner+Swift.swift:51:34: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 49 |     func scanString(_ str: String) -> String? {
 50 |         var value: NSString? = ""
 51 |         if scanString(str, into: &value),
    |                                  |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
    |                                  `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 52 |             let value = value as String? {
 53 |             return value
/host/spi-builder-workspace/Sources/INI/Scanner+Swift.swift:69:32: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 67 |     func scanUpTo(_ str: String) -> String? {
 68 |         var value: NSString? = ""
 69 |         if scanUpTo(str, into: &value),
    |                                |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
    |                                `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 70 |             let value = value as String? {
 71 |             return value
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/5] Compiling INI parseINI().swift
[3/5] Emitting module INI
[4/5] Compiling INI Error.swift
/host/spi-builder-workspace/Sources/INI/Error.swift:14:32: warning: enum case 'invalidSyntax' has one associated value that is a tuple of 3 elements
 5 | }
 6 | enum ParseError: Error {
 7 |     case invalidSyntax(Scanner.Position)
   |          `- note: 'invalidSyntax' declared here
 8 |     case unsupportedToken(Scanner.Position)
 9 | }
   :
12 |     var description: String {
13 |         switch self {
14 |         case let .invalidSyntax(_, row, pos): return "Invalid syntax at row \(row), position \(pos)"
   |                                `- warning: enum case 'invalidSyntax' has one associated value that is a tuple of 3 elements
15 |         case let .unsupportedToken(_, row, pos): return "Unsupported token at row \(row), position \(pos)"
16 |         }
/host/spi-builder-workspace/Sources/INI/Error.swift:15:35: warning: enum case 'unsupportedToken' has one associated value that is a tuple of 3 elements
 6 | enum ParseError: Error {
 7 |     case invalidSyntax(Scanner.Position)
 8 |     case unsupportedToken(Scanner.Position)
   |          `- note: 'unsupportedToken' declared here
 9 | }
10 |
   :
13 |         switch self {
14 |         case let .invalidSyntax(_, row, pos): return "Invalid syntax at row \(row), position \(pos)"
15 |         case let .unsupportedToken(_, row, pos): return "Unsupported token at row \(row), position \(pos)"
   |                                   `- warning: enum case 'unsupportedToken' has one associated value that is a tuple of 3 elements
16 |         }
17 |     }
[5/5] Compiling INI Scanner+Swift.swift
/host/spi-builder-workspace/Sources/INI/Scanner+Swift.swift:21:44: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 19 |     func scanCharacters(from set: CharacterSet) -> String? {
 20 |         var value: NSString? = ""
 21 |         if scanCharacters(from: set, into: &value),
    |                                            |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
    |                                            `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 22 |             let value = value as String? {
 23 |             return value
/host/spi-builder-workspace/Sources/INI/Scanner+Swift.swift:39:48: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 37 |     func scanUpToCharacters(from set: CharacterSet) -> String? {
 38 |         var value: NSString? = ""
 39 |         if scanUpToCharacters(from: set, into: &value),
    |                                                |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
    |                                                `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 40 |             let value = value as String? {
 41 |             return value
/host/spi-builder-workspace/Sources/INI/Scanner+Swift.swift:51:34: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 49 |     func scanString(_ str: String) -> String? {
 50 |         var value: NSString? = ""
 51 |         if scanString(str, into: &value),
    |                                  |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
    |                                  `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 52 |             let value = value as String? {
 53 |             return value
/host/spi-builder-workspace/Sources/INI/Scanner+Swift.swift:69:32: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 67 |     func scanUpTo(_ str: String) -> String? {
 68 |         var value: NSString? = ""
 69 |         if scanUpTo(str, into: &value),
    |                                |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
    |                                `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 70 |             let value = value as String? {
 71 |             return value
BUILD FAILURE 6.1 android