Build Information
Successful build of SwiftPropertyLaws, reference v2.0.0 (eeef84), with Swift 6.3 for Android on 5 May 2026 07:30:25 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build 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 /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/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: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Fetching https://github.com/swiftlang/swift-syntax.git
Fetching https://github.com/x-sheep/swift-property-based.git
[1/1261] Fetching swift-property-based
Fetched https://github.com/x-sheep/swift-property-based.git from cache (0.31s)
[1/75045] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax.git from cache (6.45s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 600.0.1 (9.45s)
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.94s)
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
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
/host/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,
/host/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,
/host/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
/host/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 | }
/host/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 |
/host/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 |
/host/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()
/host/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()
/host/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 | }
/host/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/64] Write sources
[13/64] Compiling _SwiftSyntaxCShims dummy.c
[14/64] Write sources
[27/64] Compiling _SwiftSyntaxCShims dummy.c
[28/64] Write sources
[28/64] Write swift-version--4F562202D5529B1.txt
[30/64] Write sources
[35/86] Emitting module SwiftSyntax600
[36/86] Compiling SwiftSyntax600 Empty.swift
[37/87] Compiling PropertyLawCore MemberwiseEmitter.swift
[39/87] Emitting module SwiftSyntax510
[40/87] Compiling SwiftSyntax510 Empty.swift
[41/88] Compiling PropertyLawCore GeneratorExpressionEmitter.swift
[42/88] Compiling PropertyLawCore KnownProtocol.swift
[44/88] Emitting module PropertyLawCore
[45/88] Compiling PropertyLawCore DerivationStrategy.swift
[46/89] Emitting module SwiftSyntax509
[47/89] Compiling SwiftSyntax509 Empty.swift
[50/90] Compiling PropertyLawCore MemberwiseEmitter.swift
[51/90] Emitting module SwiftSyntax600
[52/90] Compiling SwiftSyntax600 Empty.swift
[54/91] Compiling PropertyLawCore KnownProtocol.swift
[55/91] Emitting module SwiftSyntax509
[56/91] Compiling SwiftSyntax509 Empty.swift
[56/92] Wrapping AST for SwiftSyntax509 for debugging
[57/92] Wrapping AST for SwiftSyntax600 for debugging
[61/165] Emitting module PropertyLawCore
[61/169] Wrapping AST for SwiftSyntax510 for debugging
[62/190] Wrapping AST for PropertyLawCore for debugging
[63/192] Wrapping AST for SwiftSyntax509 for debugging
[65/196] Compiling SwiftSyntax510 Empty.swift
[66/197] Emitting module SwiftSyntax510
[68/215] Compiling PropertyLawCore DerivationStrategy.swift
[69/215] Compiling PropertyLawCore GeneratorExpressionEmitter.swift
[70/216] Wrapping AST for SwiftSyntax510 for debugging
[71/217] Wrapping AST for PropertyLawCore for debugging
[73/280] Compiling SwiftSyntax MemoryLayout.swift
[74/280] Compiling SwiftSyntax MissingNodeInitializers.swift
[75/280] Compiling SwiftSyntax RawSyntax.swift
[76/280] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[77/280] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[78/280] Compiling SwiftSyntax RawSyntaxTokenView.swift
[79/280] Compiling SwiftSyntax SourceEdit.swift
[80/280] Compiling SwiftSyntax SourceLength.swift
[81/280] Compiling SwiftSyntax SourceLocation.swift
[82/288] Compiling SwiftSyntax Utils.swift
[83/288] Compiling SwiftSyntax ChildNameForKeyPath.swift
[84/288] Compiling SwiftSyntax Keyword.swift
[85/288] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[86/288] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[87/288] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[88/288] Compiling SwiftSyntax SyntaxBaseNodes.swift
[89/288] Compiling SwiftSyntax SyntaxCollections.swift
[90/288] Compiling SwiftSyntax SyntaxEnum.swift
[91/288] Compiling SwiftSyntax AbsolutePosition.swift
[92/288] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[93/288] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[94/288] Compiling SwiftSyntax Assert.swift
[95/288] Compiling SwiftSyntax BumpPtrAllocator.swift
[96/288] Compiling SwiftSyntax CommonAncestor.swift
[97/288] Compiling SwiftSyntax Convenience.swift
[98/288] Compiling SwiftSyntax CustomTraits.swift
[99/288] Compiling SwiftSyntax Identifier.swift
[113/300] Compiling SwiftSyntax SyntaxNodeFactory.swift
[114/300] Compiling SwiftSyntax SyntaxNodeStructure.swift
[115/300] Compiling SwiftSyntax SyntaxProtocol.swift
[116/300] Compiling SwiftSyntax SyntaxText.swift
[117/300] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[118/300] Compiling SwiftSyntax TokenDiagnostic.swift
[119/300] Compiling SwiftSyntax TokenSequence.swift
[120/300] Compiling SwiftSyntax TokenSyntax.swift
[121/300] Compiling SwiftSyntax Trivia.swift
[126/300] Compiling SwiftSyntax SourcePresence.swift
[127/300] Compiling PropertyBased Shrink+Tuple.swift
[128/300] Compiling PropertyBased Shrink.swift
[129/300] Compiling PropertyBased Xoshiro.swift
[130/300] Compiling PropertyBased Zip.swift
[131/300] Compiling SwiftSyntax SyntaxChildren.swift
[132/300] Compiling SwiftSyntax SyntaxCollection.swift
[133/300] Compiling SwiftSyntax SyntaxHashable.swift
[134/300] Compiling SwiftSyntax SyntaxIdentifier.swift
[144/300] Emitting module PropertyBased
[170/304] Compiling PropertyBased Shrink+Tuple.swift
[171/304] Compiling PropertyBased Shrink.swift
[172/304] Compiling PropertyBased Xoshiro.swift
[173/304] Compiling PropertyBased Zip.swift
[199/363] Emitting module PropertyLawKit
[200/371] Compiling PropertyLawKit CodableCodec.swift
[201/371] Compiling PropertyLawKit CodableLawConfig.swift
[202/371] Compiling PropertyLawKit CodableRoundTripMode.swift
[203/371] Compiling PropertyLawKit EnforcementMode.swift
[204/371] Compiling PropertyLawKit Environment.swift
[205/371] Compiling PropertyLawKit LawCheckOptions.swift
[206/371] Compiling PropertyLawKit LawIdentifier.swift
[207/371] Compiling PropertyLawKit LawSelection.swift
[208/371] Compiling PropertyLawKit CheckResult.swift
[209/371] Compiling PropertyLawKit BidirectionalCollectionLaws.swift
[210/371] Compiling PropertyLawKit BinaryFloatingPointLaws.swift
[211/371] Compiling PropertyLawKit BinaryIntegerLaws.swift
[213/430] Compiling PropertyLawKit IdentifiableLaws.swift
[214/430] Compiling PropertyLawKit IteratorProtocolLaws.swift
[215/430] Compiling PropertyLawKit LosslessStringConvertibleLaws.swift
[216/430] Compiling PropertyLawKit Monoid.swift
[217/430] Compiling PropertyLawKit MonoidLaws.swift
[218/430] Compiling PropertyLawKit MutableCollectionLaws.swift
[219/430] Compiling PropertyLawKit NumericGenerators.swift
[220/430] Compiling PropertyLawKit NumericLaws.swift
[221/430] Compiling PropertyLawKit PropertyBackend.swift
[222/430] Compiling PropertyLawKit RandomAccessCollectionLaws.swift
[223/430] Compiling PropertyLawKit RangeReplaceableCollectionLaws.swift
[224/430] Compiling PropertyLawKit RawRepresentableLaws.swift
[225/430] Compiling PropertyLawKit ReplayEnvironmentMismatch.swift
[226/430] Compiling PropertyLawKit Semigroup.swift
[227/430] Compiling PropertyLawKit SemigroupLaws.swift
[228/430] Compiling PropertyLawKit Semilattice.swift
[229/430] Compiling PropertyLawKit ComparableLaws.swift
[230/430] Compiling PropertyLawKit CoverageClassifier.swift
[231/430] Compiling PropertyLawKit EquatableLaws.swift
[232/430] Compiling PropertyLawKit FixedWidthIntegerLaws.swift
[233/430] Compiling PropertyLawKit FloatingPointLaws.swift
[234/430] Compiling PropertyLawKit Group.swift
[235/430] Compiling PropertyLawKit GroupLaws.swift
[236/430] Compiling PropertyLawKit HashableLaws.swift
[237/430] Emitting module PropertyLawKit
[238/438] Compiling PropertyLawKit AggregateDriver.swift
[239/438] Compiling PropertyLawKit SwiftPropertyBasedBackend.swift
[240/438] Compiling PropertyLawKit CoverageAccumulator.swift
[241/438] Compiling PropertyLawKit LawSuppressionPolicy.swift
[242/438] Compiling PropertyLawKit NearMissCollector.swift
[243/438] Compiling PropertyLawKit PerLawDriver.swift
[244/438] Compiling PropertyLawKit ReplayEnvironmentValidator.swift
[245/438] Compiling PropertyLawKit ViolationFormatter.swift
[246/438] Compiling PropertyLawKit CheckResult.swift
[247/438] Emitting module SwiftSyntax
[248/438] Compiling PropertyLawKit CodableCodec.swift
[249/438] Compiling PropertyLawKit CodableLawConfig.swift
[250/438] Compiling PropertyLawKit CodableRoundTripMode.swift
[251/438] Compiling PropertyLawKit EnforcementMode.swift
[252/438] Compiling PropertyLawKit Environment.swift
[253/438] Compiling PropertyLawKit LawCheckOptions.swift
[254/438] Compiling PropertyLawKit LawIdentifier.swift
[255/438] Compiling PropertyLawKit LawSelection.swift
[280/438] Compiling PropertyLawKit SemilatticeLaws.swift
[281/438] Compiling PropertyLawKit SequenceLaws.swift
[282/438] Compiling PropertyLawKit SetAlgebraLaws.swift
[283/438] Compiling PropertyLawKit SignedIntegerLaws.swift
[284/438] Compiling PropertyLawKit SignedNumericLaws.swift
[285/438] Compiling PropertyLawKit StrideableLaws.swift
[286/438] Compiling PropertyLawKit StringProtocolLaws.swift
[287/438] Compiling PropertyLawKit UnsignedIntegerLaws.swift
[288/438] Emitting module SwiftSyntax
[298/438] Compiling PropertyLawKit LawSuppression.swift
[299/438] Compiling PropertyLawKit PropertyLawViolation.swift
[300/438] Compiling PropertyLawKit Seed.swift
[301/438] Compiling PropertyLawKit SequenceLawOptions.swift
[302/438] Compiling PropertyLawKit StrictnessTier.swift
[303/438] Compiling PropertyLawKit TrialBudget.swift
[304/438] Compiling PropertyLawKit PropertyLawKit.swift
[305/438] Compiling PropertyLawKit AdditiveArithmeticLaws.swift
[314/438] Compiling PropertyLawKit BidirectionalCollectionLaws.swift
[315/438] Compiling PropertyLawKit BinaryFloatingPointLaws.swift
[316/438] Compiling PropertyLawKit BinaryIntegerLaws.swift
[317/438] Compiling PropertyLawKit CaseIterableLaws.swift
[318/438] Compiling PropertyLawKit CodableLaws.swift
[319/438] Compiling PropertyLawKit CollectionLaws.swift
[320/438] Compiling PropertyLawKit CommutativeMonoid.swift
[321/438] Compiling PropertyLawKit CommutativeMonoidLaws.swift
[378/440] Compiling SwiftSyntax SyntaxNodesEF.swift
[379/440] Compiling SwiftSyntax SyntaxNodesGHI.swift
[380/440] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[381/440] Compiling SwiftSyntax SyntaxNodesOP.swift
[382/440] Compiling SwiftSyntax SyntaxNodesQRS.swift
[383/440] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[410/441] Wrapping AST for SwiftSyntax for debugging
[412/498] Compiling SwiftBasicFormat Syntax+Extensions.swift
[422/498] Compiling SwiftDiagnostics Message.swift
[423/499] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[424/499] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[425/499] Emitting module SwiftDiagnostics
[426/499] Compiling SwiftParser Attributes.swift
[427/499] Compiling SwiftParser Availability.swift
[428/499] Compiling SwiftParser CharacterInfo.swift
[429/499] Compiling SwiftParser CollectionNodes+Parsable.swift
[430/500] Compiling SwiftDiagnostics Note.swift
[432/500] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[433/500] Compiling SwiftDiagnostics FixIt.swift
[434/500] Compiling SwiftBasicFormat InferIndentation.swift
[435/500] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[436/500] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[437/501] Wrapping AST for SwiftSyntax for debugging
[438/501] Wrapping AST for SwiftDiagnostics for debugging
[440/502] Emitting module SwiftBasicFormat
[441/502] Compiling SwiftBasicFormat BasicFormat.swift
[442/543] Wrapping AST for SwiftBasicFormat for debugging
[444/543] Emitting module SwiftParser
[445/548] Compiling SwiftParser LexemeSequence.swift
[446/548] Compiling SwiftParser Lexer.swift
[447/548] Compiling SwiftParser RegexLiteralLexer.swift
[448/548] Compiling SwiftParser UnicodeScalarExtensions.swift
[449/548] Compiling SwiftParser Lookahead.swift
[450/548] Compiling SwiftParser LoopProgressCondition.swift
[451/548] Compiling SwiftParser Modifiers.swift
[452/548] Compiling SwiftParser Names.swift
[453/548] Compiling SwiftParser Nominals.swift
[454/548] Compiling SwiftParser Parameters.swift
[455/548] Compiling SwiftParser ParseSourceFile.swift
[456/548] Compiling SwiftParser Parser.swift
[457/548] Compiling SwiftParser TokenSpec.swift
[458/548] Compiling SwiftParser TokenSpecSet.swift
[459/548] Compiling SwiftParser TopLevel.swift
[460/548] Compiling SwiftParser TriviaParser.swift
[461/548] Compiling SwiftParser Types.swift
[462/548] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[463/548] Emitting module SwiftParser
[476/553] Compiling SwiftParser Expressions.swift
[477/553] Compiling SwiftParser IncrementalParseTransition.swift
[478/553] Compiling SwiftParser IsValidIdentifier.swift
[479/553] Compiling SwiftParser Cursor.swift
[480/553] Compiling SwiftParser Lexeme.swift
[481/553] Compiling SwiftParser SwiftParserCompatibility.swift
[482/553] Compiling SwiftParser SwiftVersion.swift
[483/553] Compiling SwiftParser SyntaxUtils.swift
[484/553] Compiling SwiftParser TokenConsumer.swift
[485/553] Compiling SwiftParser TokenPrecedence.swift
[496/553] Compiling SwiftParser Attributes.swift
[497/553] Compiling SwiftParser Availability.swift
[498/553] Compiling SwiftParser CharacterInfo.swift
[499/553] Compiling SwiftParser CollectionNodes+Parsable.swift
[500/553] Compiling SwiftParser Declarations.swift
[501/553] Compiling SwiftParser Directives.swift
[502/553] Compiling SwiftParser Patterns.swift
[503/553] Compiling SwiftParser Recovery.swift
[504/553] Compiling SwiftParser Specifiers.swift
[505/553] Compiling SwiftParser Statements.swift
[506/553] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[507/553] Compiling SwiftParser StringLiterals.swift
[520/553] Compiling SwiftParser ExperimentalFeatures.swift
[521/553] Compiling SwiftParser IsLexerClassified.swift
[522/553] Compiling SwiftParser LayoutNodes+Parsable.swift
[523/553] Compiling SwiftParser Parser+TokenSpecSet.swift
[524/553] Compiling SwiftParser TokenSpecStaticMembers.swift
[531/561] Wrapping AST for SwiftParser for debugging
[533/587] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[534/588] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[535/588] Compiling PropertyLawDiscoveryTool SuppressionParser.swift
[536/589] Compiling PropertyLawDiscoveryTool WitnessFinder.swift
[537/589] Compiling SwiftOperators PrecedenceGroup.swift
[538/589] Compiling SwiftOperators OperatorTable.swift
[539/589] Compiling SwiftOperators PrecedenceGraph.swift
[540/590] Compiling PropertyLawDiscoveryTool RoundTripFinder.swift
[541/590] Compiling PropertyLawDiscoveryTool RoundTripSuggester.swift
[547/590] Compiling PropertyLawDiscoveryTool PluginMemberInspector.swift
[548/590] Compiling PropertyLawDiscoveryTool PropertyLawDiscoveryTool.swift
[550/591] Compiling PropertyLawDiscoveryTool AdvisorySuggester.swift
[551/591] Compiling PropertyLawDiscoveryTool ConformanceMap.swift
[552/591] Compiling SwiftOperators OperatorTable+Folding.swift
[553/591] Compiling SwiftOperators OperatorTable+Semantics.swift
[554/591] Compiling PropertyLawDiscoveryTool GeneratedFileEmitter.swift
[555/591] Compiling PropertyLawDiscoveryTool ModuleScanner.swift
[556/591] Emitting module SwiftOperators
[556/591] Wrapping AST for SwiftParser for debugging
[558/591] Compiling SwiftOperators SyntaxSynthesis.swift
[559/592] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[560/592] Compiling SwiftParserDiagnostics Utils.swift
[561/592] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[563/602] Emitting module SwiftParserDiagnostics
[564/602] Compiling PropertyLawDiscoveryTool GeneratedFileEmitter.swift
[565/602] Compiling PropertyLawDiscoveryTool ModuleScanner.swift
[565/602] Wrapping AST for SwiftOperators for debugging
[567/602] Emitting module PropertyLawDiscoveryTool
[568/602] Compiling PropertyLawDiscoveryTool AdvisorySuggester.swift
[569/602] Compiling PropertyLawDiscoveryTool ConformanceMap.swift
[571/603] Compiling PropertyLawDiscoveryTool SuppressionParser.swift
[572/603] Compiling PropertyLawDiscoveryTool RoundTripSuggester.swift
[573/603] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[574/603] Compiling SwiftParserDiagnostics PresenceUtils.swift
[574/604] Wrapping AST for PropertyLawDiscoveryTool for debugging
[575/604] Compiling PropertyLawDiscoveryTool PluginMemberInspector.swift
[577/604] Compiling PropertyLawDiscoveryTool RoundTripFinder.swift
[578/604] Emitting module PropertyLawDiscoveryTool
[579/604] Compiling PropertyLawDiscoveryTool WitnessFinder.swift
[580/604] Compiling PropertyLawDiscoveryTool PropertyLawDiscoveryTool.swift
[585/604] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[586/604] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[586/604] Write Objects.LinkFileList
[588/605] Wrapping AST for SwiftParserDiagnostics for debugging
[590/616] Compiling SwiftSyntaxBuilder Indenter.swift
[591/616] Compiling SwiftSyntaxBuilder ListBuilder.swift
[592/620] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[593/620] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[595/621] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[596/621] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[596/622] Wrapping AST for PropertyLawDiscoveryTool for debugging
[597/622] Write Objects.LinkFileList
[599/622] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[600/622] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[600/622] Linking PropertyLawDiscoveryTool-tool
[602/622] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[603/622] Emitting module SwiftSyntaxBuilder
[603/622] Linking PropertyLawDiscoveryTool
[605/622] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[606/622] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[611/622] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[612/622] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[613/622] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[614/622] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[615/623] Wrapping AST for SwiftSyntaxBuilder for debugging
[617/640] Emitting module SwiftSyntaxMacros
[618/642] Compiling SwiftSyntaxMacros Macro.swift
[619/642] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[620/642] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[621/642] Compiling SwiftSyntaxMacros Macro+Format.swift
[622/642] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[623/642] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[624/642] Compiling SwiftSyntaxMacros AccessorMacro.swift
[625/642] Compiling SwiftSyntaxMacros AttachedMacro.swift
[626/642] Compiling SwiftSyntaxMacros BodyMacro.swift
[627/642] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[628/642] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[629/642] Compiling SwiftSyntaxMacros MemberMacro.swift
[630/642] Compiling SwiftSyntaxMacros PeerMacro.swift
[631/642] Compiling SwiftSyntaxMacros PreambleMacro.swift
[632/642] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[633/642] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[634/642] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[635/642] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[636/643] Wrapping AST for SwiftSyntaxMacros for debugging
[638/652] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[639/653] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[640/653] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[641/653] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[642/653] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[643/653] Emitting module SwiftSyntaxMacroExpansion
[644/653] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[645/653] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[646/653] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[647/653] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[648/654] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[650/666] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[651/666] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[652/667] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[653/667] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[654/667] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[655/667] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[656/667] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[657/667] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[658/667] Emitting module SwiftCompilerPluginMessageHandling
[659/667] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[660/667] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[661/667] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[662/667] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[663/668] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[665/670] Emitting module SwiftCompilerPlugin
[666/670] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[667/671] Wrapping AST for SwiftCompilerPlugin for debugging
[669/677] Compiling PropertyLawMacroImpl Diagnostics.swift
[670/677] Emitting module PropertyLawMacroImpl
[671/677] Compiling PropertyLawMacroImpl MemberBlockInspector.swift
[672/677] Compiling PropertyLawMacroImpl PropertyLawSuiteMacro.swift
[673/677] Compiling PropertyLawMacroImpl Plugin.swift
[674/677] Compiling PropertyLawMacroImpl DiscoverableMacro.swift
[675/678] Wrapping AST for PropertyLawMacroImpl for debugging
[676/678] Write Objects.LinkFileList
[677/678] Linking PropertyLawMacroImpl-tool
[679/682] Emitting module PropertyLawMacro
[680/682] Compiling PropertyLawMacro PropertyLawMacro.swift
[681/683] Emitting module PropertyLawMacro
[682/683] Compiling PropertyLawMacro PropertyLawMacro.swift
Build complete! (138.45s)
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" : "/host/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"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.