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

Successful build of Parsey, reference master (bcc927), with Swift 6.2 (beta) for Android on 17 Jun 2025 21:01:10 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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/rxwei/parsey.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/rxwei/parsey
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at bcc9279 Make compile with Swift 4.2.
Cloned https://github.com/rxwei/parsey.git
Revision (git rev-parse @):
bcc927948f454a29cb7a8177e3c17a2fdb233e68
SUCCESS checkout https://github.com/rxwei/parsey.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/rxwei/parsey.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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/17] Emitting module Parsey
/host/spi-builder-workspace/Sources/Parsey/Collection.swift:15:5: warning: 'public' modifier is redundant for initializer declared in a public extension
13 | #if swift(>=4.0)
14 | public extension SingletonCollection where Self : ExpressibleByArrayLiteral, Self.ArrayLiteralElement == Element {
15 |     public init(singleton: Element) {
   |     `- warning: 'public' modifier is redundant for initializer declared in a public extension
16 |         self = [singleton]
17 |     }
/host/spi-builder-workspace/Sources/Parsey/Collection.swift:29:18: warning: 'CharacterView' is deprecated: Please use String directly [#DeprecatedDeclaration]
27 | }
28 |
29 | extension String.CharacterView : SingletonCollection {
   |                  `- warning: 'CharacterView' is deprecated: Please use String directly [#DeprecatedDeclaration]
30 |
31 |     public init(singleton: Character) {
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:80:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 78 | public extension FloatingPoint {
 79 |
 80 |     public static prefix func /(rhs: Self) -> (Self) -> Self {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 81 |         return { $0 / rhs }
 82 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:84:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 82 |     }
 83 |
 84 |     public static postfix func /(lhs: Self) -> (Self) -> Self {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 85 |         return { lhs / $0 }
 86 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:92:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 90 | public extension Comparable {
 91 |
 92 |     public static prefix func ==(rhs: Self) -> (Self) -> Bool {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 93 |         return { $0 == rhs }
 94 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:96:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 94 |     }
 95 |
 96 |     public static prefix func !=(rhs: Self) -> (Self) -> Bool {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 97 |         return { $0 != rhs }
 98 |     }
/host/spi-builder-workspace/Sources/Parsey/Reducible.swift:15:5: warning: 'public' modifier is redundant for instance method declared in a public extension
13 |
14 | public extension Reducible {
15 |     public func mapReduce<Result: Associable>(_ transform: (Element) -> Result) -> Result {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
16 |         return reduce(Result.identity) { $0 + transform($1) }
17 |     }
/host/spi-builder-workspace/Sources/Parsey/Reducible.swift:22:5: warning: 'public' modifier is redundant for instance method declared in a public extension
20 | public extension Reducible where Element : Associable {
21 |     @inline(__always)
22 |     public func reduced() -> Element {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
23 |         return mapReduce{$0}
24 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[4/19] Compiling Parsey Sequence.swift
[5/19] Compiling Parsey Set.swift
[6/19] Compiling Parsey Array.swift
[7/19] Compiling Parsey Associable.swift
[8/19] Compiling Parsey Collection.swift
/host/spi-builder-workspace/Sources/Parsey/Collection.swift:15:5: warning: 'public' modifier is redundant for initializer declared in a public extension
13 | #if swift(>=4.0)
14 | public extension SingletonCollection where Self : ExpressibleByArrayLiteral, Self.ArrayLiteralElement == Element {
15 |     public init(singleton: Element) {
   |     `- warning: 'public' modifier is redundant for initializer declared in a public extension
16 |         self = [singleton]
17 |     }
/host/spi-builder-workspace/Sources/Parsey/Collection.swift:29:18: warning: 'CharacterView' is deprecated: Please use String directly [#DeprecatedDeclaration]
27 | }
28 |
29 | extension String.CharacterView : SingletonCollection {
   |                  `- warning: 'CharacterView' is deprecated: Please use String directly [#DeprecatedDeclaration]
30 |
31 |     public init(singleton: Character) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[9/19] Compiling Parsey Combinators.swift
/host/spi-builder-workspace/Sources/Parsey/Collection.swift:15:5: warning: 'public' modifier is redundant for initializer declared in a public extension
13 | #if swift(>=4.0)
14 | public extension SingletonCollection where Self : ExpressibleByArrayLiteral, Self.ArrayLiteralElement == Element {
15 |     public init(singleton: Element) {
   |     `- warning: 'public' modifier is redundant for initializer declared in a public extension
16 |         self = [singleton]
17 |     }
/host/spi-builder-workspace/Sources/Parsey/Collection.swift:29:18: warning: 'CharacterView' is deprecated: Please use String directly [#DeprecatedDeclaration]
27 | }
28 |
29 | extension String.CharacterView : SingletonCollection {
   |                  `- warning: 'CharacterView' is deprecated: Please use String directly [#DeprecatedDeclaration]
30 |
31 |     public init(singleton: Character) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[10/19] Compiling Parsey Error.swift
[11/19] Compiling Parsey Function.swift
[12/19] Compiling Parsey Parser.swift
/host/spi-builder-workspace/Sources/Parsey/Reducible.swift:15:5: warning: 'public' modifier is redundant for instance method declared in a public extension
13 |
14 | public extension Reducible {
15 |     public func mapReduce<Result: Associable>(_ transform: (Element) -> Result) -> Result {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
16 |         return reduce(Result.identity) { $0 + transform($1) }
17 |     }
/host/spi-builder-workspace/Sources/Parsey/Reducible.swift:22:5: warning: 'public' modifier is redundant for instance method declared in a public extension
20 | public extension Reducible where Element : Associable {
21 |     @inline(__always)
22 |     public func reduced() -> Element {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
23 |         return mapReduce{$0}
24 |     }
[13/19] Compiling Parsey Reducible.swift
/host/spi-builder-workspace/Sources/Parsey/Reducible.swift:15:5: warning: 'public' modifier is redundant for instance method declared in a public extension
13 |
14 | public extension Reducible {
15 |     public func mapReduce<Result: Associable>(_ transform: (Element) -> Result) -> Result {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
16 |         return reduce(Result.identity) { $0 + transform($1) }
17 |     }
/host/spi-builder-workspace/Sources/Parsey/Reducible.swift:22:5: warning: 'public' modifier is redundant for instance method declared in a public extension
20 | public extension Reducible where Element : Associable {
21 |     @inline(__always)
22 |     public func reduced() -> Element {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
23 |         return mapReduce{$0}
24 |     }
[14/19] Compiling Parsey Operators.swift
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:80:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 78 | public extension FloatingPoint {
 79 |
 80 |     public static prefix func /(rhs: Self) -> (Self) -> Self {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 81 |         return { $0 / rhs }
 82 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:84:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 82 |     }
 83 |
 84 |     public static postfix func /(lhs: Self) -> (Self) -> Self {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 85 |         return { lhs / $0 }
 86 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:92:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 90 | public extension Comparable {
 91 |
 92 |     public static prefix func ==(rhs: Self) -> (Self) -> Bool {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 93 |         return { $0 == rhs }
 94 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:96:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 94 |     }
 95 |
 96 |     public static prefix func !=(rhs: Self) -> (Self) -> Bool {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 97 |         return { $0 != rhs }
 98 |     }
/host/spi-builder-workspace/Sources/Parsey/Optional.swift:55:16: warning: function call causes an infinite recursion
53 |     @inline(__always)
54 |     public func flatMap<MapTarget>(_ transform: @escaping (MapSource) throws -> MapTarget?) -> MapTarget? {
55 |         return flatMap(transform as (Wrapped) throws -> MapTarget?)
   |                `- warning: function call causes an infinite recursion
56 |     }
57 |
[15/19] Compiling Parsey Optional.swift
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:80:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 78 | public extension FloatingPoint {
 79 |
 80 |     public static prefix func /(rhs: Self) -> (Self) -> Self {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 81 |         return { $0 / rhs }
 82 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:84:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 82 |     }
 83 |
 84 |     public static postfix func /(lhs: Self) -> (Self) -> Self {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 85 |         return { lhs / $0 }
 86 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:92:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 90 | public extension Comparable {
 91 |
 92 |     public static prefix func ==(rhs: Self) -> (Self) -> Bool {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 93 |         return { $0 == rhs }
 94 |     }
/host/spi-builder-workspace/Sources/Parsey/Operators.swift:96:5: warning: 'public' modifier is redundant for operator function declared in a public extension
 94 |     }
 95 |
 96 |     public static prefix func !=(rhs: Self) -> (Self) -> Bool {
    |     `- warning: 'public' modifier is redundant for operator function declared in a public extension
 97 |         return { $0 != rhs }
 98 |     }
/host/spi-builder-workspace/Sources/Parsey/Optional.swift:55:16: warning: function call causes an infinite recursion
53 |     @inline(__always)
54 |     public func flatMap<MapTarget>(_ transform: @escaping (MapSource) throws -> MapTarget?) -> MapTarget? {
55 |         return flatMap(transform as (Wrapped) throws -> MapTarget?)
   |                `- warning: function call causes an infinite recursion
56 |     }
57 |
[16/19] Compiling Parsey Mappable.swift
[17/19] Compiling Parsey Numeric.swift
[18/19] Compiling Parsey Lexer.swift
[19/19] Compiling Parsey Location.swift
Build complete! (19.81s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Parsey",
  "name" : "Parsey",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Parsey",
      "targets" : [
        "Parsey"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ParseyTests",
      "module_type" : "SwiftTarget",
      "name" : "ParseyTests",
      "path" : "Tests/ParseyTests",
      "sources" : [
        "ParseyTests.swift"
      ],
      "target_dependencies" : [
        "Parsey"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Parsey",
      "module_type" : "SwiftTarget",
      "name" : "Parsey",
      "path" : "Sources/Parsey",
      "product_memberships" : [
        "Parsey"
      ],
      "sources" : [
        "Array.swift",
        "Associable.swift",
        "Collection.swift",
        "Combinators.swift",
        "Error.swift",
        "Function.swift",
        "Lexer.swift",
        "Location.swift",
        "Mappable.swift",
        "Numeric.swift",
        "Operators.swift",
        "Optional.swift",
        "Parser.swift",
        "Reducible.swift",
        "Sequence.swift",
        "Set.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.