The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Rearrange, reference main (eae387), with Swift 6.1 for Linux on 29 Apr 2025 19:33:01 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.61.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ChimeHQ/Rearrange.git
Reference: main
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/ChimeHQ/Rearrange
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at eae3879 Default implementation for textRange with NSRange
Cloned https://github.com/ChimeHQ/Rearrange.git
Revision (git rev-parse @):
eae38792ce4cc4c8ba74632d63109b35163f5877
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ChimeHQ/Rearrange.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/ChimeHQ/Rearrange.git
https://github.com/ChimeHQ/Rearrange.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Rearrange",
  "name" : "Rearrange",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "5.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Rearrange",
      "targets" : [
        "Rearrange"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RearrangeTests",
      "module_type" : "SwiftTarget",
      "name" : "RearrangeTests",
      "path" : "Tests/RearrangeTests",
      "sources" : [
        "IndexSetExtenstionTests.swift",
        "NSRangeApplyMutationTests.swift",
        "NSRangeShiftTests.swift",
        "NSRangeTests.swift",
        "NSTextRangeTests.swift",
        "RangeMutationTests.swift",
        "UITextRangeTests.swift"
      ],
      "target_dependencies" : [
        "Rearrange"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Rearrange",
      "module_type" : "SwiftTarget",
      "name" : "Rearrange",
      "path" : "Sources/Rearrange",
      "product_memberships" : [
        "Rearrange"
      ],
      "sources" : [
        "Bounded.swift",
        "IndexSet+ApplyMutation.swift",
        "IndexSet+NSRange.swift",
        "NSRange+ApplyMutation.swift",
        "NSRange+Convenience.swift",
        "NSRange+Shift.swift",
        "NSTextRange+Bounded.swift",
        "NSTextRange+NSRange.swift",
        "RangeMutation.swift",
        "String+NSRange.swift",
        "TextRangeCalculating.swift",
        "UITextRange+Convenience.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/14] Compiling Rearrange NSRange+Convenience.swift
/host/spi-builder-workspace/Sources/Rearrange/NSRange+Convenience.swift:22:1: warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | }
21 |
22 | extension NSRange: Sequence {
   | |- warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
23 |     public typealias Element = Range<Int>.Element
24 |     public typealias Iterator = Range<Int>.Iterator
[4/14] Compiling Rearrange NSRange+Shift.swift
/host/spi-builder-workspace/Sources/Rearrange/NSRange+Convenience.swift:22:1: warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | }
21 |
22 | extension NSRange: Sequence {
   | |- warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
23 |     public typealias Element = Range<Int>.Element
24 |     public typealias Iterator = Range<Int>.Iterator
[5/14] Compiling Rearrange Bounded.swift
[6/14] Compiling Rearrange IndexSet+ApplyMutation.swift
[7/14] Compiling Rearrange IndexSet+NSRange.swift
[8/14] Compiling Rearrange NSRange+ApplyMutation.swift
[9/14] Compiling Rearrange TextRangeCalculating.swift
/host/spi-builder-workspace/Sources/Rearrange/TextRangeCalculating.swift:101:13: warning: stored property 'range' of 'Sendable'-conforming generic struct 'CalculatedRange' has non-sendable type 'Calculator.TextRange'; this is an error in the Swift 6 language mode
 99 |
100 | 	public let calculator: Calculator
101 | 	public let range: Calculator.TextRange
    |             `- warning: stored property 'range' of 'Sendable'-conforming generic struct 'CalculatedRange' has non-sendable type 'Calculator.TextRange'; this is an error in the Swift 6 language mode
102 |
103 | 	public init(_ range: Calculator.TextRange, calculator: Calculator) {
[10/15] Compiling Rearrange NSTextRange+Bounded.swift
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:8:11: error: cannot find type 'NSTextRange' in scope
 6 |
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
   |           `- error: cannot find type 'NSTextRange' in scope
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:9:25: error: cannot find type 'NSTextLocation' in scope
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
 9 | 	public var lowerBound: NSTextLocation { location }
   |                         `- error: cannot find type 'NSTextLocation' in scope
10 | 	public var upperBound: NSTextLocation { endLocation }
11 | }
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:10:25: error: cannot find type 'NSTextLocation' in scope
 8 | extension NSTextRange : Bounded {
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
   |                         `- error: cannot find type 'NSTextLocation' in scope
11 | }
12 |
[11/15] Compiling Rearrange NSTextRange+NSRange.swift
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:8:11: error: cannot find type 'NSTextRange' in scope
 6 |
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
   |           `- error: cannot find type 'NSTextRange' in scope
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:9:25: error: cannot find type 'NSTextLocation' in scope
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
 9 | 	public var lowerBound: NSTextLocation { location }
   |                         `- error: cannot find type 'NSTextLocation' in scope
10 | 	public var upperBound: NSTextLocation { endLocation }
11 | }
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:10:25: error: cannot find type 'NSTextLocation' in scope
 8 | extension NSTextRange : Bounded {
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
   |                         `- error: cannot find type 'NSTextLocation' in scope
11 | }
12 |
[12/15] Compiling Rearrange RangeMutation.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[13/15] Emitting module Rearrange
/host/spi-builder-workspace/Sources/Rearrange/NSRange+Convenience.swift:22:1: warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | }
21 |
22 | extension NSRange: Sequence {
   | |- warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
23 |     public typealias Element = Range<Int>.Element
24 |     public typealias Iterator = Range<Int>.Iterator
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:8:11: error: cannot find type 'NSTextRange' in scope
 6 |
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
   |           `- error: cannot find type 'NSTextRange' in scope
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
/host/spi-builder-workspace/Sources/Rearrange/TextRangeCalculating.swift:101:13: warning: stored property 'range' of 'Sendable'-conforming generic struct 'CalculatedRange' has non-sendable type 'Calculator.TextRange'; this is an error in the Swift 6 language mode
 99 |
100 | 	public let calculator: Calculator
101 | 	public let range: Calculator.TextRange
    |             `- warning: stored property 'range' of 'Sendable'-conforming generic struct 'CalculatedRange' has non-sendable type 'Calculator.TextRange'; this is an error in the Swift 6 language mode
102 |
103 | 	public init(_ range: Calculator.TextRange, calculator: Calculator) {
[14/15] Compiling Rearrange String+NSRange.swift
[15/15] Compiling Rearrange UITextRange+Convenience.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
warning: 'spi-builder-workspace': found 2 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Tests/RearrangeTests/Info.plist
    /host/spi-builder-workspace/Tests/RearrangeTests/RearrangeTests.xcconfig
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/13] Compiling Rearrange NSRange+Convenience.swift
/host/spi-builder-workspace/Sources/Rearrange/NSRange+Convenience.swift:22:1: warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | }
21 |
22 | extension NSRange: Sequence {
   | |- warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
23 |     public typealias Element = Range<Int>.Element
24 |     public typealias Iterator = Range<Int>.Iterator
[3/13] Compiling Rearrange NSRange+Shift.swift
/host/spi-builder-workspace/Sources/Rearrange/NSRange+Convenience.swift:22:1: warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | }
21 |
22 | extension NSRange: Sequence {
   | |- warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
23 |     public typealias Element = Range<Int>.Element
24 |     public typealias Iterator = Range<Int>.Iterator
[4/14] Compiling Rearrange NSTextRange+Bounded.swift
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:8:11: error: cannot find type 'NSTextRange' in scope
 6 |
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
   |           `- error: cannot find type 'NSTextRange' in scope
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:9:25: error: cannot find type 'NSTextLocation' in scope
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
 9 | 	public var lowerBound: NSTextLocation { location }
   |                         `- error: cannot find type 'NSTextLocation' in scope
10 | 	public var upperBound: NSTextLocation { endLocation }
11 | }
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:10:25: error: cannot find type 'NSTextLocation' in scope
 8 | extension NSTextRange : Bounded {
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
   |                         `- error: cannot find type 'NSTextLocation' in scope
11 | }
12 |
[5/14] Compiling Rearrange NSTextRange+NSRange.swift
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:8:11: error: cannot find type 'NSTextRange' in scope
 6 |
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
   |           `- error: cannot find type 'NSTextRange' in scope
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:9:25: error: cannot find type 'NSTextLocation' in scope
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
 9 | 	public var lowerBound: NSTextLocation { location }
   |                         `- error: cannot find type 'NSTextLocation' in scope
10 | 	public var upperBound: NSTextLocation { endLocation }
11 | }
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:10:25: error: cannot find type 'NSTextLocation' in scope
 8 | extension NSTextRange : Bounded {
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
   |                         `- error: cannot find type 'NSTextLocation' in scope
11 | }
12 |
[6/14] Compiling Rearrange RangeMutation.swift
[7/14] Compiling Rearrange UITextRange+Convenience.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[8/14] Emitting module Rearrange
/host/spi-builder-workspace/Sources/Rearrange/NSRange+Convenience.swift:22:1: warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | }
21 |
22 | extension NSRange: Sequence {
   | |- warning: extension declares a conformance of imported type '_NSRange' to imported protocol 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
23 |     public typealias Element = Range<Int>.Element
24 |     public typealias Iterator = Range<Int>.Iterator
/host/spi-builder-workspace/Sources/Rearrange/NSTextRange+Bounded.swift:8:11: error: cannot find type 'NSTextRange' in scope
 6 |
 7 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, macCatalyst 15.0, *)
 8 | extension NSTextRange : Bounded {
   |           `- error: cannot find type 'NSTextRange' in scope
 9 | 	public var lowerBound: NSTextLocation { location }
10 | 	public var upperBound: NSTextLocation { endLocation }
/host/spi-builder-workspace/Sources/Rearrange/TextRangeCalculating.swift:101:13: warning: stored property 'range' of 'Sendable'-conforming generic struct 'CalculatedRange' has non-sendable type 'Calculator.TextRange'; this is an error in the Swift 6 language mode
 99 |
100 | 	public let calculator: Calculator
101 | 	public let range: Calculator.TextRange
    |             `- warning: stored property 'range' of 'Sendable'-conforming generic struct 'CalculatedRange' has non-sendable type 'Calculator.TextRange'; this is an error in the Swift 6 language mode
102 |
103 | 	public init(_ range: Calculator.TextRange, calculator: Calculator) {
[9/14] Compiling Rearrange Bounded.swift
[10/14] Compiling Rearrange IndexSet+ApplyMutation.swift
[11/14] Compiling Rearrange IndexSet+NSRange.swift
[12/14] Compiling Rearrange NSRange+ApplyMutation.swift
[13/14] Compiling Rearrange String+NSRange.swift
[14/14] Compiling Rearrange TextRangeCalculating.swift
/host/spi-builder-workspace/Sources/Rearrange/TextRangeCalculating.swift:101:13: warning: stored property 'range' of 'Sendable'-conforming generic struct 'CalculatedRange' has non-sendable type 'Calculator.TextRange'; this is an error in the Swift 6 language mode
 99 |
100 | 	public let calculator: Calculator
101 | 	public let range: Calculator.TextRange
    |             `- warning: stored property 'range' of 'Sendable'-conforming generic struct 'CalculatedRange' has non-sendable type 'Calculator.TextRange'; this is an error in the Swift 6 language mode
102 |
103 | 	public init(_ range: Calculator.TextRange, calculator: Calculator) {
BUILD FAILURE 6.1 linux