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 AnyLint, reference main (049671), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 03:09:11 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.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/FlineDev/AnyLint.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/FlineDev/AnyLint
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 0496714 Add build-script.sh file to run linters locally + fix SwiftLint warns
Cloned https://github.com/FlineDev/AnyLint.git
Revision (git rev-parse @):
04967143a1f3f3e71fa8b017a41a5c0851093946
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/FlineDev/AnyLint.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/FlineDev/AnyLint.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/10] Write sources
[4/10] Write anylint-entitlement.plist
[6/10] Write swift-version-1EA4D86E10B52AF.txt
[8/42] Compiling Rainbow Style.swift
[9/43] Compiling Rainbow XcodeColorsSupport.swift
[10/43] Emitting module Rainbow
[11/43] Compiling Rainbow OutputTarget.swift
[12/43] Compiling Rainbow ModesExtractor.swift
[13/43] Compiling Rainbow StringGenerator.swift
[14/43] Compiling Rainbow ControlCode.swift
[15/43] Compiling Rainbow Color.swift
[16/43] Compiling Rainbow String+Rainbow.swift
[17/43] Compiling SwiftCLI ArgumentList.swift
[18/43] Compiling SwiftCLI ArgumentListManipulator.swift
[19/43] Compiling Rainbow Rainbow.swift
[20/43] Compiling SwiftCLI Term.swift
[21/43] Compiling SwiftCLI Validation.swift
[22/45] Compiling SwiftCLI Option.swift
[23/45] Compiling SwiftCLI OptionGroup.swift
[24/45] Compiling SwiftCLI Error.swift
[25/45] Compiling SwiftCLI HelpCommand.swift
[26/45] Compiling SwiftCLI Parser.swift
[27/45] Compiling SwiftCLI Path.swift
[28/45] Compiling SwiftCLI Command.swift
[29/45] Compiling SwiftCLI Compatibility.swift
[30/45] Compiling SwiftCLI CompletionGenerator.swift
[31/45] Compiling SwiftCLI OptionRegistry.swift
[32/45] Compiling SwiftCLI Parameter.swift
[35/45] Compiling SwiftCLI CLI.swift
[36/45] Compiling SwiftCLI HelpMessageGenerator.swift
[37/45] Compiling SwiftCLI Input.swift
[38/45] Compiling SwiftCLI Stream.swift
[39/45] Compiling SwiftCLI Task.swift
[40/45] Emitting module SwiftCLI
[41/54] Compiling SwiftCLI ValueBox.swift
[42/54] Compiling SwiftCLI VersionCommand.swift
[43/54] Compiling Utility CollectionExt.swift
[44/54] Compiling Utility Constants.swift
[45/54] Emitting module Utility
[46/54] Compiling Utility StringExt.swift
[47/54] Compiling Utility FileManagerExt.swift
[48/54] Compiling Utility TestHelper.swift
[49/54] Compiling Utility RegexExt.swift
[50/54] Compiling Utility Regex.swift
[51/54] Compiling Utility Logger.swift
[52/80] Compiling AnyLintCLI TaskHandler.swift
[53/81] Compiling AnyLint Violation.swift
[54/82] Compiling AnyLintCLI ValidateOrFail.swift
[55/82] Compiling AnyLintCLI VersionTask.swift
[56/82] Compiling AnyLintCLI ConfigurationTemplate.swift
[57/82] Compiling AnyLintCLI BlankTemplate.swift
[58/82] Compiling AnyLintCLI InitTask.swift
[59/82] Compiling AnyLintCLI CLIConstants.swift
[60/82] Compiling AnyLintCLI SingleCommand.swift
[61/82] Compiling AnyLintCLI LintTask.swift
[62/82] Emitting module AnyLintCLI
[63/82] Compiling AnyLintCLI main.swift
[63/82] Write Objects.LinkFileList
[65/82] Emitting module AnyLint
/Users/admin/builder/spi-builder-workspace/Sources/AnyLint/AutoCorrection.swift:68:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
66 | // TODO: make the autocorrection diff sorted by line number
67 | @available(OSX 10.15, *)
68 | extension CollectionDifference.Change: Comparable where ChangeElement == String {
   | |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
69 |    public static func < (lhs: Self, rhs: Self) -> Bool {
70 |       switch (lhs, rhs) {
[66/82] Compiling AnyLint Checker.swift
[67/82] Compiling AnyLint FileContentsChecker.swift
[68/82] Compiling AnyLint AutoCorrection.swift
/Users/admin/builder/spi-builder-workspace/Sources/AnyLint/AutoCorrection.swift:68:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
66 | // TODO: make the autocorrection diff sorted by line number
67 | @available(OSX 10.15, *)
68 | extension CollectionDifference.Change: Comparable where ChangeElement == String {
   | |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
69 |    public static func < (lhs: Self, rhs: Self) -> Bool {
70 |       switch (lhs, rhs) {
[69/82] Compiling AnyLint CheckInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/AnyLint/AutoCorrection.swift:68:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
66 | // TODO: make the autocorrection diff sorted by line number
67 | @available(OSX 10.15, *)
68 | extension CollectionDifference.Change: Comparable where ChangeElement == String {
   | |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
69 |    public static func < (lhs: Self, rhs: Self) -> Bool {
70 |       switch (lhs, rhs) {
[70/82] Compiling AnyLint ViolationLocationConfig.swift
[71/82] Compiling AnyLint Severity.swift
[72/82] Compiling AnyLint URLExt.swift
[73/82] Compiling AnyLint FilesSearch.swift
[74/82] Compiling AnyLint FileManagerExt.swift
[75/82] Compiling AnyLint StringExt.swift
[76/82] Compiling AnyLint FilePathsChecker.swift
[77/82] Compiling AnyLint ArrayExt.swift
[78/82] Compiling AnyLint Lint.swift
[79/82] Compiling AnyLint Options.swift
[80/82] Compiling AnyLint Statistics.swift
[80/82] Linking anylint
[81/82] Applying anylint
Build complete! (12.56s)
Fetching https://github.com/onevcat/Rainbow.git
Fetching https://github.com/jakeheis/SwiftCLI.git
[1/1196] Fetching rainbow
[157/6270] Fetching rainbow, swiftcli
Fetched https://github.com/jakeheis/SwiftCLI.git from cache (1.17s)
Fetched https://github.com/onevcat/Rainbow.git from cache (1.17s)
Computing version for https://github.com/onevcat/Rainbow.git
Computed https://github.com/onevcat/Rainbow.git at 3.2.0 (3.14s)
Computing version for https://github.com/jakeheis/SwiftCLI.git
Computed https://github.com/jakeheis/SwiftCLI.git at 6.0.3 (0.48s)
Creating working copy for https://github.com/onevcat/Rainbow.git
Working copy of https://github.com/onevcat/Rainbow.git resolved at 3.2.0
Creating working copy for https://github.com/jakeheis/SwiftCLI.git
Working copy of https://github.com/jakeheis/SwiftCLI.git resolved at 6.0.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "rainbow",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.1.5",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/onevcat/Rainbow.git"
    },
    {
      "identity" : "swiftcli",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.0.1",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jakeheis/SwiftCLI.git"
    }
  ],
  "manifest_display_name" : "AnyLint",
  "name" : "AnyLint",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    }
  ],
  "products" : [
    {
      "name" : "AnyLint",
      "targets" : [
        "AnyLint"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "anylint",
      "targets" : [
        "AnyLintCLI"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UtilityTests",
      "module_type" : "SwiftTarget",
      "name" : "UtilityTests",
      "path" : "Tests/UtilityTests",
      "sources" : [
        "Extensions/RegexExtTests.swift",
        "LoggerTests.swift"
      ],
      "target_dependencies" : [
        "Utility"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Utility",
      "module_type" : "SwiftTarget",
      "name" : "Utility",
      "path" : "Sources/Utility",
      "product_dependencies" : [
        "Rainbow"
      ],
      "product_memberships" : [
        "AnyLint",
        "anylint"
      ],
      "sources" : [
        "Constants.swift",
        "Extensions/CollectionExt.swift",
        "Extensions/FileManagerExt.swift",
        "Extensions/RegexExt.swift",
        "Extensions/StringExt.swift",
        "Logger.swift",
        "Regex.swift",
        "TestHelper.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AnyLintTests",
      "module_type" : "SwiftTarget",
      "name" : "AnyLintTests",
      "path" : "Tests/AnyLintTests",
      "sources" : [
        "AutoCorrectionTests.swift",
        "CheckInfoTests.swift",
        "Checkers/FileContentsCheckerTests.swift",
        "Checkers/FilePathsCheckerTests.swift",
        "Extensions/ArrayExtTests.swift",
        "Extensions/XCTestCaseExt.swift",
        "FilesSearchTests.swift",
        "LintTests.swift",
        "RegexExtTests.swift",
        "StatisticsTests.swift",
        "ViolationTests.swift"
      ],
      "target_dependencies" : [
        "AnyLint"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AnyLintCLI",
      "module_type" : "SwiftTarget",
      "name" : "AnyLintCLI",
      "path" : "Sources/AnyLintCLI",
      "product_dependencies" : [
        "Rainbow",
        "SwiftCLI"
      ],
      "product_memberships" : [
        "anylint"
      ],
      "sources" : [
        "Commands/SingleCommand.swift",
        "ConfigurationTemplates/BlankTemplate.swift",
        "ConfigurationTemplates/ConfigurationTemplate.swift",
        "Globals/CLIConstants.swift",
        "Globals/ValidateOrFail.swift",
        "Tasks/InitTask.swift",
        "Tasks/LintTask.swift",
        "Tasks/TaskHandler.swift",
        "Tasks/VersionTask.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "Utility"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "AnyLint",
      "module_type" : "SwiftTarget",
      "name" : "AnyLint",
      "path" : "Sources/AnyLint",
      "product_memberships" : [
        "AnyLint"
      ],
      "sources" : [
        "AutoCorrection.swift",
        "CheckInfo.swift",
        "Checkers/Checker.swift",
        "Checkers/FileContentsChecker.swift",
        "Checkers/FilePathsChecker.swift",
        "Extensions/ArrayExt.swift",
        "Extensions/FileManagerExt.swift",
        "Extensions/StringExt.swift",
        "Extensions/URLExt.swift",
        "FilesSearch.swift",
        "Lint.swift",
        "Options.swift",
        "Severity.swift",
        "Statistics.swift",
        "Violation.swift",
        "ViolationLocationConfig.swift"
      ],
      "target_dependencies" : [
        "Utility"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.