The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ParserCombinator, reference 0.1.6 (320428), with Swift 6.2 for Android on 18 Jun 2025 02:35:29 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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/stiivi/parsercombinator.git
Reference: 0.1.6
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/stiivi/parsercombinator
 * tag               0.1.6      -> FETCH_HEAD
HEAD is now at 3204281 Minor naming change and removal of self references.
Cloned https://github.com/stiivi/parsercombinator.git
Revision (git rev-parse @):
3204281df7ae77cd0723128fa146a467524fc8c9
SUCCESS checkout https://github.com/stiivi/parsercombinator.git at 0.1.6
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/stiivi/parsercombinator.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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/10] Compiling ParserCombinator Stream.swift
[4/10] Compiling ParserCombinator Recognizers.swift
[5/10] Compiling ParserCombinator Empty.swift
[6/10] Compiling ParserCombinator Combinators.swift
/host/spi-builder-workspace/Sources/ParserCombinator/Combinators.swift:65:17: warning: enum case 'OK' has one associated value that is a tuple of 2 elements
 63 |
 64 |         switch result {
 65 |         case .OK(let value, let input2):
    |                 `- warning: enum case 'OK' has one associated value that is a tuple of 2 elements
 66 |             return f(value).parse(input2)
 67 |         case .Fail(let error, let token):
/host/spi-builder-workspace/Sources/ParserCombinator/Parser.swift:35:10: note: 'OK' declared here
33 |
34 |     /// Holds the parser result value if the parser succeeded
35 |     case OK(Value)
   |          `- note: 'OK' declared here
36 |     /// Parser failed to match an expected input. Other parsers might continue
37 |     /// parsing if their predecessors failed.
[7/10] Compiling ParserCombinator Operators+Convenience.swift
[8/10] Emitting module ParserCombinator
[9/10] Compiling ParserCombinator Functions.swift
[10/10] Compiling ParserCombinator Parser.swift
/host/spi-builder-workspace/Sources/ParserCombinator/Parser.swift:45:20: warning: enum case 'Fail' has 2 associated values; matching them as a tuple is deprecated [#deprecation]
36 |     /// Parser failed to match an expected input. Other parsers might continue
37 |     /// parsing if their predecessors failed.
38 |     case Fail(String, T)
   |          `- note: 'Fail' declared here
39 |     /// Unrecoverable error
40 |     case Error(String, T)
   :
43 |         switch self {
44 | 		case .OK(let value): return String(describing: value)
45 |         case .Fail(let error): return "Fail: \(error)"
   |                    `- warning: enum case 'Fail' has 2 associated values; matching them as a tuple is deprecated [#deprecation]
46 |         case .Error(let error): return "Error: \(error)"
47 |         }
/host/spi-builder-workspace/Sources/ParserCombinator/Parser.swift:46:21: warning: enum case 'Error' has 2 associated values; matching them as a tuple is deprecated [#deprecation]
38 |     case Fail(String, T)
39 |     /// Unrecoverable error
40 |     case Error(String, T)
   |          `- note: 'Error' declared here
41 |
42 |     public var description: String {
   :
44 | 		case .OK(let value): return String(describing: value)
45 |         case .Fail(let error): return "Fail: \(error)"
46 |         case .Error(let error): return "Error: \(error)"
   |                     `- warning: enum case 'Error' has 2 associated values; matching them as a tuple is deprecated [#deprecation]
47 |         }
48 |     }
Build complete! (9.15s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ParserCombinator",
  "name" : "ParserCombinator",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ParserCombinator",
      "targets" : [
        "ParserCombinator"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ParserCombinatorTests",
      "module_type" : "SwiftTarget",
      "name" : "ParserCombinatorTests",
      "path" : "Tests/ParserCombinatorTests",
      "sources" : [
        "ParserCombinatorTests.swift"
      ],
      "target_dependencies" : [
        "ParserCombinator"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ParserCombinator",
      "module_type" : "SwiftTarget",
      "name" : "ParserCombinator",
      "path" : "Sources/ParserCombinator",
      "product_memberships" : [
        "ParserCombinator"
      ],
      "sources" : [
        "Combinators.swift",
        "Empty.swift",
        "Functions.swift",
        "Operators+Convenience.swift",
        "Parser.swift",
        "Recognizers.swift",
        "Stream.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
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
Done.