The Swift Package Index logo.Swift Package Index

Build Information

Successful build of LazyArray, reference 1.1.0 (d4a88c), with Swift 6.1 for Android on 27 May 2025 12:51:55 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.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.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/lucas34/LazyArray.git
Reference: 1.1.0
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/lucas34/LazyArray
 * tag               1.1.0      -> FETCH_HEAD
HEAD is now at d4a88c7 Release 1.1.0
Cloned https://github.com/lucas34/LazyArray.git
Revision (git rev-parse @):
d4a88c74376a47e25231d039349cdae907ffcc4a
SUCCESS checkout https://github.com/lucas34/LazyArray.git at 1.1.0
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/lucas34/LazyArray.git
https://github.com/lucas34/LazyArray.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "LazyArray",
  "name" : "LazyArray",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "LazyArray",
      "targets" : [
        "LazyArray"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "3",
    "4"
  ],
  "targets" : [
    {
      "c99name" : "LazyArrayTests",
      "module_type" : "SwiftTarget",
      "name" : "LazyArrayTests",
      "path" : "Tests/LazyArrayTests",
      "sources" : [
        "LazyArrayTests.swift"
      ],
      "target_dependencies" : [
        "LazyArray"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LazyArray",
      "module_type" : "SwiftTarget",
      "name" : "LazyArray",
      "path" : "Sources/LazyArray",
      "product_memberships" : [
        "LazyArray"
      ],
      "sources" : [
        "LazyArray+Any.swift",
        "LazyArray+Array.swift",
        "LazyArray+Cache.swift",
        "LazyArray+CoutableRange.swift",
        "LazyArray+Linear.swift",
        "LazyArray+Map.swift",
        "LazyArray+Range.swift",
        "LazyArray+Sequence.swift",
        "LazyArray.swift",
        "LazyMutableList.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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/12] Compiling LazyArray LazyArray+Cache.swift
[4/12] Compiling LazyArray LazyArray+CoutableRange.swift
[5/13] Compiling LazyArray LazyArray+Sequence.swift
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:10:5: warning: 'public' modifier is redundant for static method declared in a public extension
 8 | public extension LazyArray {
 9 |
10 |     public static func EMPTY<E>() -> LazyArray<E> {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
11 |         return LazyArray<E>()
12 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:14:5: warning: 'public' modifier is redundant for property declared in a public extension
12 |     }
13 |
14 |     public final var isEmpty: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
15 |         return count < 1
16 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:18:5: warning: 'public' modifier is redundant for property declared in a public extension
16 |     }
17 |
18 |     public final var hasData: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
19 |         return !isEmpty
20 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:22:5: warning: 'public' modifier is redundant for property declared in a public extension
20 |     }
21 |
22 |     public final var first: Element? {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
23 |         return isEmpty ? nil : self[0]
24 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:26:5: warning: 'public' modifier is redundant for property declared in a public extension
24 |     }
25 |
26 |     public final var last: Element? {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
27 |         return isEmpty ? nil : self[count - 1]
28 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:30:5: warning: 'public' modifier is redundant for instance method declared in a public extension
28 |     }
29 |
30 |     public final func dropFirst() -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
31 |         guard count > 0 else {
32 |             return LazyArray<Element>.EMPTY()
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
35 |     }
36 |
37 |     public final func dropFirst(_ n: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
38 |         guard n >= 0 else {
39 |             fatalError("Can't drop a negative number of elements from a collection")
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:44:5: warning: 'public' modifier is redundant for instance method declared in a public extension
42 |     }
43 |
44 |     public final func dropLast() -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
45 |         return self[0..<Swift.max(0, (count - 1))]
46 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:48:5: warning: 'public' modifier is redundant for instance method declared in a public extension
46 |     }
47 |
48 |     public final func dropLast(_ n: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
49 |         guard n >= 0 else {
50 |             fatalError("Can't drop a negative number of elements from a collection")
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:55:5: warning: 'public' modifier is redundant for instance method declared in a public extension
53 |     }
54 |
55 |     public final func prefix(_ maxLength: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
56 |         guard maxLength >= 0 else {
57 |             fatalError("Can't take a prefix of negative length from a collection")
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:62:5: warning: 'public' modifier is redundant for instance method declared in a public extension
60 |     }
61 |
62 |     public final func suffix(_ maxLength: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
63 |         guard maxLength >= 0 else {
64 |             fatalError("Can't take a suffix of negative length from a collection")
[6/13] Compiling LazyArray LazyArray.swift
[7/13] Compiling LazyArray LazyMutableList.swift
[8/13] Compiling LazyArray LazyArray+Any.swift
[9/13] Compiling LazyArray LazyArray+Array.swift
[10/13] Emitting module LazyArray
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:10:5: warning: 'public' modifier is redundant for static method declared in a public extension
 8 | public extension LazyArray {
 9 |
10 |     public static func EMPTY<E>() -> LazyArray<E> {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
11 |         return LazyArray<E>()
12 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:14:5: warning: 'public' modifier is redundant for property declared in a public extension
12 |     }
13 |
14 |     public final var isEmpty: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
15 |         return count < 1
16 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:18:5: warning: 'public' modifier is redundant for property declared in a public extension
16 |     }
17 |
18 |     public final var hasData: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
19 |         return !isEmpty
20 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:22:5: warning: 'public' modifier is redundant for property declared in a public extension
20 |     }
21 |
22 |     public final var first: Element? {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
23 |         return isEmpty ? nil : self[0]
24 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:26:5: warning: 'public' modifier is redundant for property declared in a public extension
24 |     }
25 |
26 |     public final var last: Element? {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
27 |         return isEmpty ? nil : self[count - 1]
28 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:30:5: warning: 'public' modifier is redundant for instance method declared in a public extension
28 |     }
29 |
30 |     public final func dropFirst() -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
31 |         guard count > 0 else {
32 |             return LazyArray<Element>.EMPTY()
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
35 |     }
36 |
37 |     public final func dropFirst(_ n: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
38 |         guard n >= 0 else {
39 |             fatalError("Can't drop a negative number of elements from a collection")
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:44:5: warning: 'public' modifier is redundant for instance method declared in a public extension
42 |     }
43 |
44 |     public final func dropLast() -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
45 |         return self[0..<Swift.max(0, (count - 1))]
46 |     }
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:48:5: warning: 'public' modifier is redundant for instance method declared in a public extension
46 |     }
47 |
48 |     public final func dropLast(_ n: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
49 |         guard n >= 0 else {
50 |             fatalError("Can't drop a negative number of elements from a collection")
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:55:5: warning: 'public' modifier is redundant for instance method declared in a public extension
53 |     }
54 |
55 |     public final func prefix(_ maxLength: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
56 |         guard maxLength >= 0 else {
57 |             fatalError("Can't take a prefix of negative length from a collection")
/host/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:62:5: warning: 'public' modifier is redundant for instance method declared in a public extension
60 |     }
61 |
62 |     public final func suffix(_ maxLength: Int) -> LazyArray<Element> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
63 |         guard maxLength >= 0 else {
64 |             fatalError("Can't take a suffix of negative length from a collection")
[11/13] Compiling LazyArray LazyArray+Range.swift
[12/13] Compiling LazyArray LazyArray+Linear.swift
[13/13] Compiling LazyArray LazyArray+Map.swift
Build complete! (20.51s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "LazyArray",
  "name" : "LazyArray",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "LazyArray",
      "targets" : [
        "LazyArray"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "3",
    "4"
  ],
  "targets" : [
    {
      "c99name" : "LazyArrayTests",
      "module_type" : "SwiftTarget",
      "name" : "LazyArrayTests",
      "path" : "Tests/LazyArrayTests",
      "sources" : [
        "LazyArrayTests.swift"
      ],
      "target_dependencies" : [
        "LazyArray"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LazyArray",
      "module_type" : "SwiftTarget",
      "name" : "LazyArray",
      "path" : "Sources/LazyArray",
      "product_memberships" : [
        "LazyArray"
      ],
      "sources" : [
        "LazyArray+Any.swift",
        "LazyArray+Array.swift",
        "LazyArray+Cache.swift",
        "LazyArray+CoutableRange.swift",
        "LazyArray+Linear.swift",
        "LazyArray+Map.swift",
        "LazyArray+Range.swift",
        "LazyArray+Sequence.swift",
        "LazyArray.swift",
        "LazyMutableList.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
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
Done.