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 CodeEditorView, reference main (8e77c5), with Swift 6.2 (beta) for macOS (SPM) on 1 Sep 2025 18:48:19 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mchakravarty/CodeEditorView.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/mchakravarty/CodeEditorView
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 8e77c5b Merge pull request #138 from kwokzl/main
Cloned https://github.com/mchakravarty/CodeEditorView.git
Revision (git rev-parse @):
8e77c5bbfa0d58b51faca0ab82097eceb6d03f2f
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/mchakravarty/CodeEditorView.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/mchakravarty/CodeEditorView.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/14] Compiling Rearrange String+NSRange.swift
[6/14] Compiling Rearrange RangeMutation.swift
[7/15] Compiling Rearrange UITextRange+Convenience.swift
[8/15] Compiling Rearrange NSRange+Shift.swift
[9/15] Compiling Rearrange NSTextLocation+Comparable.swift
[10/15] Compiling Rearrange NSRange+Convenience.swift
[11/15] Compiling Rearrange NSRange+ApplyMutation.swift
[12/15] Compiling Rearrange IndexSet+NSRange.swift
[13/15] Compiling Rearrange IndexSet+ApplyMutation.swift
[14/15] Emitting module Rearrange
[15/15] Compiling Rearrange NSTextRange+NSRange.swift
[16/27] Compiling LanguageSupport SQLiteConfiguration.swift
[17/27] Compiling LanguageSupport Message.swift
[18/27] Compiling LanguageSupport SwiftConfiguration.swift
[19/28] Compiling LanguageSupport Tokeniser.swift
[20/28] Compiling LanguageSupport PythonConfiguration.swift
[21/28] Compiling LanguageSupport Location.swift
[22/28] Emitting module LanguageSupport
[23/28] Compiling LanguageSupport CypherConfiguration.swift
[24/28] Compiling LanguageSupport HaskellConfiguration.swift
[25/28] Compiling LanguageSupport LanguageConfiguration.swift
[26/28] Compiling LanguageSupport AgdaConfiguration.swift
[27/28] Compiling LanguageSupport CabalConfiguration.swift
[28/28] Compiling LanguageSupport LanguageService.swift
[29/47] Compiling CodeEditorView Theme.swift
[30/47] Compiling CodeEditorView UIHostingView.swift
[31/48] Compiling CodeEditorView TextLayoutManagerExtras.swift
[32/48] Compiling CodeEditorView TextView.swift
[33/48] Compiling CodeEditorView ScrollViewExtras.swift
[34/48] Compiling CodeEditorView TextContentStorageExtras.swift
[35/48] Compiling CodeEditorView Constants.swift
[36/48] Compiling CodeEditorView GutterView.swift
[37/48] Compiling CodeEditorView MinimapView.swift
[38/48] Compiling CodeEditorView OSDefinitions.swift
[39/48] Compiling CodeEditorView ViewModifiers.swift
[40/48] Compiling CodeEditorView CodeEditor.swift
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditorView/CodeEditor.swift:743:33: warning: call to main actor-isolated instance method 'scrollPositionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode [#ActorIsolatedCall]
741 |           // FIXME: we would like to get less fine-grained updates here, but `NSScrollView.didEndLiveScrollNotification` doesn't happen when moving the cursor around
742 |           if let scrollView {
743 |             context.coordinator.scrollPositionDidChange(scrollView)
    |                                 `- warning: call to main actor-isolated instance method 'scrollPositionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode [#ActorIsolatedCall]
744 |           }
745 |         }
    :
882 |
883 |     @MainActor
884 |     func scrollPositionDidChange(_ scrollView: NSScrollView) {
    |          `- note: calls to instance method 'scrollPositionDidChange' from outside of its actor context are implicitly asynchronous
885 |       guard !updatingView else { return }
886 |
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[41/48] Compiling CodeEditorView CodeStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditorView/CodeEditor.swift:743:33: warning: call to main actor-isolated instance method 'scrollPositionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode [#ActorIsolatedCall]
741 |           // FIXME: we would like to get less fine-grained updates here, but `NSScrollView.didEndLiveScrollNotification` doesn't happen when moving the cursor around
742 |           if let scrollView {
743 |             context.coordinator.scrollPositionDidChange(scrollView)
    |                                 `- warning: call to main actor-isolated instance method 'scrollPositionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode [#ActorIsolatedCall]
744 |           }
745 |         }
    :
882 |
883 |     @MainActor
884 |     func scrollPositionDidChange(_ scrollView: NSScrollView) {
    |          `- note: calls to instance method 'scrollPositionDidChange' from outside of its actor context are implicitly asynchronous
885 |       guard !updatingView else { return }
886 |
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[42/48] Compiling CodeEditorView LineMap.swift
[43/48] Compiling CodeEditorView MessageViews.swift
[44/48] Compiling CodeEditorView CodeActions.swift
[45/48] Compiling CodeEditorView CodeEditing.swift
[46/48] Emitting module CodeEditorView
[47/48] Compiling CodeEditorView CodeStorageDelegate.swift
[48/48] Compiling CodeEditorView CodeView.swift
Build complete! (20.03s)
Fetching https://github.com/ChimeHQ/Rearrange.git
[1/569] Fetching rearrange
Fetched https://github.com/ChimeHQ/Rearrange.git from cache (0.76s)
Computing version for https://github.com/ChimeHQ/Rearrange.git
Computed https://github.com/ChimeHQ/Rearrange.git at 1.8.1 (3.47s)
Creating working copy for https://github.com/ChimeHQ/Rearrange.git
Working copy of https://github.com/ChimeHQ/Rearrange.git resolved at 1.8.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "rearrange",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.6.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ChimeHQ/Rearrange.git"
    }
  ],
  "manifest_display_name" : "CodeEditorView",
  "name" : "CodeEditorView",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "LanguageSupport",
      "targets" : [
        "LanguageSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CodeEditorView",
      "targets" : [
        "CodeEditorView"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "LanguageSupport",
      "module_type" : "SwiftTarget",
      "name" : "LanguageSupport",
      "path" : "Sources/LanguageSupport",
      "product_dependencies" : [
        "Rearrange"
      ],
      "product_memberships" : [
        "LanguageSupport",
        "CodeEditorView"
      ],
      "sources" : [
        "AgdaConfiguration.swift",
        "CabalConfiguration.swift",
        "CypherConfiguration.swift",
        "HaskellConfiguration.swift",
        "LanguageConfiguration.swift",
        "LanguageService.swift",
        "Location.swift",
        "Message.swift",
        "PythonConfiguration.swift",
        "SQLiteConfiguration.swift",
        "SwiftConfiguration.swift",
        "Tokeniser.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CodeEditorView",
      "module_type" : "SwiftTarget",
      "name" : "CodeEditorView",
      "path" : "Sources/CodeEditorView",
      "product_dependencies" : [
        "Rearrange"
      ],
      "product_memberships" : [
        "CodeEditorView"
      ],
      "sources" : [
        "CodeActions.swift",
        "CodeEditing.swift",
        "CodeEditor.swift",
        "CodeStorage.swift",
        "CodeStorageDelegate.swift",
        "CodeView.swift",
        "Constants.swift",
        "GutterView.swift",
        "LineMap.swift",
        "MessageViews.swift",
        "MinimapView.swift",
        "OSDefinitions.swift",
        "ScrollViewExtras.swift",
        "TextContentStorageExtras.swift",
        "TextLayoutManagerExtras.swift",
        "TextView.swift",
        "Theme.swift",
        "UIHostingView.swift",
        "ViewModifiers.swift"
      ],
      "target_dependencies" : [
        "LanguageSupport"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CodeEditorTests",
      "module_type" : "SwiftTarget",
      "name" : "CodeEditorTests",
      "path" : "Tests/CodeEditorTests",
      "sources" : [
        "CodeEditorTests.swift",
        "CypherConfigurationTests.swift",
        "LineMapTests.swift",
        "SQLiteConfigurationTests.swift",
        "TokenTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "CodeEditorView"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.9"
}
Done.