The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftPropertyLaws, reference v2.0.0 (eeef84), with Swift 6.2 for macOS (SPM) on 5 May 2026 07:41:26 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Reference: v2.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Joseph-Cursio/SwiftPropertyLaws
 * tag               v2.0.0     -> FETCH_HEAD
HEAD is now at eeef84e docs(CLAUDE.md): rename SwiftProtocolLaws → SwiftPropertyLaws (mechanical pass 3/3)
Cloned https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Revision (git rev-parse @):
eeef84eb1285c0ff75516d1e781841ac86a22014
SUCCESS checkout https://github.com/Joseph-Cursio/SwiftPropertyLaws.git at v2.0.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:36:59: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 34 |         let tool = try context.tool(named: "PropertyLawDiscoveryTool")
 35 |         let process = Process()
 36 |         process.executableURL = URL(fileURLWithPath: tool.path.string)
    |                                                           |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                                                           `- note: use 'url' instead
 37 |         var toolArgs: [String] = [
 38 |             "--target", target,
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:36:64: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 34 |         let tool = try context.tool(named: "PropertyLawDiscoveryTool")
 35 |         let process = Process()
 36 |         process.executableURL = URL(fileURLWithPath: tool.path.string)
    |                                                                `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 37 |         var toolArgs: [String] = [
 38 |             "--target", target,
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:67:40: warning: 'directory' is deprecated: renamed to 'directoryURL' [#DeprecatedDeclaration]
 65 |     /// doesn't exist; commit 5 will create the dir if missing.
 66 |     private func defaultOutputPath(for target: Target, in context: PluginContext) -> String {
 67 |         let testsDir = context.package.directory
    |                                        |- warning: 'directory' is deprecated: renamed to 'directoryURL' [#DeprecatedDeclaration]
    |                                        `- note: use 'directoryURL' instead
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:68:14: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 66 |     private func defaultOutputPath(for target: Target, in context: PluginContext) -> String {
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
    |              `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
 70 |     }
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:69:25: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
    |                         `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 70 |     }
 71 |
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:69:73: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
    |                                                                         `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 70 |     }
 71 |
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:75:26: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 73 |         guard let sourceModuleTarget = target as? SourceModuleTarget else { return [] }
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
    |                          |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                          `- note: use 'url' instead
 76 |             .map { $0.path.string }
 77 |             .sorted()
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:75:31: warning: 'extension' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 73 |         guard let sourceModuleTarget = target as? SourceModuleTarget else { return [] }
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
    |                               `- warning: 'extension' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 76 |             .map { $0.path.string }
 77 |             .sorted()
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:76:23: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
 76 |             .map { $0.path.string }
    |                       |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                       `- note: use 'url' instead
 77 |             .sorted()
 78 |     }
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:76:28: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
 76 |             .map { $0.path.string }
    |                            `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 77 |             .sorted()
 78 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1/1] Compiling plugin PropertyLawDiscoveryPlugin
Building for debugging...
[1/35] Write sources
[20/35] Write PropertyLawDiscoveryTool-tool-entitlement.plist
[21/35] Write sources
[23/35] Write PropertyLawDiscoveryTool-entitlement.plist
[24/35] Compiling _SwiftSyntaxCShims dummy.c
[26/35] Write swift-version--3CB7CFEC50E0D141.txt
[28/117] Compiling SwiftSyntax510 Empty.swift
[29/117] Emitting module SwiftSyntax510
[30/117] Emitting module SwiftSyntax509
[31/117] Compiling SwiftSyntax509 Empty.swift
[32/117] Compiling SwiftSyntax510 Empty.swift
[33/117] Emitting module SwiftSyntax510
[34/117] Compiling SwiftSyntax509 Empty.swift
[35/117] Emitting module SwiftSyntax509
[36/117] Emitting module SwiftSyntax600
[37/117] Compiling SwiftSyntax600 Empty.swift
[39/117] Emitting module SwiftSyntax600
[40/117] Compiling PropertyLawCore MemberwiseEmitter.swift
[42/117] Compiling PropertyLawCore GeneratorExpressionEmitter.swift
[43/117] Compiling PropertyLawCore KnownProtocol.swift
[45/117] Compiling PropertyLawCore GeneratorExpressionEmitter.swift
[46/117] Emitting module PropertyLawCore
[47/117] Compiling PropertyLawCore DerivationStrategy.swift
[48/117] Emitting module PropertyLawCore
[49/117] Compiling PropertyLawCore DerivationStrategy.swift
[50/253] Compiling SwiftSyntax CustomTraits.swift
[51/253] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[52/253] Compiling SwiftSyntax SyntaxChildren.swift
[53/253] Compiling SwiftSyntax SyntaxCollection.swift
[54/253] Compiling SwiftSyntax SyntaxHashable.swift
[55/253] Compiling SwiftSyntax SyntaxIdentifier.swift
[56/253] Compiling SwiftSyntax SyntaxNodeFactory.swift
[57/253] Compiling SwiftSyntax SyntaxNodeStructure.swift
[65/267] Compiling SwiftSyntax Identifier.swift
[66/267] Compiling SwiftSyntax MemoryLayout.swift
[67/267] Compiling SwiftSyntax MissingNodeInitializers.swift
[68/267] Compiling SwiftSyntax RawSyntax.swift
[69/267] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[70/267] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[71/267] Compiling SwiftSyntax RawSyntaxTokenView.swift
[72/267] Compiling SwiftSyntax Utils.swift
[73/267] Compiling SwiftSyntax ChildNameForKeyPath.swift
[74/267] Compiling SwiftSyntax Keyword.swift
[75/267] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[76/267] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[77/267] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[78/267] Compiling SwiftSyntax SyntaxBaseNodes.swift
[79/267] Compiling PropertyLawMacroImpl MemberBlockInspector.swift
[80/267] Compiling PropertyLawMacroImpl Plugin.swift
[81/267] Compiling PropertyLawMacroImpl PropertyLawSuiteMacro.swift
[82/267] Compiling PropertyLawMacroImpl DiscoverableMacro.swift
[83/267] Emitting module PropertyLawMacroImpl
[84/267] Compiling PropertyLawMacroImpl Diagnostics.swift
[84/267] Write Objects.LinkFileList
[85/267] Linking PropertyLawMacroImpl-tool
[87/267] Emitting module SwiftSyntax
[89/267] Compiling SwiftSyntax AbsolutePosition.swift
[90/267] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[91/267] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[92/267] Compiling SwiftSyntax Assert.swift
[93/267] Compiling SwiftSyntax BumpPtrAllocator.swift
[94/267] Compiling SwiftSyntax CommonAncestor.swift
[95/267] Compiling SwiftSyntax Convenience.swift
[98/267] Compiling SwiftSyntax SourceEdit.swift
[99/267] Compiling SwiftSyntax SourceLength.swift
[100/270] Compiling SwiftSyntax Syntax.swift
[101/270] Compiling SwiftSyntax SyntaxArena.swift
[102/270] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[106/273] Compiling SwiftSyntax SyntaxProtocol.swift
[107/273] Compiling SwiftSyntax SyntaxText.swift
[108/273] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[109/273] Compiling SwiftSyntax TokenDiagnostic.swift
[110/273] Compiling SwiftSyntax TokenSequence.swift
[111/273] Compiling SwiftSyntax TokenSyntax.swift
[112/273] Compiling SwiftSyntax Trivia.swift
[126/273] Emitting module PropertyBased
[139/273] Compiling SwiftSyntax SyntaxTraits.swift
[140/273] Compiling SwiftSyntax SyntaxVisitor.swift
[141/273] Compiling SwiftSyntax TokenKind.swift
[142/273] Emitting module PropertyBased
[149/273] Compiling SwiftSyntax SourceLocation.swift
[150/273] Compiling SwiftSyntax SourcePresence.swift
[151/273] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[155/273] Compiling PropertyBased Shrink.swift
[156/273] Compiling PropertyBased Xoshiro.swift
[157/273] Compiling PropertyBased Zip.swift
[161/273] Compiling SwiftSyntax SyntaxCollections.swift
[162/273] Compiling SwiftSyntax SyntaxEnum.swift
[163/273] Compiling SwiftSyntax SyntaxKind.swift
[164/273] Compiling SwiftSyntax SyntaxRewriter.swift
[177/355] Compiling PropertyLawKit AggregateDriver.swift
[178/355] Compiling PropertyLawKit SwiftPropertyBasedBackend.swift
[179/355] Compiling PropertyLawKit CoverageAccumulator.swift
[180/355] Compiling PropertyLawKit LawSuppressionPolicy.swift
[181/355] Compiling PropertyLawKit NearMissCollector.swift
[182/355] Compiling PropertyLawKit PerLawDriver.swift
[183/355] Compiling PropertyLawKit ReplayEnvironmentValidator.swift
[191/393] Compiling PropertyLawKit StrictnessTier.swift
[192/393] Compiling PropertyLawKit TrialBudget.swift
[193/393] Compiling PropertyLawKit PropertyLawKit.swift
[194/393] Compiling PropertyLawKit AdditiveArithmeticLaws.swift
[195/393] Compiling PropertyLawKit PropertyLawViolation.swift
[196/393] Compiling PropertyLawKit Seed.swift
[197/393] Compiling PropertyLawKit SequenceLawOptions.swift
[198/393] Compiling PropertyLawKit EquatableLaws.swift
[199/393] Compiling PropertyLawKit FixedWidthIntegerLaws.swift
[200/393] Compiling PropertyLawKit FloatingPointLaws.swift
[201/393] Compiling PropertyLawKit Group.swift
[202/393] Compiling PropertyLawKit GroupLaws.swift
[203/393] Compiling PropertyLawKit HashableLaws.swift
[204/393] Compiling PropertyLawKit IdentifiableLaws.swift
[205/393] Compiling PropertyLawKit CaseIterableLaws.swift
[206/393] Compiling PropertyLawKit CodableLaws.swift
[207/393] Compiling PropertyLawKit CollectionLaws.swift
[208/393] Compiling PropertyLawKit CommutativeMonoid.swift
[209/393] Compiling PropertyLawKit CommutativeMonoidLaws.swift
[210/393] Compiling PropertyLawKit ComparableLaws.swift
[211/393] Compiling PropertyLawKit CoverageClassifier.swift
[212/393] Compiling PropertyLawKit NumericGenerators.swift
[213/393] Compiling PropertyLawKit NumericLaws.swift
[214/393] Compiling PropertyLawKit PropertyBackend.swift
[215/393] Compiling PropertyLawKit RandomAccessCollectionLaws.swift
[216/393] Compiling PropertyLawKit RangeReplaceableCollectionLaws.swift
[217/393] Compiling PropertyLawKit RawRepresentableLaws.swift
[218/399] Emitting module PropertyLawKit
[219/405] Compiling PropertyLawKit ReplayEnvironmentMismatch.swift
[220/405] Compiling PropertyLawKit Semigroup.swift
[221/405] Compiling PropertyLawKit SemigroupLaws.swift
[222/405] Compiling PropertyLawKit Semilattice.swift
[223/405] Compiling PropertyLawKit SemilatticeLaws.swift
[224/405] Compiling PropertyLawKit SequenceLaws.swift
[232/405] Compiling PropertyLawKit ViolationFormatter.swift
[233/405] Compiling PropertyLawKit CheckResult.swift
[234/405] Compiling PropertyLawKit CodableCodec.swift
[235/405] Compiling PropertyLawKit CodableLawConfig.swift
[236/405] Compiling PropertyLawKit CodableRoundTripMode.swift
[237/405] Compiling PropertyLawKit EnforcementMode.swift
[238/405] Compiling PropertyLawKit Environment.swift
[273/405] Compiling PropertyLawKit IteratorProtocolLaws.swift
[274/405] Compiling PropertyLawKit LosslessStringConvertibleLaws.swift
[275/405] Compiling PropertyLawKit Monoid.swift
[276/405] Compiling PropertyLawKit MonoidLaws.swift
[277/405] Compiling PropertyLawKit MutableCollectionLaws.swift
[296/405] Compiling PropertyLawKit SetAlgebraLaws.swift
[297/405] Compiling PropertyLawKit SignedIntegerLaws.swift
[298/405] Compiling PropertyLawKit SignedNumericLaws.swift
[299/405] Compiling PropertyLawKit StrideableLaws.swift
[300/405] Compiling PropertyLawKit StringProtocolLaws.swift
[301/405] Compiling PropertyLawKit UnsignedIntegerLaws.swift
[336/405] Compiling PropertyLawKit LawCheckOptions.swift
[337/405] Compiling PropertyLawKit LawIdentifier.swift
[338/405] Compiling PropertyLawKit LawSelection.swift
[339/405] Compiling PropertyLawKit LawSuppression.swift
[340/405] Compiling PropertyLawKit PropertyLawViolation.swift
[341/405] Compiling PropertyLawKit Seed.swift
[342/405] Compiling PropertyLawKit SequenceLawOptions.swift
[371/405] Emitting module PropertyLawKit
[387/407] Compiling SwiftSyntax SyntaxNodesEF.swift
[388/407] Compiling SwiftSyntax SyntaxNodesGHI.swift
[389/407] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[390/407] Compiling SwiftSyntax SyntaxNodesOP.swift
[391/407] Compiling SwiftSyntax SyntaxNodesQRS.swift
[392/407] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[400/493] Compiling PropertyLawMacro PropertyLawMacro.swift
[401/493] Emitting module PropertyLawMacro
[402/493] Compiling PropertyLawMacro PropertyLawMacro.swift
[403/493] Emitting module PropertyLawMacro
[404/493] Compiling SwiftParser TokenConsumer.swift
[405/493] Compiling SwiftParser TokenPrecedence.swift
[406/493] Compiling SwiftParser TokenSpec.swift
[407/493] Compiling SwiftParser TokenSpecSet.swift
[408/493] Compiling SwiftParser Nominals.swift
[409/493] Compiling SwiftParser Lookahead.swift
[410/493] Compiling SwiftParser LoopProgressCondition.swift
[411/493] Compiling SwiftParser Modifiers.swift
[412/493] Compiling SwiftParser Names.swift
[413/497] Compiling SwiftParser Recovery.swift
[414/497] Compiling SwiftParser Specifiers.swift
[415/497] Compiling SwiftParser Statements.swift
[416/497] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[417/497] Compiling SwiftParser UnicodeScalarExtensions.swift
[418/497] Emitting module SwiftParser
[419/497] Compiling SwiftParser Lexeme.swift
[420/497] Compiling SwiftParser LexemeSequence.swift
[421/497] Compiling SwiftParser Lexer.swift
[422/497] Compiling SwiftParser RegexLiteralLexer.swift
[423/497] Emitting module SwiftParser
[433/501] Compiling SwiftParser Attributes.swift
[434/501] Compiling SwiftParser Availability.swift
[435/501] Compiling SwiftParser CharacterInfo.swift
[436/501] Compiling SwiftParser CollectionNodes+Parsable.swift
[437/501] Compiling SwiftParser Declarations.swift
[438/501] Compiling SwiftParser StringLiterals.swift
[439/501] Compiling SwiftParser SwiftParserCompatibility.swift
[440/501] Compiling SwiftParser SwiftVersion.swift
[441/501] Compiling SwiftParser SyntaxUtils.swift
[442/501] Compiling SwiftParser Cursor.swift
[443/501] Compiling SwiftParser Parameters.swift
[444/501] Compiling SwiftParser ParseSourceFile.swift
[445/501] Compiling SwiftParser Parser.swift
[446/501] Compiling SwiftParser Patterns.swift
[447/501] Compiling SwiftParser Directives.swift
[448/501] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[449/501] Compiling SwiftParser Expressions.swift
[450/501] Compiling SwiftParser IncrementalParseTransition.swift
[451/501] Compiling SwiftParser IsValidIdentifier.swift
[452/501] Compiling SwiftParser TopLevel.swift
[453/501] Compiling SwiftParser TriviaParser.swift
[454/501] Compiling SwiftParser Types.swift
[455/501] Compiling SwiftParser ExperimentalFeatures.swift
[488/501] Compiling SwiftParser IsLexerClassified.swift
[489/501] Compiling SwiftParser LayoutNodes+Parsable.swift
[490/501] Compiling SwiftParser Parser+TokenSpecSet.swift
[491/501] Compiling SwiftParser TokenSpecStaticMembers.swift
[496/511] Compiling PropertyLawDiscoveryTool SuppressionParser.swift
[497/522] Compiling PropertyLawDiscoveryTool RoundTripFinder.swift
[498/522] Compiling PropertyLawDiscoveryTool RoundTripSuggester.swift
[499/522] Compiling PropertyLawDiscoveryTool WitnessFinder.swift
[500/522] Compiling PropertyLawDiscoveryTool PluginMemberInspector.swift
[501/522] Compiling PropertyLawDiscoveryTool PropertyLawDiscoveryTool.swift
[502/522] Compiling PropertyLawDiscoveryTool GeneratedFileEmitter.swift
[503/522] Compiling PropertyLawDiscoveryTool ConformanceMap.swift
[504/522] Compiling PropertyLawDiscoveryTool ModuleScanner.swift
[505/522] Compiling PropertyLawDiscoveryTool AdvisorySuggester.swift
[506/522] Emitting module PropertyLawDiscoveryTool
[506/522] Write Objects.LinkFileList
[508/522] Compiling PropertyLawDiscoveryTool RoundTripSuggester.swift
[509/522] Compiling PropertyLawDiscoveryTool SuppressionParser.swift
[510/522] Compiling PropertyLawDiscoveryTool RoundTripFinder.swift
[511/523] Compiling PropertyLawDiscoveryTool PropertyLawDiscoveryTool.swift
[512/523] Compiling PropertyLawDiscoveryTool AdvisorySuggester.swift
[513/523] Compiling PropertyLawDiscoveryTool PluginMemberInspector.swift
[514/523] Compiling PropertyLawDiscoveryTool GeneratedFileEmitter.swift
[515/523] Emitting module PropertyLawDiscoveryTool
[516/523] Compiling PropertyLawDiscoveryTool ConformanceMap.swift
[517/523] Compiling PropertyLawDiscoveryTool ModuleScanner.swift
[518/523] Compiling PropertyLawDiscoveryTool WitnessFinder.swift
[518/523] Write Objects.LinkFileList
[519/523] Linking PropertyLawDiscoveryTool-tool
[520/523] Applying PropertyLawDiscoveryTool-tool
[521/523] Linking PropertyLawDiscoveryTool
[522/523] Applying PropertyLawDiscoveryTool
Build complete! (38.83s)
Fetching https://github.com/swiftlang/swift-syntax.git
Fetching https://github.com/x-sheep/swift-property-based.git
[1/1261] Fetching swift-property-based
[1262/76306] Fetching swift-property-based, swift-syntax
Fetched https://github.com/x-sheep/swift-property-based.git from cache (6.08s)
Fetched https://github.com/swiftlang/swift-syntax.git from cache (6.08s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 600.0.1 (9.11s)
Computing version for https://github.com/x-sheep/swift-property-based.git
Computed https://github.com/x-sheep/swift-property-based.git at 1.2.0 (0.53s)
Creating working copy for https://github.com/x-sheep/swift-property-based.git
Working copy of https://github.com/x-sheep/swift-property-based.git resolved at 1.2.0
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 600.0.1
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/600.0.1/swiftlang-6.2.4.1.4-MacroSupport-macos_aarch64.zip
Downloaded https://download.swift.org/prebuilts/swift-syntax/600.0.1/swiftlang-6.2.4.1.4-MacroSupport-macos_aarch64.zip (0.18s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-property-based",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/x-sheep/swift-property-based.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "600.0.0",
            "upper_bound" : "601.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "SwiftPropertyLaws",
  "name" : "SwiftPropertyLaws",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "watchos",
      "version" : "10.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "PropertyLawKit",
      "targets" : [
        "PropertyLawKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawMacro",
      "targets" : [
        "PropertyLawMacro"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawCore",
      "targets" : [
        "PropertyLawCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawDiscoveryTool",
      "targets" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "PropertyLawMacroImpl",
      "targets" : [
        "PropertyLawMacroImpl"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PropertyLawMacroTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacroTests",
      "path" : "Tests/PropertyLawMacroTests",
      "product_dependencies" : [
        "PropertyBased",
        "SwiftSyntaxMacros",
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "DiagnosticsTests.swift",
        "DiscoverableMacroTests.swift",
        "EndToEndTests.swift",
        "MacroExpansionMultiTypeTests.swift",
        "MacroExpansionTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawMacro",
        "PropertyLawMacroImpl",
        "PropertyLawKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawMacroImpl",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacroImpl",
      "path" : "Sources/PropertyLawMacroImpl",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin",
        "SwiftDiagnostics"
      ],
      "product_memberships" : [
        "PropertyLawMacro",
        "PropertyLawMacroImpl"
      ],
      "sources" : [
        "Diagnostics.swift",
        "DiscoverableMacro.swift",
        "MemberBlockInspector.swift",
        "Plugin.swift",
        "PropertyLawSuiteMacro.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "PropertyLawMacro",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacro",
      "path" : "Sources/PropertyLawMacro",
      "product_memberships" : [
        "PropertyLawMacro"
      ],
      "sources" : [
        "PropertyLawMacro.swift"
      ],
      "target_dependencies" : [
        "PropertyLawKit",
        "PropertyLawMacroImpl"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PropertyLawKitTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawKitTests",
      "path" : "Tests/PropertyLawKitTests",
      "product_dependencies" : [
        "PropertyBased"
      ],
      "sources" : [
        "AdditiveArithmeticLawsTests.swift",
        "BidirectionalCollectionLawsTests.swift",
        "BinaryFloatingPointLawsTests.swift",
        "BinaryIntegerLawsTests.swift",
        "BudgetTests.swift",
        "CaseIterableLawsTests.swift",
        "CodableLawsTests.swift",
        "CollectionLawsTests.swift",
        "CommutativeMonoidLawsTests.swift",
        "ComparableLawsTests.swift",
        "CoverageHintsTests.swift",
        "DownstreamPropertyBackendSmokeTests.swift",
        "EnforcementTests.swift",
        "EquatableLawsTests.swift",
        "ErrorBoxTests.swift",
        "FixedWidthIntegerLawsTests.swift",
        "FloatingPointLawsTests.swift",
        "GroupLawsTests.swift",
        "HashableLawsTests.swift",
        "Helpers/Generators.swift",
        "Helpers/SeededValueType.swift",
        "IdentifiableLawsTests.swift",
        "IteratorProtocolLawsTests.swift",
        "LawIdentifierTests.swift",
        "LosslessStringConvertibleLawsTests.swift",
        "MonoidLawsTests.swift",
        "MutableCollectionLawsTests.swift",
        "NearMissTests.swift",
        "NumericLawsTests.swift",
        "PlantedBugs/PlantedAdditiveArithmeticViolators.swift",
        "PlantedBugs/PlantedBinaryIntegerViolators.swift",
        "PlantedBugs/PlantedBugCollectionRefinementsDetectionTests.swift",
        "PlantedBugs/PlantedBugCollectionsDetectionTests.swift",
        "PlantedBugs/PlantedBugDetectionTests.swift",
        "PlantedBugs/PlantedBugIntegerDetectionTests.swift",
        "PlantedBugs/PlantedBugMonoidDetectionTests.swift",
        "PlantedBugs/PlantedBugNumericDetectionTests.swift",
        "PlantedBugs/PlantedBugSemigroupDetectionTests.swift",
        "PlantedBugs/PlantedCaseIterableViolators.swift",
        "PlantedBugs/PlantedCodableViolators.swift",
        "PlantedBugs/PlantedCollectionRefinementsViolators.swift",
        "PlantedBugs/PlantedCollectionViolators.swift",
        "PlantedBugs/PlantedComparableViolators.swift",
        "PlantedBugs/PlantedEquatableViolators.swift",
        "PlantedBugs/PlantedFixedWidthIntegerViolators.swift",
        "PlantedBugs/PlantedHashableViolators.swift",
        "PlantedBugs/PlantedIdentifiableViolators.swift",
        "PlantedBugs/PlantedIteratorViolators.swift",
        "PlantedBugs/PlantedLosslessStringConvertibleViolators.swift",
        "PlantedBugs/PlantedMonoidViolators.swift",
        "PlantedBugs/PlantedNumericViolators.swift",
        "PlantedBugs/PlantedRawRepresentableViolators.swift",
        "PlantedBugs/PlantedSemigroupViolators.swift",
        "PlantedBugs/PlantedSequenceViolators.swift",
        "PlantedBugs/PlantedSetAlgebraViolators.swift",
        "PlantedBugs/PlantedSignedIntegerViolators.swift",
        "PlantedBugs/PlantedSignedNumericViolators.swift",
        "PlantedBugs/PlantedStrideableViolators.swift",
        "PlantedBugs/PlantedUnsignedIntegerViolators.swift",
        "RandomAccessCollectionLawsTests.swift",
        "RangeReplaceableCollectionLawsTests.swift",
        "RawRepresentableLawsTests.swift",
        "ReplayValidationTests.swift",
        "SeedTests.swift",
        "SemigroupLawsTests.swift",
        "SemilatticeLawsTests.swift",
        "SequenceLawsTests.swift",
        "SetAlgebraLawsTests.swift",
        "SignedNumericLawsTests.swift",
        "StrideableLawsTests.swift",
        "StringProtocolLawsTests.swift",
        "SuppressionTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawKit",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawKit",
      "path" : "Sources/PropertyLawKit",
      "product_dependencies" : [
        "PropertyBased"
      ],
      "product_memberships" : [
        "PropertyLawKit",
        "PropertyLawMacro"
      ],
      "sources" : [
        "Internal/AggregateDriver.swift",
        "Internal/Backends/SwiftPropertyBasedBackend.swift",
        "Internal/CoverageAccumulator.swift",
        "Internal/LawSuppressionPolicy.swift",
        "Internal/NearMissCollector.swift",
        "Internal/PerLawDriver.swift",
        "Internal/ReplayEnvironmentValidator.swift",
        "Internal/ViolationFormatter.swift",
        "Model/CheckResult.swift",
        "Model/CodableCodec.swift",
        "Model/CodableLawConfig.swift",
        "Model/CodableRoundTripMode.swift",
        "Model/EnforcementMode.swift",
        "Model/Environment.swift",
        "Model/LawCheckOptions.swift",
        "Model/LawIdentifier.swift",
        "Model/LawSelection.swift",
        "Model/LawSuppression.swift",
        "Model/PropertyLawViolation.swift",
        "Model/Seed.swift",
        "Model/SequenceLawOptions.swift",
        "Model/StrictnessTier.swift",
        "Model/TrialBudget.swift",
        "PropertyLawKit.swift",
        "Public/AdditiveArithmeticLaws.swift",
        "Public/BidirectionalCollectionLaws.swift",
        "Public/BinaryFloatingPointLaws.swift",
        "Public/BinaryIntegerLaws.swift",
        "Public/CaseIterableLaws.swift",
        "Public/CodableLaws.swift",
        "Public/CollectionLaws.swift",
        "Public/CommutativeMonoid.swift",
        "Public/CommutativeMonoidLaws.swift",
        "Public/ComparableLaws.swift",
        "Public/CoverageClassifier.swift",
        "Public/EquatableLaws.swift",
        "Public/FixedWidthIntegerLaws.swift",
        "Public/FloatingPointLaws.swift",
        "Public/Group.swift",
        "Public/GroupLaws.swift",
        "Public/HashableLaws.swift",
        "Public/IdentifiableLaws.swift",
        "Public/IteratorProtocolLaws.swift",
        "Public/LosslessStringConvertibleLaws.swift",
        "Public/Monoid.swift",
        "Public/MonoidLaws.swift",
        "Public/MutableCollectionLaws.swift",
        "Public/NumericGenerators.swift",
        "Public/NumericLaws.swift",
        "Public/PropertyBackend.swift",
        "Public/RandomAccessCollectionLaws.swift",
        "Public/RangeReplaceableCollectionLaws.swift",
        "Public/RawRepresentableLaws.swift",
        "Public/ReplayEnvironmentMismatch.swift",
        "Public/Semigroup.swift",
        "Public/SemigroupLaws.swift",
        "Public/Semilattice.swift",
        "Public/SemilatticeLaws.swift",
        "Public/SequenceLaws.swift",
        "Public/SetAlgebraLaws.swift",
        "Public/SignedIntegerLaws.swift",
        "Public/SignedNumericLaws.swift",
        "Public/StrideableLaws.swift",
        "Public/StringProtocolLaws.swift",
        "Public/UnsignedIntegerLaws.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PropertyLawDiscoveryToolTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawDiscoveryToolTests",
      "path" : "Tests/PropertyLawDiscoveryToolTests",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftParser"
      ],
      "sources" : [
        "AdvisorySuggesterTests.swift",
        "EmitterGoldenTests.swift",
        "ModuleScannerRoundTripTests.swift",
        "ModuleScannerTests.swift",
        "RoundTripSuggesterTests.swift",
        "SuppressionParserTests.swift",
        "ToolInvocationTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawDiscoveryTool",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawDiscoveryTool",
      "path" : "Sources/PropertyLawDiscoveryTool",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftParser"
      ],
      "product_memberships" : [
        "PropertyLawDiscoveryTool"
      ],
      "sources" : [
        "AdvisorySuggester.swift",
        "ConformanceMap.swift",
        "GeneratedFileEmitter.swift",
        "ModuleScanner.swift",
        "PluginMemberInspector.swift",
        "PropertyLawDiscoveryTool.swift",
        "RoundTripFinder.swift",
        "RoundTripSuggester.swift",
        "SuppressionParser.swift",
        "WitnessFinder.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "PropertyLawDiscoveryPlugin",
      "module_type" : "PluginTarget",
      "name" : "PropertyLawDiscoveryPlugin",
      "path" : "Plugins/PropertyLawDiscoveryPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Generate PropertyLawKit test files by walking a target's source files and detecting stdlib protocol conformances.",
          "type" : "custom",
          "verb" : "propertylawcheck"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "PropertyLawDiscoveryPlugin writes a generated test file (default: Tests/<Target>Tests/PropertyLawTests.generated.swift) listing the checkXxxPropertyLaws calls for each detected conformance.",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "PropertyLawCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawCoreTests",
      "path" : "Tests/PropertyLawCoreTests",
      "sources" : [
        "DerivationStrategistTests.swift",
        "GeneratorExpressionEmitterTests.swift",
        "MemberwiseEmitterTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawCore",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawCore",
      "path" : "Sources/PropertyLawCore",
      "product_memberships" : [
        "PropertyLawMacro",
        "PropertyLawCore",
        "PropertyLawDiscoveryTool",
        "PropertyLawMacroImpl"
      ],
      "sources" : [
        "DerivationStrategy.swift",
        "GeneratorExpressionEmitter.swift",
        "KnownProtocol.swift",
        "MemberwiseEmitter.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
Done.