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 Ranges, reference 3.2.1 (97a25b), with Swift 6.2 (beta) for Android on 22 Jun 2025 06:01:21 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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/yockow/swiftranges.git
Reference: 3.2.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/yockow/swiftranges
 * tag               3.2.1      -> FETCH_HEAD
HEAD is now at 97a25be Merge pull request #32 from YOCKOW/development
Cloned https://github.com/yockow/swiftranges.git
Revision (git rev-parse @):
97a25be1410234d03de69e1ac93f54ba853b04ef
SUCCESS checkout https://github.com/yockow/swiftranges.git at 3.2.1
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/yockow/swiftranges.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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/5] Write sources
[1/5] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/33] Emitting module Ranges
[4/36] Compiling Ranges GeneralizedRange+Subtraction.swift
[5/36] Compiling Ranges GeneralizedRange.swift
[6/36] Compiling Ranges HashableRange.swift
[7/36] Compiling Ranges LeftOpenRange.swift
[8/36] Compiling Ranges AnyBounds.swift
/host/spi-builder-workspace/Sources/Ranges/AnyBounds.swift:188:49: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
186 |       }
187 |
188 |       return self._concatenating(other).flatMap(_UncountableBounds<Bound>.init)
    |                                                 `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
189 |     }
190 |   }
/host/spi-builder-workspace/Sources/Ranges/AnyBounds.swift:237:49: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
235 |     override func concatenating(_ other: _AnyBounds) -> _AnyBounds? {
236 |       guard case let other as _SomeBounds<Bound> = other else { fatalError("Unexpected type.") }
237 |       return self._concatenating(other).flatMap(_CountableBounds<Bound>.init)
    |                                                 `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
238 |     }
239 |   }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:25:51: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 23 |   /// Pass `nil` if you want to create a instance that represents an empty range.
 24 |   public init(uncheckedBounds: Bounds<Bound>?) {
 25 |     self.init(_anyBounds: uncheckedBounds.flatMap(_AnyBounds.init(countableBounds:)))
    |                                                   `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 26 |   }
 27 | }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:33:51: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 31 |   /// Pass `nil` if you want to create a instance that represents an empty range.
 32 |   public init(uncheckedBounds: Bounds<Bound>?) {
 33 |     self.init(_anyBounds: uncheckedBounds.flatMap(_AnyBounds.init(uncountableBounds:)))
    |                                                   `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 34 |   }
 35 | }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:162:56: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
160 |     guard let myBounds = self._anyBounds else { return other }
161 |     guard let otherBounds = other._anyBounds else { return self }
162 |     return myBounds.concatenating(otherBounds).flatMap(AnyRange<Bound>.init)
    |                                                        `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
163 |   }
164 | }
[9/36] Compiling Ranges AnyRange+Operators.swift
/host/spi-builder-workspace/Sources/Ranges/AnyBounds.swift:188:49: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
186 |       }
187 |
188 |       return self._concatenating(other).flatMap(_UncountableBounds<Bound>.init)
    |                                                 `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
189 |     }
190 |   }
/host/spi-builder-workspace/Sources/Ranges/AnyBounds.swift:237:49: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
235 |     override func concatenating(_ other: _AnyBounds) -> _AnyBounds? {
236 |       guard case let other as _SomeBounds<Bound> = other else { fatalError("Unexpected type.") }
237 |       return self._concatenating(other).flatMap(_CountableBounds<Bound>.init)
    |                                                 `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
238 |     }
239 |   }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:25:51: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 23 |   /// Pass `nil` if you want to create a instance that represents an empty range.
 24 |   public init(uncheckedBounds: Bounds<Bound>?) {
 25 |     self.init(_anyBounds: uncheckedBounds.flatMap(_AnyBounds.init(countableBounds:)))
    |                                                   `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 26 |   }
 27 | }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:33:51: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 31 |   /// Pass `nil` if you want to create a instance that represents an empty range.
 32 |   public init(uncheckedBounds: Bounds<Bound>?) {
 33 |     self.init(_anyBounds: uncheckedBounds.flatMap(_AnyBounds.init(uncountableBounds:)))
    |                                                   `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 34 |   }
 35 | }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:162:56: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
160 |     guard let myBounds = self._anyBounds else { return other }
161 |     guard let otherBounds = other._anyBounds else { return self }
162 |     return myBounds.concatenating(otherBounds).flatMap(AnyRange<Bound>.init)
    |                                                        `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
163 |   }
164 | }
[10/36] Compiling Ranges AnyRange.swift
/host/spi-builder-workspace/Sources/Ranges/AnyBounds.swift:188:49: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
186 |       }
187 |
188 |       return self._concatenating(other).flatMap(_UncountableBounds<Bound>.init)
    |                                                 `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
189 |     }
190 |   }
/host/spi-builder-workspace/Sources/Ranges/AnyBounds.swift:237:49: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
235 |     override func concatenating(_ other: _AnyBounds) -> _AnyBounds? {
236 |       guard case let other as _SomeBounds<Bound> = other else { fatalError("Unexpected type.") }
237 |       return self._concatenating(other).flatMap(_CountableBounds<Bound>.init)
    |                                                 `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
238 |     }
239 |   }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:25:51: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 23 |   /// Pass `nil` if you want to create a instance that represents an empty range.
 24 |   public init(uncheckedBounds: Bounds<Bound>?) {
 25 |     self.init(_anyBounds: uncheckedBounds.flatMap(_AnyBounds.init(countableBounds:)))
    |                                                   `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 26 |   }
 27 | }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:33:51: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 31 |   /// Pass `nil` if you want to create a instance that represents an empty range.
 32 |   public init(uncheckedBounds: Bounds<Bound>?) {
 33 |     self.init(_anyBounds: uncheckedBounds.flatMap(_AnyBounds.init(uncountableBounds:)))
    |                                                   `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 34 |   }
 35 | }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:162:56: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
160 |     guard let myBounds = self._anyBounds else { return other }
161 |     guard let otherBounds = other._anyBounds else { return self }
162 |     return myBounds.concatenating(otherBounds).flatMap(AnyRange<Bound>.init)
    |                                                        `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
163 |   }
164 | }
[11/36] Compiling Ranges Array+TwoEachElements.swift
/host/spi-builder-workspace/Sources/Ranges/AnyBounds.swift:188:49: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
186 |       }
187 |
188 |       return self._concatenating(other).flatMap(_UncountableBounds<Bound>.init)
    |                                                 `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
189 |     }
190 |   }
/host/spi-builder-workspace/Sources/Ranges/AnyBounds.swift:237:49: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
235 |     override func concatenating(_ other: _AnyBounds) -> _AnyBounds? {
236 |       guard case let other as _SomeBounds<Bound> = other else { fatalError("Unexpected type.") }
237 |       return self._concatenating(other).flatMap(_CountableBounds<Bound>.init)
    |                                                 `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
238 |     }
239 |   }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:25:51: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 23 |   /// Pass `nil` if you want to create a instance that represents an empty range.
 24 |   public init(uncheckedBounds: Bounds<Bound>?) {
 25 |     self.init(_anyBounds: uncheckedBounds.flatMap(_AnyBounds.init(countableBounds:)))
    |                                                   `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 26 |   }
 27 | }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:33:51: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 31 |   /// Pass `nil` if you want to create a instance that represents an empty range.
 32 |   public init(uncheckedBounds: Bounds<Bound>?) {
 33 |     self.init(_anyBounds: uncheckedBounds.flatMap(_AnyBounds.init(uncountableBounds:)))
    |                                                   `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
 34 |   }
 35 | }
/host/spi-builder-workspace/Sources/Ranges/AnyRange.swift:162:56: warning: capture of non-sendable type 'Bound.Type' in an isolated closure
160 |     guard let myBounds = self._anyBounds else { return other }
161 |     guard let otherBounds = other._anyBounds else { return self }
162 |     return myBounds.concatenating(otherBounds).flatMap(AnyRange<Bound>.init)
    |                                                        `- warning: capture of non-sendable type 'Bound.Type' in an isolated closure
163 |   }
164 | }
[12/36] Compiling Ranges Range+GeneralizedRange.swift
[13/36] Compiling Ranges RangeDictionary.swift
[14/36] Compiling Ranges TangibleUnboundedRange.swift
[15/36] Compiling Ranges PartialRangeGreaterThan.swift
[16/36] Compiling Ranges PartialRangeThrough+GeneralizedRange.swift
[17/36] Compiling Ranges PartialRangeUpTo+GeneralizedRange.swift
[18/36] Compiling Ranges Memoizables.swift
[19/36] Compiling Ranges MultipleRanges.swift
[20/36] Compiling Ranges OpenRange.swift
[21/36] Compiling Ranges PartialRangeFrom+GeneralizedRange.swift
[22/36] Compiling Ranges Boundary+Comparison.swift
[23/36] Compiling Ranges Boundary+Concatenation.swift
[24/36] Compiling Ranges Boundary.swift
[25/36] Compiling Ranges ClosedRange+GeneralizedRange.swift
[26/36] Compiling Ranges GeneralizedRange+Comparison.swift
[27/36] Compiling Ranges GeneralizedRange+Concatenation.swift
[28/36] Compiling Ranges GeneralizedRange+Intersection.swift
[29/36] Compiling Ranges GeneralizedRange+Overlaps.swift
[30/36] Compiling Ranges CustomStringConvertibleRange.swift
[31/36] Compiling Ranges EmptyRange.swift
[32/36] Compiling Ranges ExcludedLowerBound.swift
[33/36] Compiling Ranges GeneralizedRange+Comparison+ParticularCases.swift
[34/37] Wrapping AST for Ranges for debugging
[35/37] Write Objects.LinkFileList
[36/37] Linking libSwiftRanges.so
Build complete! (17.98s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Ranges",
  "name" : "Ranges",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftRanges",
      "targets" : [
        "Ranges"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "4.2",
    "5",
    "6"
  ],
  "targets" : [
    {
      "c99name" : "RangesTests",
      "module_type" : "SwiftTarget",
      "name" : "RangesTests",
      "path" : "Tests/RangesTests",
      "sources" : [
        "AnyRangeTests.swift",
        "BoundaryTests.swift",
        "ExcludedLowerBoundTests.swift",
        "GeneralizedRangeTests.swift",
        "LeftOpenRangeTests.swift",
        "MemoizablesTests.swift",
        "MultipleRangesTests.swift",
        "OpenRangeTests.swift",
        "PartialRangeGreaterThanTests.swift",
        "RangeDictionaryTests.swift"
      ],
      "target_dependencies" : [
        "Ranges"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Ranges",
      "module_type" : "SwiftTarget",
      "name" : "Ranges",
      "path" : "Sources/Ranges",
      "product_memberships" : [
        "SwiftRanges"
      ],
      "sources" : [
        "AnyBounds.swift",
        "AnyRange+Operators.swift",
        "AnyRange.swift",
        "Array+TwoEachElements.swift",
        "Boundary+Comparison.swift",
        "Boundary+Concatenation.swift",
        "Boundary.swift",
        "ClosedRange+GeneralizedRange.swift",
        "CustomStringConvertibleRange.swift",
        "EmptyRange.swift",
        "ExcludedLowerBound.swift",
        "GeneralizedRange+Comparison+ParticularCases.swift",
        "GeneralizedRange+Comparison.swift",
        "GeneralizedRange+Concatenation.swift",
        "GeneralizedRange+Intersection.swift",
        "GeneralizedRange+Overlaps.swift",
        "GeneralizedRange+Subtraction.swift",
        "GeneralizedRange.swift",
        "HashableRange.swift",
        "LeftOpenRange.swift",
        "Memoizables.swift",
        "MultipleRanges.swift",
        "OpenRange.swift",
        "PartialRangeFrom+GeneralizedRange.swift",
        "PartialRangeGreaterThan.swift",
        "PartialRangeThrough+GeneralizedRange.swift",
        "PartialRangeUpTo+GeneralizedRange.swift",
        "Range+GeneralizedRange.swift",
        "RangeDictionary.swift",
        "TangibleUnboundedRange.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.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.