Build Information
Successful build of swiftly, reference main (cbc8bd
), with Swift 6.0 for macOS (SPM) on 16 Jun 2025 20:45:22 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swiftlang/swiftly.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/swiftlang/swiftly
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at cbc8bdc Remove the swiftly bootstrap version (#385)
Cloned https://github.com/swiftlang/swiftly.git
Revision (git rev-parse @):
cbc8bdc052f510930a09e163981395e6fd38693d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/swiftlang/swiftly.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/swiftlang/swiftly.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/10] Write sources
[1/10] Write generate-command-models-tool-entitlement.plist
[1/10] Write sources
[5/10] Compiling CSystem shims.c
[6/10] Write swift-version-5BDAB9E9C0126B9D.txt
[8/40] Compiling ArgumentParserToolInfo ToolInfo.swift
[9/40] Emitting module ArgumentParserToolInfo
[10/79] Emitting module SystemPackage
[11/82] Compiling ArgumentParser ExpressibleByArgument.swift
[12/82] Compiling ArgumentParser ArgumentHelp.swift
[13/82] Compiling ArgumentParser ArgumentVisibility.swift
[14/82] Compiling ArgumentParser InputOrigin.swift
[15/82] Compiling ArgumentParser Name.swift
[16/82] Compiling ArgumentParser Parsed.swift
[17/82] Compiling ArgumentParser BashCompletionsGenerator.swift
[18/82] Compiling ArgumentParser CompletionsGenerator.swift
[19/82] Compiling ArgumentParser FishCompletionsGenerator.swift
[20/82] Compiling ArgumentParser CommandConfiguration.swift
[21/82] Compiling ArgumentParser CommandGroup.swift
[22/82] Compiling ArgumentParser EnumerableFlag.swift
[23/82] Compiling ArgumentParser Option.swift
[24/82] Compiling ArgumentParser OptionGroup.swift
[25/82] Compiling ArgumentParser AsyncParsableCommand.swift
[26/82] Compiling ArgumentParser DumpHelpGenerator.swift
[27/82] Compiling ArgumentParser HelpCommand.swift
[28/82] Compiling ArgumentParser NameSpecification.swift
[29/82] Compiling ArgumentParser MessageInfo.swift
[30/82] Compiling ArgumentParser UsageGenerator.swift
[31/82] Compiling ArgumentParser CollectionExtensions.swift
[32/82] Compiling SystemPackage Util+StringArray.swift
[33/82] Compiling SystemPackage Util.swift
[34/82] Compiling SystemPackage UtilConsumers.swift
[35/82] Compiling ArgumentParser ParsedValues.swift
[36/82] Compiling ArgumentParser ParserError.swift
[37/82] Compiling ArgumentParser SplitArguments.swift
[38/82] Compiling ArgumentParser ZshCompletionsGenerator.swift
[39/82] Compiling ArgumentParser Argument.swift
[40/82] Compiling ArgumentParser HelpGenerator.swift
[45/86] Emitting module ArgumentParser
[50/86] Compiling ArgumentParser Platform.swift
[51/86] Compiling ArgumentParser SequenceExtensions.swift
[52/86] Compiling ArgumentParser StringExtensions.swift
[53/86] Compiling ArgumentParser Tree.swift
[54/86] Compiling ArgumentParser ParsableArguments.swift
[55/86] Compiling ArgumentParser ParsableArgumentsValidation.swift
[56/86] Compiling ArgumentParser ParsableCommand.swift
[57/86] Compiling ArgumentParser ArgumentDecoder.swift
[63/86] Compiling ArgumentParser ArgumentDefinition.swift
[64/86] Compiling ArgumentParser ArgumentSet.swift
[65/86] Compiling ArgumentParser CommandParser.swift
[66/86] Compiling ArgumentParser InputKey.swift
[84/88] Emitting module generate_command_models
[85/88] Compiling generate_command_models GenerateCommandModels.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-command-models/GenerateCommandModels.swift:73:13: warning: no 'async' operations occur within 'await' expression
71 | }
72 |
73 | try await allCmds.write(to: URL(fileURLWithPath: self.outputFile), atomically: true, encoding: .utf8)
| `- warning: no 'async' operations occur within 'await' expression
74 | }
75 |
/Users/admin/builder/spi-builder-workspace/Tools/generate-command-models/GenerateCommandModels.swift:184:70: warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
182 | } else if let shortName = arg.names?.filter { $0.kind == .short }.first?.name {
183 | name = "-" + shortName
184 | } else if let longNameWithSingleDash = arg.names?.filter { $0.kind == .longWithSingleDash }.first?.name {
| `- warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
185 | name = "-" + longNameWithSingleDash
186 | }
/Users/admin/builder/spi-builder-workspace/Tools/generate-command-models/GenerateCommandModels.swift:182:57: warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
180 | if let longName = arg.names?.filter { $0.kind == .long }.first?.name {
181 | name = "--" + longName
182 | } else if let shortName = arg.names?.filter { $0.kind == .short }.first?.name {
| `- warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
183 | name = "-" + shortName
184 | } else if let longNameWithSingleDash = arg.names?.filter { $0.kind == .longWithSingleDash }.first?.name {
/Users/admin/builder/spi-builder-workspace/Tools/generate-command-models/GenerateCommandModels.swift:180:49: warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
178 | let flag = arg.kind == .flag
179 | var name: String?
180 | if let longName = arg.names?.filter { $0.kind == .long }.first?.name {
| `- warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
181 | name = "--" + longName
182 | } else if let shortName = arg.names?.filter { $0.kind == .short }.first?.name {
[85/88] Write Objects.LinkFileList
[86/88] Linking generate-command-models-tool
[87/88] Applying generate-command-models-tool
Build of product 'generate-command-models' complete! (9.79s)
Building for debugging...
[0/22] Write swift-openapi-generator-tool-entitlement.plist
[1/23] Write sources
[12/23] Compiling _NumericsShims _NumericsShims.c
[13/23] Write swift-version-5BDAB9E9C0126B9D.txt
[14/81] Compiling reader.c
[15/81] Compiling writer.c
[16/81] Compiling parser.c
[17/81] Compiling api.c
[19/81] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[20/81] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[21/82] Compiling InternalCollectionsUtilities Debugging.swift
[22/82] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[23/82] Compiling InternalCollectionsUtilities Descriptions.swift
[23/82] Compiling emitter.c
[25/82] Compiling RealModule Double+Real.swift
[26/82] Compiling RealModule Float80+Real.swift
[27/82] Compiling RealModule Real.swift
[28/83] Compiling RealModule Float+Real.swift
[29/83] Compiling RealModule AugmentedArithmetic.swift
[30/83] Compiling RealModule ElementaryFunctions.swift
[31/83] Compiling RealModule AlgebraicField.swift
[32/83] Compiling RealModule ApproximateEquality.swift
[33/83] Compiling RealModule Float16+Real.swift
[33/83] Compiling scanner.c
[35/83] Compiling RealModule RealFunctions.swift
[36/83] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[37/83] Emitting module RealModule
[38/129] Compiling Algorithms Partition.swift
[39/129] Compiling Algorithms Permutations.swift
[40/129] Compiling Algorithms Chunked.swift
[41/129] Compiling Algorithms Combinations.swift
[42/129] Emitting module InternalCollectionsUtilities
[43/129] Compiling Algorithms Compacted.swift
[44/129] Compiling Algorithms Cycle.swift
[45/129] Compiling Algorithms AdjacentPairs.swift
[46/129] Compiling Algorithms Chain.swift
[47/129] Compiling Algorithms Suffix.swift
[48/129] Compiling Algorithms Trim.swift
[49/187] Emitting module OpenAPIKitCore
[50/190] Compiling OrderedCollections _HashTable+Testing.swift
[51/190] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[52/190] Compiling OrderedCollections _HashTable.swift
[53/190] Compiling OrderedCollections OrderedSet+Hashable.swift
[54/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[55/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[56/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[57/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[58/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[59/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[60/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[61/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[62/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[63/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[64/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[65/190] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[66/196] Compiling OpenAPIKitCore Optional+Zip.swift
[67/196] Compiling OpenAPIKitCore Result+Value.swift
[68/196] Compiling OpenAPIKitCore Validatable.swift
[69/196] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[70/196] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[71/196] Compiling OrderedCollections _HashTable+Bucket.swift
[72/196] Compiling OrderedCollections _HashTable+BucketIterator.swift
[73/196] Compiling OrderedCollections _HashTable+Constants.swift
[74/196] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[75/196] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[76/196] Compiling OrderedCollections OrderedSet+Descriptions.swift
[77/196] Compiling OrderedCollections OrderedSet+Diffing.swift
[78/196] Compiling OrderedCollections OrderedSet+Equatable.swift
[79/196] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[80/196] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[81/196] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[82/196] Compiling OrderedCollections OrderedSet+Codable.swift
[83/196] Compiling OrderedCollections OrderedSet+Initializers.swift
[84/196] Compiling OrderedCollections OrderedSet+Insertions.swift
[85/196] Compiling OrderedCollections OrderedSet+Invariants.swift
[86/196] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[87/196] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[90/196] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[91/196] Compiling OrderedCollections OrderedDictionary+Elements.swift
[92/196] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[93/196] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[100/196] Compiling OrderedCollections _Hashtable+Header.swift
[101/196] Compiling OrderedCollections OrderedDictionary+Codable.swift
[102/196] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[103/196] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[104/196] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[105/196] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[112/319] Compiling OpenAPIKit30 DereferencedSecurityRequirement.swift
[113/319] Compiling OpenAPIKit30 Example.swift
[114/319] Compiling OpenAPIKit30 ExternalDocumentation.swift
[115/319] Compiling OpenAPIKit30 DereferencedHeader.swift
[116/319] Compiling OpenAPIKit30 Header.swift
[117/319] Compiling OpenAPIKit30 JSONReference.swift
[118/319] Compiling OpenAPIKit30 Link.swift
[119/319] Compiling OpenAPIKit30 OpenAPI.swift
[120/319] Compiling OpenAPIKit30 DereferencedOperation.swift
[121/319] Compiling OpenAPIKit30 Operation.swift
[122/319] Compiling OpenAPIKit30 ResolvedEndpoint.swift
[123/319] Compiling OpenAPIKit30 OrderedDictionary+Validatable.swift
[124/319] Compiling OpenAPIKit30 ResponseDecodingError.swift
[125/319] Compiling OpenAPIKit30 JSONSchema+Combining.swift
[126/319] Compiling OpenAPIKit30 JSONSchema.swift
[127/319] Compiling OpenAPIKit30 JSONSchemaContext.swift
[128/319] Compiling OpenAPIKit30 SimplifiedJSONSchema.swift
[129/319] Compiling OpenAPIKit30 TypesAndFormats.swift
[130/319] Compiling OpenAPIKit30 DereferencedParameter.swift
[131/319] Compiling OpenAPIKit30 DereferencedSchemaContext.swift
[132/319] Compiling OpenAPIKit30 Parameter.swift
[133/319] Compiling OpenAPIKit30 DereferencedResponse.swift
[134/319] Compiling OpenAPIKit30 Response.swift
[135/319] Compiling OpenAPIKit30 RuntimeExpression.swift
[136/319] Compiling OpenAPIKit30 OperationDecodingError.swift
[137/319] Compiling OpenAPIKit30 PathDecodingError.swift
[139/319] Compiling OpenAPIKit JSONSchema.swift
[140/319] Compiling OpenAPIKit JSONSchemaContext.swift
[144/319] Compiling OpenAPIKit DereferencedDocument.swift
[145/319] Compiling OpenAPIKit Document.swift
[146/319] Compiling OpenAPIKit DocumentInfo.swift
[147/319] Compiling OpenAPIKit30 DereferencedPathItem.swift
[148/319] Compiling OpenAPIKit30 PathItem.swift
[149/319] Compiling OpenAPIKit30 ResolvedRoute.swift
[150/319] Compiling OpenAPIKit30 DereferencedRequest.swift
[151/319] Compiling OpenAPIKit30 Request.swift
[152/319] Compiling OpenAPIKit DereferencedSchemaContext.swift
[153/319] Compiling OpenAPIKit ContentEncoding.swift
[154/319] Compiling OpenAPIKit DereferencedContent.swift
[155/319] Compiling OpenAPIKit DereferencedContentEncoding.swift
[159/319] Compiling OpenAPIKit ResolvedDocument.swift
[163/319] Emitting module OrderedCollections
[164/319] Emitting module OpenAPIKit30
[171/331] Emitting module OpenAPIKit
[172/331] Compiling OpenAPIKit Either+Summarizable.swift
[173/331] Compiling OpenAPIKit30 URLTemplate+Validatable.swift
[174/331] Compiling OpenAPIKit DocumentDecodingError.swift
[175/331] Compiling OpenAPIKit OperationDecodingError.swift
[176/331] Compiling OpenAPIKit30 Either+Convenience.swift
[177/331] Compiling OpenAPIKit30 Either+LocallyDereferenceable.swift
[179/331] Compiling OpenAPIKit Either+Convenience.swift
[180/331] Compiling OpenAPIKit Either+LocallyDereferenceable.swift
[181/331] Emitting module Algorithms
[204/333] Emitting module Yams
[210/333] Compiling Yams YamlError.swift
[211/333] Compiling Yams YamlTagProviding.swift
[221/333] Compiling OpenAPIKit30 SchemaProtocols.swift
[222/333] Compiling OpenAPIKit30 SwiftPrimitiveTypes+OpenAPI.swift
[223/333] Compiling OpenAPIKit30 DereferencedJSONSchema.swift
[224/333] Compiling OpenAPIKit30 ContentEncoding.swift
[225/333] Compiling OpenAPIKit30 Validation+Builtins.swift
[226/333] Compiling OpenAPIKit Validation+Builtins.swift
[227/333] Compiling OpenAPIKit Validation.swift
[228/333] Compiling OpenAPIKit Validator+Convenience.swift
[229/333] Compiling OpenAPIKit Validator.swift
[230/333] Compiling OpenAPIKit XML.swift
[231/333] Compiling OpenAPIKit30 DereferencedContent.swift
[232/333] Compiling OpenAPIKit30 DereferencedContentEncoding.swift
[233/333] Compiling OpenAPIKit30 DereferencedDocument.swift
[234/333] Compiling OpenAPIKit30 Document.swift
[235/333] Compiling OpenAPIKit30 DocumentInfo.swift
[236/333] Compiling OpenAPIKit30 ResolvedDocument.swift
[237/333] Compiling OpenAPIKit30 ParameterContext.swift
[238/333] Compiling OpenAPIKit30 ParameterSchemaContext.swift
[250/333] Compiling OpenAPIKit _CoreReExport.swift
[331/336] Emitting module OpenAPIKitCompat
[332/336] Compiling OpenAPIKitCompat Compat30To31.swift
[333/336] Compiling OpenAPIKitCompat Either+Map.swift
[334/419] Compiling _OpenAPIGeneratorCore Config.swift
[335/419] Compiling _OpenAPIGeneratorCore Diagnostics.swift
[336/419] Compiling _OpenAPIGeneratorCore DiagnosticsCollectorProvider.swift
[337/419] Compiling _OpenAPIGeneratorCore Errors.swift
[338/419] Compiling _OpenAPIGeneratorCore Foundation.swift
[339/419] Compiling _OpenAPIGeneratorCore OpenAPIKit.swift
[340/419] Compiling _OpenAPIGeneratorCore String.swift
[341/419] Compiling _OpenAPIGeneratorCore SwiftStandardLibrary.swift
[342/419] Compiling _OpenAPIGeneratorCore FeatureFlags.swift
[343/419] Compiling _OpenAPIGeneratorCore GeneratorMode.swift
[344/428] Emitting module _OpenAPIGeneratorCore
[345/428] Compiling _OpenAPIGeneratorCore translateObjectStruct.swift
[346/428] Compiling _OpenAPIGeneratorCore translateRawEnum.swift
[347/428] Compiling _OpenAPIGeneratorCore translateRawRepresentableEnum.swift
[348/428] Compiling _OpenAPIGeneratorCore translateSchema.swift
[349/428] Compiling _OpenAPIGeneratorCore translateStructBlueprint.swift
[350/428] Compiling _OpenAPIGeneratorCore translateTypealias.swift
[351/428] Compiling _OpenAPIGeneratorCore Annotations.swift
[352/428] Compiling _OpenAPIGeneratorCore CommentExtensions.swift
[353/428] Compiling _OpenAPIGeneratorCore Constants.swift
[354/428] Compiling _OpenAPIGeneratorCore DiscriminatorExtensions.swift
[355/428] Compiling _OpenAPIGeneratorCore SchemaOverrides.swift
[356/428] Compiling _OpenAPIGeneratorCore StructBlueprint.swift
[357/428] Compiling _OpenAPIGeneratorCore CodingStrategy.swift
[358/428] Compiling _OpenAPIGeneratorCore ContentInspector.swift
[359/428] Compiling _OpenAPIGeneratorCore ContentType.swift
[360/428] Compiling _OpenAPIGeneratorCore SchemaContent.swift
[361/428] Compiling _OpenAPIGeneratorCore FileTranslator+FeatureFlags.swift
[362/428] Compiling _OpenAPIGeneratorCore FileTranslator.swift
[363/428] Compiling _OpenAPIGeneratorCore translateResponseHeader.swift
[364/428] Compiling _OpenAPIGeneratorCore translateResponseOutcome.swift
[365/428] Compiling _OpenAPIGeneratorCore ServerTranslator.swift
[366/428] Compiling _OpenAPIGeneratorCore translateServerMethod.swift
[367/428] Compiling _OpenAPIGeneratorCore TranslatorProtocol.swift
[368/428] Compiling _OpenAPIGeneratorCore Builtins.swift
[369/428] Compiling _OpenAPIGeneratorCore ReferenceStack.swift
[370/428] Compiling _OpenAPIGeneratorCore SafeNameGenerator.swift
[371/428] Compiling _OpenAPIGeneratorCore TypeAssigner.swift
[372/428] Compiling _OpenAPIGeneratorCore RecursionDetector.swift
[373/428] Compiling _OpenAPIGeneratorCore TypedRequestBody.swift
[374/428] Compiling _OpenAPIGeneratorCore translateRequestBody.swift
[375/428] Compiling _OpenAPIGeneratorCore HTTPStatusCodes.swift
[376/428] Compiling _OpenAPIGeneratorCore ResponseKind.swift
[377/428] Compiling _OpenAPIGeneratorCore TypedResponse.swift
[378/428] Compiling _OpenAPIGeneratorCore TypedResponseHeader.swift
[379/428] Compiling _OpenAPIGeneratorCore acceptHeaderContentTypes.swift
[380/428] Compiling _OpenAPIGeneratorCore translateResponse.swift
[381/428] Compiling _OpenAPIGeneratorCore translateComponentParameters.swift
[382/428] Compiling _OpenAPIGeneratorCore translateComponentRequestBodies.swift
[383/428] Compiling _OpenAPIGeneratorCore translateComponentResponses.swift
[384/428] Compiling _OpenAPIGeneratorCore translateComponents.swift
[385/428] Compiling _OpenAPIGeneratorCore translateOperations.swift
[386/428] Compiling _OpenAPIGeneratorCore translateSchemas.swift
[387/428] Compiling _OpenAPIGeneratorCore translateServers.swift
[388/428] Compiling _OpenAPIGeneratorCore translateServersVariables.swift
[389/428] Compiling _OpenAPIGeneratorCore YamlFileDiagnosticsCollector.swift
[390/428] Compiling _OpenAPIGeneratorCore validateDoc.swift
[391/428] Compiling _OpenAPIGeneratorCore PlatformChecks.swift
[392/428] Compiling _OpenAPIGeneratorCore RendererProtocol.swift
[393/428] Compiling _OpenAPIGeneratorCore TextBasedRenderer.swift
[394/428] Compiling _OpenAPIGeneratorCore ClientTranslator.swift
[395/428] Compiling _OpenAPIGeneratorCore translateClientMethod.swift
[396/428] Compiling _OpenAPIGeneratorCore translateAllAnyOneOf.swift
[397/428] Compiling _OpenAPIGeneratorCore translateArray.swift
[398/428] Compiling _OpenAPIGeneratorCore translateCodable.swift
[399/428] Compiling _OpenAPIGeneratorCore TypeLocation.swift
[400/428] Compiling _OpenAPIGeneratorCore TypeMatcher.swift
[401/428] Compiling _OpenAPIGeneratorCore TypeName.swift
[402/428] Compiling _OpenAPIGeneratorCore TypeUsage.swift
[403/428] Compiling _OpenAPIGeneratorCore isSchemaSupported.swift
[404/428] Compiling _OpenAPIGeneratorCore TypesFileTranslator.swift
[405/428] Compiling _OpenAPIGeneratorCore translateAPIProtocol.swift
[406/428] Compiling _OpenAPIGeneratorCore translateBoxedTypes.swift
[407/428] Compiling _OpenAPIGeneratorCore translateComponentHeaders.swift
[408/428] Compiling _OpenAPIGeneratorCore MultipartAdditionalProperties.swift
[409/428] Compiling _OpenAPIGeneratorCore MultipartContent.swift
[410/428] Compiling _OpenAPIGeneratorCore MultipartContentInspector.swift
[411/428] Compiling _OpenAPIGeneratorCore translateMultipart.swift
[412/428] Compiling _OpenAPIGeneratorCore MultiplexTranslator.swift
[413/428] Compiling _OpenAPIGeneratorCore OperationDescription.swift
[414/428] Compiling _OpenAPIGeneratorCore TypedParameter.swift
[415/428] Compiling _OpenAPIGeneratorCore translateParameter.swift
[416/428] Compiling _OpenAPIGeneratorCore DeclarationRecursionDetector.swift
[417/428] Compiling _OpenAPIGeneratorCore GeneratorPipeline.swift
[418/428] Compiling _OpenAPIGeneratorCore GeneratorPipelineStage.swift
[419/428] Compiling _OpenAPIGeneratorCore DocumentFilter.swift
[420/428] Compiling _OpenAPIGeneratorCore FilteredDocument.swift
[421/428] Compiling _OpenAPIGeneratorCore ParsedOpenAPIRepresentation.swift
[422/428] Compiling _OpenAPIGeneratorCore RenderedSwiftRepresentation.swift
[423/428] Compiling _OpenAPIGeneratorCore StructuredSwiftRepresentation.swift
[424/428] Compiling _OpenAPIGeneratorCore ParserProtocol.swift
[425/428] Compiling _OpenAPIGeneratorCore YamsParser.swift
[426/438] Compiling swift_openapi_generator UserConfig.swift
[427/438] Compiling swift_openapi_generator runGenerator.swift
[428/438] Compiling swift_openapi_generator GenerateOptions+runGenerator.swift
[429/438] Compiling swift_openapi_generator Tool.swift
[430/438] Compiling swift_openapi_generator PluginSource.swift
[431/438] Compiling swift_openapi_generator FilterCommand.swift
[432/438] Compiling swift_openapi_generator Extensions.swift
[433/438] Compiling swift_openapi_generator GenerateCommand.swift
[434/438] Emitting module swift_openapi_generator
[435/438] Compiling swift_openapi_generator GenerateOptions.swift
[435/438] Write Objects.LinkFileList
[436/438] Linking swift-openapi-generator-tool
[437/438] Applying swift-openapi-generator-tool
Build of product 'swift-openapi-generator' complete! (15.12s)
Building for debugging...
[0/3] Write swift-version-5BDAB9E9C0126B9D.txt
Build of product 'swift-openapi-generator' complete! (0.17s)
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateCommandModels/plugin.swift:8:52: warning: 'path' is deprecated: renamed to 'url'
6 | guard let target = target as? SourceModuleTarget else { return [] }
7 |
8 | let jsonSources = target.sourceFiles.map(\.path).filter { $0.extension == "json" }
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
9 |
10 | guard jsonSources.count > 0 else { return [] }
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateCommandModels/plugin.swift:8:70: warning: 'extension' is deprecated: Use `URL` type instead of `Path`.
6 | guard let target = target as? SourceModuleTarget else { return [] }
7 |
8 | let jsonSources = target.sourceFiles.map(\.path).filter { $0.extension == "json" }
| `- warning: 'extension' is deprecated: Use `URL` type instead of `Path`.
9 |
10 | guard jsonSources.count > 0 else { return [] }
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateCommandModels/plugin.swift:12:34: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL'
10 | guard jsonSources.count > 0 else { return [] }
11 |
12 | let outputPath = context.pluginWorkDirectory.appending("Commands.swift")
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL'
| `- note: use 'pluginWorkDirectoryURL' instead
13 |
14 | return [
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateCommandModels/plugin.swift:12:54: warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
10 | guard jsonSources.count > 0 else { return [] }
11 |
12 | let outputPath = context.pluginWorkDirectory.appending("Commands.swift")
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
13 |
14 | return [
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateCommandModels/plugin.swift:15:14: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
13 |
14 | return [
15 | .buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
16 | displayName: "Generating Command Models from dumped JSON help",
17 | executable: try context.tool(named: "generate-command-models").path,
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateCommandModels/plugin.swift:17:80: warning: 'path' is deprecated: renamed to 'url'
15 | .buildCommand(
16 | displayName: "Generating Command Models from dumped JSON help",
17 | executable: try context.tool(named: "generate-command-models").path,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
18 | arguments: ["--output-file", outputPath] + jsonSources,
19 | inputFiles: jsonSources,
[1/1] Compiling plugin GenerateCommandModels
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:10:85: warning: 'path' is deprecated: renamed to 'url'
8 | ) async throws {
9 | // Locate generation tool.
10 | let generationToolFile = try context.tool(named: "generate-docs-reference").path
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
11 |
12 | // Create an extractor to extract plugin-only arguments from the `arguments`
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:55:48: warning: 'path' is deprecated: renamed to 'url'
53 |
54 | // Get the artifacts name.
55 | let executableName = builtArtifact.path.lastComponent
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
56 |
57 | print("Generating docs reference for \(executableName)...")
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:55:53: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
53 |
54 | // Get the artifacts name.
55 | let executableName = builtArtifact.path.lastComponent
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
56 |
57 | print("Generating docs reference for \(executableName)...")
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:59:46: warning: 'directory' is deprecated: renamed to 'directoryURL'
57 | print("Generating docs reference for \(executableName)...")
58 |
59 | let outputFile = context.package.directory
| |- warning: 'directory' is deprecated: renamed to 'directoryURL'
| `- note: use 'directoryURL' instead
60 | .appending("Documentation/SwiftlyDocs.docc/swiftly-cli-reference.md")
61 |
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:60:18: warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
58 |
59 | let outputFile = context.package.directory
60 | .appending("Documentation/SwiftlyDocs.docc/swiftly-cli-reference.md")
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
61 |
62 | // Create generation tool arguments.
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:64:31: warning: 'path' is deprecated: renamed to 'url'
62 | // Create generation tool arguments.
63 | var generationToolArguments = [
64 | builtArtifact.path.string,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
65 | "--output-file",
66 | outputFile.string,
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:64:36: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
62 | // Create generation tool arguments.
63 | var generationToolArguments = [
64 | builtArtifact.path.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
65 | "--output-file",
66 | outputFile.string,
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:66:28: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
64 | builtArtifact.path.string,
65 | "--output-file",
66 | outputFile.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
67 | ]
68 | generationToolArguments.append(
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReference.swift:73:50: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
71 | // Spawn generation tool.
72 | try generationToolFile.exec(arguments: generationToolArguments)
73 | print("Generated docs reference in '\(outputFile)'")
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
74 | }
75 | }
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReferenceError.swift:26:21: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
24 | case let .subprocessFailedNonZeroExit(tool, exitCode):
25 | return """
26 | '\(tool.lastComponent)' invocation failed with a nonzero exit code: \
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
27 | '\(exitCode)'.
28 | """
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/GenerateDocsReferenceError.swift:31:21: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
29 | case let .subprocessFailedError(tool, error):
30 | return """
31 | '\(tool.lastComponent)' invocation failed: \
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
32 | '\(error.localizedDescription)'
33 | """
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/PackagePlugin+Helpers.swift:32:30: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
30 | do {
31 | try FileManager.default.createDirectory(
32 | atPath: self.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
33 | withIntermediateDirectories: true
34 | )
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/PackagePlugin+Helpers.swift:43:63: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
41 | do {
42 | let process = Process()
43 | process.executableURL = URL(fileURLWithPath: self.string)
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
44 | process.arguments = arguments
45 | try process.run()
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/PackagePlugin+Helpers.swift:66:38: warning: 'path' is deprecated: renamed to 'url'
64 | .package
65 | .products
66 | .first { $0.name == self.path.lastComponent }
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
67 | }
68 | }
/Users/admin/builder/spi-builder-workspace/Plugins/GenerateDocsReference/PackagePlugin+Helpers.swift:66:43: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
64 | .package
65 | .products
66 | .first { $0.name == self.path.lastComponent }
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
67 | }
68 | }
[2/2] Compiling plugin GenerateDocsReference
[3/3] Compiling plugin GenerateManual
[4/4] Compiling plugin OpenAPIGenerator
[5/5] Compiling plugin OpenAPIGeneratorCommand
[6/6] Compiling plugin Swift-DocC
[7/7] Compiling plugin Swift-DocC Preview
Building for debugging...
[7/494] Write sources
[13/494] Write test-swiftly-entitlement.plist
[13/494] Write swiftly-entitlement.plist
[15/494] Copying PrivacyInfo.xcprivacy
[17/494] Write generate-command-models-entitlement.plist
[17/494] Write generate-docs-reference-entitlement.plist
[19/494] Write build-swiftly-release-entitlement.plist
[20/494] Write sources
[48/494] Compiling TSCclibc process.c
[49/494] Compiling CSystem shims.c
[49/494] Compiling TSCclibc libc.c
[51/494] Compiling _NumericsShims _NumericsShims.c
[52/494] Compiling CNIOWindows WSAStartup.c
[53/494] Compiling CNIOWindows shim.c
[54/494] Compiling CNIOWASI CNIOWASI.c
[55/494] Compiling CNIOLinux shim.c
[56/494] Compiling CNIOLinux liburing_shims.c
[57/494] Compiling CNIOExtrasZlib empty.c
[58/494] Write swift-version-5BDAB9E9C0126B9D.txt
[59/494] Compiling _AtomicsShims.c
[60/494] Compiling TSCclibc strerror.c
[61/494] Compiling CNIOLLHTTP c_nio_http.c
[62/502] Compiling CNIOLLHTTP c_nio_llhttp.c
Swift OpenAPI Generator is running with the following configuration:
- OpenAPI document path: /Users/admin/builder/spi-builder-workspace/Sources/SwiftlyDownloadAPI/openapi.yaml
- Configuration path: /Users/admin/builder/spi-builder-workspace/Sources/SwiftlyDownloadAPI/openapi-generator-config.yaml
- Generator modes: types, client
- Access modifier: public
- Naming strategy: idiomatic
- Name overrides: <none>
- Feature flags: <none>
- Output file names: Types.swift, Client.swift
- Output directory: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftlyDownloadAPI/destination/OpenAPIGenerator/GeneratedSources
- Diagnostics output path: <none - logs to stderr>
- Current directory: /Users/admin/builder/spi-builder-workspace
- Plugin source: build
- Is dry run: false
- Additional imports: <none>
- Additional file comments: <none>
Writing data to file Client.swift...
Writing data to file Types.swift...
Writing data to file Server.swift...
[63/502] Running swift-openapi-generator
[64/502] Compiling CNIOLLHTTP c_nio_api.c
Swift OpenAPI Generator is running with the following configuration:
- OpenAPI document path: /Users/admin/builder/spi-builder-workspace/Sources/SwiftlyWebsiteAPI/openapi.yaml
- Configuration path: /Users/admin/builder/spi-builder-workspace/Sources/SwiftlyWebsiteAPI/openapi-generator-config.yaml
- Generator modes: types, client
- Access modifier: public
- Naming strategy: idiomatic
- Name overrides: <none>
- Feature flags: <none>
- Output file names: Types.swift, Client.swift
- Output directory: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftlyWebsiteAPI/destination/OpenAPIGenerator/GeneratedSources
- Diagnostics output path: <none - logs to stderr>
- Current directory: /Users/admin/builder/spi-builder-workspace
- Plugin source: build
- Is dry run: false
- Additional imports: <none>
- Additional file comments: <none>
Writing data to file Client.swift...
Writing data to file Types.swift...
Writing data to file Server.swift...
[65/502] Running swift-openapi-generator
[66/532] Generating Command Models from dumped JSON help
[67/561] Compiling CNIODarwin shim.c
[68/570] Compiling CNIOBoringSSLShims shims.c
[69/570] Write sources
[72/570] Compiling fiat_p256_adx_sqr.S
[74/570] Emitting module _NIOBase64
[75/570] Compiling _NIOBase64 Base64.swift
[75/570] Compiling fiat_p256_adx_mul.S
[76/570] Compiling fiat_curve25519_adx_square.S
[77/570] Compiling fiat_curve25519_adx_mul.S
[79/570] Emitting module SwiftlyDocs
[80/570] Compiling SwiftlyDocs EmptyFile.swift
[81/570] Compiling _NIODataStructures PriorityQueue.swift
[82/570] Compiling RealModule Float80+Real.swift
[83/570] Compiling RealModule Real.swift
[84/571] Compiling RealModule RealFunctions.swift
[85/571] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[86/571] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[87/572] Compiling RealModule Float16+Real.swift
[88/572] Compiling RealModule Float+Real.swift
[89/572] Compiling RealModule AlgebraicField.swift
[90/572] Compiling RealModule AugmentedArithmetic.swift
[91/572] Emitting module RealModule
[92/572] Compiling RealModule ElementaryFunctions.swift
[93/572] Compiling RealModule Double+Real.swift
[94/572] Compiling RealModule ApproximateEquality.swift
[95/572] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[96/572] Compiling InternalCollectionsUtilities Debugging.swift
[97/572] Compiling InternalCollectionsUtilities Descriptions.swift
[98/572] Emitting module _NIODataStructures
[99/572] Compiling _NIODataStructures _TinyArray.swift
[100/572] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[101/572] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[102/572] Compiling InternalCollectionsUtilities _SortedCollection.swift
[103/572] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[104/572] Compiling InternalCollectionsUtilities UInt+reversed.swift
[105/572] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[106/572] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[107/572] Emitting module InternalCollectionsUtilities
[108/572] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[109/572] Compiling InternalCollectionsUtilities Integer rank.swift
[110/572] Emitting module TSCLibc
[111/572] Compiling TSCLibc libc.swift
[112/572] Compiling Logging MetadataProvider.swift
[113/572] Compiling SystemPackage RawBuffer.swift
[114/572] Compiling SystemPackage Syscalls.swift
[115/572] Compiling SystemPackage WindowsSyscallAdapters.swift
[116/591] Compiling HTTPTypes NIOLock.swift
[117/591] Compiling HTTPTypes ISOLatin1String.swift
[118/591] Compiling HTTPTypes HTTPField.swift
[119/591] Compiling HTTPTypes HTTPResponse.swift
[120/591] Compiling _NIODataStructures Heap.swift
[121/591] Compiling DequeModule Deque+Descriptions.swift
[122/591] Compiling DequeModule Deque._UnsafeHandle.swift
[123/591] Compiling DequeModule Deque.swift
[124/591] Compiling SystemPackage Constants.swift
[125/591] Compiling SystemPackage Exports.swift
[126/591] Compiling SystemPackage Mocking.swift
[127/591] Compiling SystemPackage FilePathTempPosix.swift
[128/591] Compiling SystemPackage FilePathTempWindows.swift
[129/591] Compiling SystemPackage FilePathWindows.swift
[130/591] Compiling DequeModule _DequeBufferHeader.swift
[131/591] Compiling DequeModule _DequeSlot.swift
[132/633] Compiling HTTPTypes HTTPFieldName.swift
[133/633] Compiling HTTPTypes HTTPRequest.swift
[134/633] Emitting module HTTPTypes
[135/633] Compiling HTTPTypes HTTPParsedFields.swift
[136/633] Compiling HTTPTypes HTTPFields.swift
[137/633] Emitting module SystemPackage
[138/633] Compiling Logging Locks.swift
[139/633] Emitting module Logging
[140/633] Compiling Logging LogHandler.swift
[141/633] Compiling Logging Logging.swift
[142/633] Compiling DequeModule _UnsafeWrappedBuffer.swift
[143/633] Compiling TSCBasic Result.swift
[144/633] Compiling TSCBasic SortedArray.swift
[145/633] Compiling TSCBasic StringConversions.swift
[146/633] Compiling TSCBasic Path.swift
[147/633] Compiling TSCBasic PathShims.swift
[148/633] Compiling TSCBasic Process.swift
[149/633] Compiling TSCBasic GraphAlgorithms.swift
[150/633] Compiling TSCBasic HashAlgorithms.swift
[151/633] Compiling TSCBasic JSON.swift
[152/633] Compiling TSCBasic CStringArray.swift
[153/633] Compiling TSCBasic CacheableSequence.swift
[154/633] Compiling TSCBasic DeltaAlgorithm.swift
[155/633] Compiling TSCBasic Await.swift
[156/633] Compiling TSCBasic Base64URL.swift
[157/633] Compiling TSCBasic ByteString.swift
[158/633] Compiling TSCBasic DiagnosticsEngine.swift
[159/633] Compiling TSCBasic DictionaryExtensions.swift
[160/633] Compiling TSCBasic DictionaryLiteralExtensions.swift
[161/696] Compiling DequeModule _DequeBuffer.swift
[162/696] Compiling OpenAPIRuntime CodableExtensions.swift
[163/696] Compiling OpenAPIRuntime Configuration.swift
[164/696] Compiling OpenAPIRuntime ClientError.swift
[165/696] Compiling OpenAPIRuntime CodingErrors.swift
[166/696] Compiling OpenAPIRuntime UndocumentedPayload.swift
[167/696] Compiling OpenAPIRuntime WarningSuppressingAnnotations.swift
[168/696] Compiling OpenAPIRuntime URLExtensions.swift
[169/696] Compiling OpenAPIRuntime Deprecated.swift
[170/696] Compiling OpenAPIRuntime RuntimeError.swift
[171/696] Compiling OpenAPIRuntime ServerError.swift
[172/696] Compiling OpenAPIRuntime JSONLinesDecoding.swift
[173/696] Compiling OpenAPIRuntime PrettyStringConvertible.swift
[174/696] Emitting module DequeModule
[174/696] Compiling tls_method.cc
[175/696] Compiling tls13_client.cc
[175/696] Compiling tls13_enc.cc
[176/696] Compiling tls13_server.cc
[178/696] Compiling tls_record.cc
[179/696] Compiling tls13_both.cc
[180/696] Compiling t1_enc.cc
[181/696] Compiling ssl_x509.cc
[182/696] Compiling ssl_stat.cc
[183/696] Compiling ssl_transcript.cc
[184/696] Compiling ssl_versions.cc
[185/696] Compiling ssl_privkey.cc
[186/696] Compiling ssl_session.cc
[187/696] Compiling ssl_key_share.cc
[188/696] Compiling ssl_lib.cc
[189/696] Compiling ssl_file.cc
[190/696] Compiling ssl_cipher.cc
[191/696] Compiling ssl_buffer.cc
[192/696] Compiling ssl_credential.cc
[193/696] Compiling ssl_cert.cc
[194/696] Compiling ssl_asn1.cc
[196/696] Emitting module TSCBasic
[196/700] Compiling ssl_aead_ctx.cc
[197/700] Compiling s3_pkt.cc
[198/700] Compiling s3_lib.cc
[199/700] Compiling s3_both.cc
[200/700] Compiling handshake.cc
[201/700] Compiling handshake_server.cc
[202/700] Compiling handshake_client.cc
[203/700] Compiling handoff.cc
[205/700] Compiling OpenAPIRuntime URICoderConfiguration.swift
[206/700] Compiling OpenAPIRuntime URIEncodedNode.swift
[207/700] Compiling OpenAPIRuntime URIParsedTypes.swift
[208/700] Compiling OpenAPIRuntime JSONLinesEncoding.swift
[209/700] Compiling OpenAPIRuntime JSONSequenceDecoding.swift
[210/700] Emitting module OpenAPIRuntime
[218/706] Compiling OpenAPIRuntime Base64EncodedData.swift
[219/706] Compiling OpenAPIRuntime ByteUtilities.swift
[220/706] Compiling OpenAPIRuntime ContentDisposition.swift
[221/706] Compiling OpenAPIRuntime CopyOnWriteBox.swift
[222/706] Compiling OpenAPIRuntime Converter+Server.swift
[223/706] Compiling OpenAPIRuntime Converter.swift
[224/706] Compiling OpenAPIRuntime CurrencyExtensions.swift
[225/706] Compiling OpenAPIRuntime ErrorExtensions.swift
[226/706] Compiling OpenAPIRuntime FoundationExtensions.swift
[227/706] Compiling OpenAPIRuntime ParameterStyles.swift
[228/706] Compiling OpenAPIRuntime ServerVariable.swift
[229/706] Compiling OpenAPIRuntime ClientTransport.swift
[230/706] Compiling OpenAPIRuntime CurrencyTypes.swift
[231/706] Compiling OpenAPIRuntime ErrorHandlingMiddleware.swift
[232/706] Compiling OpenAPIRuntime HTTPBody.swift
[233/706] Compiling OpenAPIRuntime ServerTransport.swift
[234/706] Compiling OpenAPIRuntime UniversalClient.swift
[235/706] Compiling OpenAPIRuntime UniversalServer.swift
[235/706] Compiling encrypted_client_hello.cc
[237/706] Compiling OpenAPIRuntime JSONSequenceEncoding.swift
[238/706] Compiling OpenAPIRuntime ServerSentEvents.swift
[239/706] Compiling OpenAPIRuntime ServerSentEventsDecoding.swift
[240/706] Compiling OpenAPIRuntime ServerSentEventsEncoding.swift
[241/706] Compiling TSCBasic Thread.swift
[242/706] Compiling TSCBasic Tuple.swift
[243/706] Compiling TSCBasic WritableByteStream.swift
[244/706] Compiling TSCBasic misc.swift
[244/706] Compiling extensions.cc
[251/706] Compiling OpenAPIRuntime Converter+Client.swift
[252/706] Compiling OpenAPIRuntime Converter+Common.swift
[253/706] Compiling OpenAPIRuntime Acceptable.swift
[258/706] Compiling OpenAPIRuntime OpenAPIMIMEType.swift
[259/706] Compiling OpenAPIRuntime OpenAPIValue.swift
[259/706] Compiling md5-x86_64-linux.S
[261/706] Compiling OpenAPIRuntime URIDecoder.swift
[262/706] Compiling OpenAPIRuntime URIValueFromNodeDecoder+Keyed.swift
[263/706] Compiling OpenAPIRuntime URIValueFromNodeDecoder+Single.swift
[264/706] Compiling OpenAPIRuntime URIValueFromNodeDecoder+Unkeyed.swift
[265/706] Compiling OpenAPIRuntime URIValueFromNodeDecoder.swift
[266/706] Compiling OpenAPIRuntime URIEncoder.swift
[267/706] Compiling OpenAPIRuntime MultipartRawPartsToFramesSequence.swift
[268/706] Compiling OpenAPIRuntime MultipartValidation.swift
[269/706] Compiling OpenAPIRuntime OpenAPIMIMEType+Multipart.swift
[270/706] Compiling OpenAPIRuntime URICodeCodingKey.swift
[277/706] Compiling OpenAPIRuntime MultipartFramesToRawPartsSequence.swift
[278/706] Compiling OpenAPIRuntime MultipartInternalTypes.swift
[279/706] Compiling OpenAPIRuntime MultipartPublicTypes.swift
[280/706] Compiling OpenAPIRuntime MultipartPublicTypesExtensions.swift
[287/706] Compiling dtls_record.cc
[288/706] Compiling md5-x86_64-apple.S
[289/706] Compiling md5-586-linux.S
[302/706] Compiling md5-586-apple.S
[303/706] Compiling chacha20_poly1305_x86_64-linux.S
[304/706] Compiling dtls_method.cc
[305/706] Compiling chacha20_poly1305_x86_64-apple.S
[306/706] Compiling d1_srtp.cc
[307/706] Compiling chacha20_poly1305_armv8-win.S
[323/706] Compiling d1_pkt.cc
[324/706] Compiling chacha20_poly1305_armv8-linux.S
[325/706] Compiling chacha-x86_64-linux.S
[326/706] Compiling chacha20_poly1305_armv8-apple.S
[327/706] Compiling d1_lib.cc
[328/706] Compiling chacha-x86_64-apple.S
[329/706] Compiling chacha-x86-linux.S
[330/706] Compiling chacha-x86-apple.S
[331/706] Compiling chacha-armv8-win.S
[332/706] Compiling bio_ssl.cc
[333/706] Compiling chacha-armv8-linux.S
[334/706] Compiling err_data.cc
[335/706] Compiling chacha-armv4-linux.S
[336/706] Compiling chacha-armv8-apple.S
[337/706] Compiling aes128gcmsiv-x86_64-apple.S
[338/706] Compiling aes128gcmsiv-x86_64-linux.S
[339/706] Compiling x86_64-mont5-linux.S
[340/706] Compiling x86_64-mont5-apple.S
[341/706] Compiling x86_64-mont-linux.S
[342/706] Compiling x86_64-mont-apple.S
[343/706] Compiling x86-mont-linux.S
[344/706] Compiling d1_both.cc
[345/707] Compiling x86-mont-apple.S
[346/714] Compiling vpaes-x86_64-linux.S
[347/721] Compiling vpaes-x86_64-apple.S
[348/742] Compiling vpaes-x86-apple.S
[349/742] Compiling vpaes-x86-linux.S
[350/742] Compiling vpaes-armv8-win.S
[351/742] Compiling vpaes-armv8-linux.S
[352/742] Compiling vpaes-armv8-apple.S
[353/742] Compiling vpaes-armv7-linux.S
[354/742] Compiling sha512-x86_64-linux.S
[355/742] Compiling sha512-x86_64-apple.S
[356/742] Compiling sha512-armv8-win.S
[357/742] Compiling sha512-armv8-linux.S
[358/742] Compiling sha512-armv4-linux.S
[359/742] Compiling sha512-armv8-apple.S
[360/742] Compiling sha512-586-linux.S
[361/742] Compiling sha512-586-apple.S
[362/742] Compiling sha256-x86_64-linux.S
[363/742] Compiling sha256-x86_64-apple.S
[364/742] Compiling sha256-armv8-win.S
[365/742] Compiling sha256-armv8-linux.S
[366/742] Compiling sha256-armv4-linux.S
[367/742] Compiling sha256-armv8-apple.S
[368/742] Compiling sha256-586-linux.S
[369/742] Compiling sha256-586-apple.S
[370/742] Compiling sha1-x86_64-linux.S
[371/742] Compiling sha1-x86_64-apple.S
[372/742] Compiling sha1-armv8-linux.S
[373/742] Compiling sha1-armv8-win.S
[374/742] Compiling sha1-armv4-large-linux.S
[375/742] Compiling sha1-586-linux.S
[376/742] Compiling sha1-armv8-apple.S
[377/742] Compiling sha1-586-apple.S
[378/742] Compiling rsaz-avx2-linux.S
[379/742] Compiling rsaz-avx2-apple.S
[380/742] Compiling rdrand-x86_64-linux.S
[381/742] Compiling rdrand-x86_64-apple.S
[382/742] Compiling p256_beeu-x86_64-asm-linux.S
[382/742] Compiling p256_beeu-x86_64-asm-apple.S
[384/742] Compiling p256_beeu-armv8-asm-win.S
[385/742] Compiling p256_beeu-armv8-asm-linux.S
[386/742] Compiling p256_beeu-armv8-asm-apple.S
[387/742] Compiling p256-x86_64-asm-linux.S
[388/742] Compiling p256-armv8-asm-win.S
[388/742] Compiling p256-x86_64-asm-apple.S
[390/742] Compiling p256-armv8-asm-linux.S
[391/742] Compiling ghashv8-armv8-win.S
[392/742] Compiling ghashv8-armv8-linux.S
[393/742] Compiling p256-armv8-asm-apple.S
[394/742] Compiling ghashv8-armv8-apple.S
[395/742] Compiling ghashv8-armv7-linux.S
[396/742] Compiling ghash-x86_64-linux.S
[397/742] Compiling ghash-x86_64-apple.S
[398/742] Compiling ghash-x86-linux.S
[399/742] Compiling ghash-x86-apple.S
[400/742] Compiling ghash-ssse3-x86_64-linux.S
[401/742] Compiling ghash-ssse3-x86_64-apple.S
[402/742] Compiling ghash-ssse3-x86-linux.S
[402/742] Compiling ghash-ssse3-x86-apple.S
[404/742] Compiling ghash-neon-armv8-win.S
[405/742] Compiling ghash-neon-armv8-linux.S
[406/742] Compiling co-586-linux.S
[407/742] Compiling ghash-armv4-linux.S
[408/742] Compiling co-586-apple.S
[409/742] Compiling ghash-neon-armv8-apple.S
[410/742] Compiling bsaes-armv7-linux.S
[411/742] Compiling bn-armv8-win.S
[412/742] Compiling bn-armv8-linux.S
[413/742] Compiling bn-armv8-apple.S
[414/742] Compiling bn-586-linux.S
[415/742] Compiling bn-586-apple.S
[416/742] Compiling armv8-mont-win.S
[417/742] Compiling armv8-mont-linux.S
[418/742] Compiling armv4-mont-linux.S
[419/742] Compiling aesv8-gcm-armv8-win.S
[420/742] Compiling armv8-mont-apple.S
[421/742] Compiling aesv8-gcm-armv8-linux.S
[422/742] Compiling aesv8-armv8-win.S
[423/742] Compiling aesv8-gcm-armv8-apple.S
[424/742] Compiling aesv8-armv8-linux.S
[425/742] Compiling aesv8-armv7-linux.S
[426/742] Compiling aesv8-armv8-apple.S
[427/742] Compiling aesni-x86_64-linux.S
[428/742] Compiling aesni-x86-linux.S
[429/742] Compiling aesni-x86_64-apple.S
[430/742] Compiling aesni-x86-apple.S
[431/742] Compiling aesni-gcm-x86_64-linux.S
[432/742] Compiling aesni-gcm-x86_64-apple.S
[433/742] Compiling aes-gcm-avx2-x86_64-linux.S
[434/742] Compiling aes-gcm-avx2-x86_64-apple.S
[435/742] Compiling aes-gcm-avx10-x86_64-linux.S
[436/742] Compiling aes-gcm-avx10-x86_64-apple.S
[438/742] Compiling OpenAPIRuntime URIValueToNodeEncoder+Keyed.swift
[439/742] Compiling OpenAPIRuntime URIValueToNodeEncoder+Single.swift
[440/742] Compiling OpenAPIRuntime URIValueToNodeEncoder+Unkeyed.swift
[441/742] Compiling OpenAPIRuntime URIValueToNodeEncoder.swift
[442/742] Compiling OpenAPIRuntime URIParser.swift
[443/742] Compiling OpenAPIRuntime URISerializer.swift
[444/742] Compiling TSCUtility URL.swift
[445/742] Compiling TSCUtility Verbosity.swift
[446/742] Compiling TSCUtility Version.swift
[446/745] Compiling x_sig.cc
[447/745] Compiling x_val.cc
[448/745] Compiling x_req.cc
[449/745] Compiling x_spki.cc
[450/745] Compiling x_pubkey.cc
[451/745] Compiling x_name.cc
[452/745] Compiling x_x509a.cc
[454/745] Compiling TSCUtility FSWatch.swift
[455/745] Compiling TSCUtility FloatingPointExtensions.swift
[456/745] Compiling TSCUtility Git.swift
[457/745] Compiling TSCUtility Hex.swift
[457/745] Compiling x_x509.cc
[458/755] Compiling x_exten.cc
[460/755] Emitting module TSCUtility
[461/755] Compiling TSCUtility PolymorphicCodable.swift
[462/755] Compiling TSCUtility ProgressAnimation.swift
[463/755] Compiling TSCUtility SerializedDiagnostics.swift
[464/755] Compiling TSCUtility SimplePersistence.swift
[465/755] Compiling TSCUtility Versioning.swift
[466/755] Compiling TSCUtility dlopen.swift
[467/755] Compiling TSCUtility misc.swift
[468/755] Compiling TSCUtility Archiver.swift
[469/755] Compiling TSCUtility ArgumentParser.swift
[470/755] Compiling TSCUtility ArgumentParserShellCompletion.swift
[471/755] Compiling TSCUtility Array+Extensions.swift
[471/755] Compiling x509spki.cc
[472/755] Compiling x_algor.cc
[473/755] Compiling x_attrib.cc
[474/755] Compiling x_all.cc
[475/755] Compiling x_crl.cc
[476/755] Compiling x509rset.cc
[478/755] Compiling TSCUtility BuildFlags.swift
[479/755] Compiling TSCUtility CollectionExtensions.swift
[480/755] Compiling TSCUtility Context.swift
[481/755] Compiling TSCUtility Diagnostics.swift
[482/755] Compiling TSCUtility OSLog.swift
[483/755] Compiling TSCUtility OrderedZip.swift
[484/755] Compiling TSCUtility PkgConfig.swift
[485/755] Compiling TSCUtility Platform.swift
[486/755] Compiling TSCUtility Bits.swift
[487/755] Compiling TSCUtility Bitstream.swift
[488/755] Compiling TSCUtility BitstreamReader.swift
[489/755] Compiling TSCUtility BitstreamWriter.swift
[489/755] Compiling x509name.cc
[491/755] Compiling TSCUtility IndexStore.swift
[492/755] Compiling TSCUtility InterruptHandler.swift
[493/755] Compiling TSCUtility JSONMessageStreamingParser.swift
[494/755] Compiling TSCUtility Netrc.swift
[495/755] Compiling TSCUtility StringExtensions.swift
[496/755] Compiling TSCUtility StringMangling.swift
[497/755] Compiling TSCUtility Tracing.swift
[498/755] Compiling TSCUtility Triple.swift
[498/755] Compiling x509cset.cc
[499/755] Compiling x509_vpm.cc
[500/755] Compiling x509_txt.cc
[501/755] Compiling x509_v3.cc
[502/755] Compiling x509_trs.cc
[503/755] Compiling x509_vfy.cc
[504/755] Compiling x509_set.cc
[505/755] Compiling x509_req.cc
[506/755] Compiling x509_def.cc
[507/755] Compiling x509_obj.cc
[508/755] Compiling x509_ext.cc
[509/755] Compiling x509_d2.cc
[510/755] Compiling x509_lu.cc
[511/755] Compiling x509_cmp.cc
[512/755] Compiling x509_att.cc
[513/755] Compiling x509.cc
[514/755] Compiling v3_prn.cc
[515/755] Compiling v3_skey.cc
[516/755] Compiling v3_pmaps.cc
[517/755] Compiling v3_purp.cc
[518/755] Compiling v3_utl.cc
[519/755] Compiling v3_pcons.cc
[520/755] Compiling v3_ocsp.cc
[521/755] Compiling v3_ncons.cc
[522/755] Compiling v3_int.cc
[523/755] Compiling v3_lib.cc
[524/755] Compiling v3_ia5.cc
[525/755] Compiling v3_info.cc
[526/755] Compiling v3_genn.cc
[527/755] Compiling v3_extku.cc
[528/755] Compiling v3_enum.cc
[529/755] Compiling v3_crld.cc
[530/755] Compiling v3_conf.cc
[531/755] Compiling v3_cpols.cc
[532/755] Compiling v3_bcons.cc
[533/755] Compiling v3_bitst.cc
[534/755] Compiling v3_akeya.cc
[535/755] Compiling v3_alt.cc
[536/755] Compiling v3_akey.cc
[537/755] Compiling t_x509a.cc
[538/755] Compiling i2d_pr.cc
[539/755] Compiling t_req.cc
[540/755] Compiling t_crl.cc
[541/755] Compiling t_x509.cc
[542/755] Compiling rsa_pss.cc
[543/755] Compiling name_print.cc
[544/755] Compiling policy.cc
[546/755] Compiling SwiftlyDownloadAPI Servers+Extensions.swift
[547/755] Compiling SwiftlyDownloadAPI Server.swift
[548/755] Emitting module SwiftlyDownloadAPI
[549/755] Compiling SwiftlyDownloadAPI Types.swift
[550/755] Compiling SwiftlyDownloadAPI Client.swift
[550/755] Compiling by_file.cc
[551/755] Compiling by_dir.cc
[552/755] Compiling voprf.cc
[553/755] Compiling algorithm.cc
[554/755] Compiling a_verify.cc
[555/755] Compiling a_digest.cc
[556/755] Compiling asn1_gen.cc
[557/755] Compiling a_sign.cc
[558/755] Compiling trust_token.cc
[559/755] Compiling pmbtoken.cc
[559/755] Compiling thread_win.cc
[561/755] Compiling thread_pthread.cc
[562/755] Compiling thread.cc
[563/755] Compiling thread_none.cc
[564/755] Compiling stack.cc
[565/755] Compiling siphash.cc
[566/755] Compiling sha512.cc
[567/755] Compiling sha256.cc
[568/755] Compiling slhdsa.cc
[569/755] Compiling spake2plus.cc
[571/755] Compiling SwiftlyWebsiteAPI Server.swift
[572/755] Emitting module SwiftlyWebsiteAPI
[573/755] Compiling SwiftlyWebsiteAPI Client.swift
[574/755] Compiling SwiftlyWebsiteAPI Servers+Extensions.swift
[575/755] Compiling SwiftlyWebsiteAPI Types.swift
[575/755] Compiling sha1.cc
[576/755] Compiling rsa_extra.cc
[577/755] Compiling rsa_print.cc
[578/755] Compiling rsa_crypt.cc
[579/755] Compiling rc4.cc
[580/755] Compiling refcount.cc
[581/755] Compiling windows.cc
[582/755] Compiling urandom.cc
[583/755] Compiling trusty.cc
[584/755] Compiling rsa_asn1.cc
[585/755] Compiling poly1305_arm_asm.S
[586/755] Compiling rand.cc
[587/755] Compiling passive.cc
[588/755] Compiling ios.cc
[589/755] Compiling getentropy.cc
[590/755] Compiling deterministic.cc
[591/755] Compiling forkunsafe.cc
[592/755] Compiling fork_detect.cc
[593/755] Compiling poly1305_vec.cc
[594/755] Compiling poly1305_arm.cc
[595/755] Compiling poly1305.cc
[596/755] Compiling pool.cc
[597/755] Compiling pkcs8.cc
[598/755] Compiling pkcs8_x509.cc
[599/755] Compiling p5_pbev2.cc
[600/755] Compiling pkcs7.cc
[601/755] Compiling pem_xaux.cc
[602/755] Compiling pkcs7_x509.cc
[603/755] Compiling pem_x509.cc
[604/755] Compiling pem_pkey.cc
[605/755] Compiling pem_pk8.cc
[606/755] Compiling pem_oth.cc
[607/755] Compiling mlkem.cc
[608/755] Compiling mldsa.cc
[609/755] Compiling obj_xref.cc
[610/755] Compiling pem_lib.cc
[611/755] Compiling pem_info.cc
[612/755] Compiling mem.cc
[613/755] Compiling pem_all.cc
[614/755] Compiling poly_rq_mul.S
[615/755] Compiling md5.cc
[616/755] Compiling fips_shared_support.cc
[617/755] Compiling md4.cc
[618/755] Compiling obj.cc
[619/755] Compiling lhash.cc
[620/755] Compiling ex_data.cc
[621/755] Compiling sign.cc
[622/755] Compiling kyber.cc
[623/755] Compiling scrypt.cc
[624/755] Compiling print.cc
[625/755] Compiling pbkdf.cc
[626/755] Compiling hrss.cc
[627/755] Compiling hpke.cc
[628/755] Compiling p_x25519_asn1.cc
[629/755] Compiling p_x25519.cc
[630/755] Compiling p_ed25519.cc
[631/755] Compiling p_ec.cc
[632/755] Compiling p_rsa_asn1.cc
[633/755] Compiling p_hkdf.cc
[634/755] Compiling p_rsa.cc
[635/755] Compiling p_ed25519_asn1.cc
[636/755] Compiling p_ec_asn1.cc
[637/755] Compiling p_dh_asn1.cc
[638/755] Compiling p_dh.cc
[639/755] Compiling p_dsa_asn1.cc
[640/755] Compiling evp_ctx.cc
[641/755] Compiling engine.cc
[641/755] Compiling evp.cc
[643/755] Compiling err.cc
[644/755] Compiling evp_asn1.cc
[645/755] Compiling ecdh.cc
[646/755] Compiling ecdsa_asn1.cc
[647/755] Compiling hash_to_curve.cc
[648/755] Compiling ec_derive.cc
[649/755] Compiling dsa.cc
[650/755] Compiling ec_asn1.cc
[651/755] Compiling dsa_asn1.cc
[652/755] Compiling x25519-asm-arm.S
[653/755] Compiling params.cc
[654/755] Compiling digest_extra.cc
[655/755] Compiling des.cc
[656/755] Compiling bcm.cc
[657/755] Compiling curve25519_64_adx.cc
[658/755] Compiling dh_asn1.cc
[659/755] Compiling spake25519.cc
[660/755] Compiling crypto.cc
[661/755] Compiling cpu_intel.cc
[662/755] Compiling cpu_arm_linux.cc
[662/755] Compiling curve25519.cc
[664/755] Compiling cpu_arm_freebsd.cc
[665/755] Compiling cpu_aarch64_win.cc
[666/755] Compiling cpu_aarch64_sysreg.cc
[667/755] Compiling cpu_aarch64_openbsd.cc
[668/755] Compiling cpu_aarch64_linux.cc
[669/755] Compiling cpu_aarch64_fuchsia.cc
[670/755] Compiling cpu_aarch64_apple.cc
[671/755] Compiling get_cipher.cc
[672/755] Compiling conf.cc
[673/755] Compiling tls_cbc.cc
[674/755] Compiling e_tls.cc
[675/755] Compiling e_rc4.cc
[676/755] Compiling e_null.cc
[677/755] Compiling e_rc2.cc
[678/755] Compiling e_des.cc
[679/755] Compiling e_chacha20poly1305.cc
[680/755] Compiling e_aesgcmsiv.cc
[681/755] Compiling derive_key.cc
[682/755] Compiling e_aesctrhmac.cc
[683/755] Compiling chacha.cc
[684/755] Compiling unicode.cc
[685/755] Compiling buf.cc
[686/755] Compiling ber.cc
[687/755] Compiling cbs.cc
[688/755] Compiling cbb.cc
[689/755] Compiling asn1_compat.cc
[690/755] Compiling blake2.cc
[691/755] Compiling socket_helper.cc
[692/755] Compiling bn_asn1.cc
[693/755] Compiling convert.cc
[694/755] Compiling socket.cc
[695/755] Compiling printf.cc
[696/755] Compiling pair.cc
[697/755] Compiling hexdump.cc
[698/755] Compiling file.cc
[699/755] Compiling fd.cc
[700/755] Compiling errno.cc
[701/755] Compiling connect.cc
[702/755] Compiling bio_mem.cc
[703/755] Compiling base64.cc
[704/755] Compiling bio.cc
[705/755] Compiling tasn_typ.cc
[706/755] Compiling tasn_fre.cc
[707/755] Compiling tasn_enc.cc
[708/755] Compiling tasn_utl.cc
[709/755] Compiling tasn_new.cc
[710/755] Compiling posix_time.cc
[711/755] Compiling f_string.cc
[712/755] Compiling f_int.cc
[713/755] Compiling asn_pack.cc
[714/755] Compiling tasn_dec.cc
[715/755] Compiling asn1_par.cc
[716/755] Compiling asn1_lib.cc
[717/755] Compiling a_utctm.cc
[718/755] Compiling a_type.cc
[719/755] Compiling a_octet.cc
[720/755] Compiling a_time.cc
[721/755] Compiling a_strnid.cc
[722/755] Compiling a_strex.cc
[723/755] Compiling a_object.cc
[724/755] Compiling a_mbstr.cc
[725/755] Compiling a_int.cc
[725/755] Write sources
[729/755] Compiling CAsyncHTTPClient CAsyncHTTPClient.c
[730/755] Compiling a_i2d_fp.cc
[730/755] Write sources
[733/755] Compiling a_dup.cc
[734/755] Compiling a_d2i_fp.cc
[735/772] Compiling a_bitstr.cc
[736/786] Compiling a_gentm.cc
[737/802] Compiling a_bool.cc
[739/802] Compiling Algorithms Suffix.swift
[740/802] Compiling Algorithms Trim.swift
[741/804] Compiling Algorithms Joined.swift
[742/804] Compiling Algorithms Keyed.swift
[743/804] Compiling Algorithms MinMax.swift
[744/804] Compiling Algorithms Partition.swift
[745/804] Compiling Algorithms Indexed.swift
[746/804] Compiling Algorithms Intersperse.swift
[747/804] Compiling Algorithms Permutations.swift
[748/804] Compiling Algorithms Product.swift
[749/805] Compiling Atomics Unmanaged extensions.swift
[750/805] Compiling Algorithms EitherSequence.swift
[751/805] Compiling Algorithms FirstNonNil.swift
[752/805] Compiling Algorithms FlattenCollection.swift
[753/805] Compiling Algorithms Grouped.swift
[754/805] Compiling ArgumentParserToolInfo ToolInfo.swift
[755/805] Emitting module ArgumentParserToolInfo
[756/805] Compiling Algorithms Unique.swift
[757/805] Compiling Algorithms Windows.swift
[758/805] Compiling Algorithms Compacted.swift
[759/805] Compiling Algorithms Cycle.swift
[760/844] Compiling ArgumentParser Flag.swift
[761/844] Compiling ArgumentParser ParsableArguments.swift
[762/844] Compiling ArgumentParser ZshCompletionsGenerator.swift
[763/844] Compiling ArgumentParser Argument.swift
[764/844] Compiling ArgumentParser ParserError.swift
[765/844] Compiling ArgumentParser ArgumentVisibility.swift
[766/844] Compiling ArgumentParser CompletionKind.swift
[767/844] Compiling ArgumentParser Errors.swift
[768/844] Compiling ArgumentParser SplitArguments.swift
[769/844] Compiling ArgumentParser DumpHelpGenerator.swift
[770/844] Compiling ArgumentParser HelpCommand.swift
[771/844] Compiling ArgumentParser HelpGenerator.swift
[772/844] Compiling ArgumentParser MessageInfo.swift
[773/844] Compiling ArgumentParser UsageGenerator.swift
[774/844] Compiling ArgumentParser OptionGroup.swift
[775/844] Compiling ArgumentParser AsyncParsableCommand.swift
[776/844] Compiling ArgumentParser ArgumentHelp.swift
[777/844] Compiling ArgumentParser CollectionExtensions.swift
[778/844] Compiling ArgumentParser NameSpecification.swift
[779/844] Compiling ArgumentParser Option.swift
[780/844] Compiling ArgumentParser BashCompletionsGenerator.swift
[781/844] Compiling ArgumentParser CompletionsGenerator.swift
[784/844] Compiling ArgumentParser FishCompletionsGenerator.swift
[787/844] Emitting module Atomics
[788/844] Emitting module Algorithms
[788/844] Compiling c-nioatomics.c
[789/844] Compiling c-atomics.c
[791/850] Compiling NIOConcurrencyHelpers lock.swift
[792/850] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[793/850] Compiling NIOConcurrencyHelpers NIOLock.swift
[794/850] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[795/850] Emitting module NIOConcurrencyHelpers
[796/850] Compiling NIOConcurrencyHelpers atomics.swift
[797/858] Emitting module ArgumentParser
[798/883] Compiling ArgumentParser InputOrigin.swift
[799/883] Compiling ArgumentParser Name.swift
[800/883] Compiling ArgumentParser Parsed.swift
[801/883] Compiling ArgumentParser ParsedValues.swift
[802/916] Compiling NIOCore AddressedEnvelope.swift
[803/916] Compiling NIOCore AsyncAwaitSupport.swift
[804/916] Compiling NIOCore AsyncChannel.swift
[805/916] Compiling NIOCore AsyncChannelHandler.swift
[806/916] Compiling NIOCore AsyncChannelInboundStream.swift
[807/916] Compiling NIOCore AsyncChannelOutboundWriter.swift
[808/916] Compiling NIOCore NIOAsyncSequenceProducer.swift
[809/916] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[810/916] Compiling NIOCore NIOAsyncWriter.swift
[811/916] Compiling NIOCore IPProtocol.swift
[812/916] Compiling NIOCore IntegerBitPacking.swift
[813/916] Compiling NIOCore IntegerTypes.swift
[814/916] Compiling NIOCore Interfaces.swift
[815/916] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[816/916] Compiling NIOCore BSDSocketAPI.swift
[817/916] Compiling NIOCore ByteBuffer-aux.swift
[818/916] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[819/916] Compiling NIOCore GlobalSingletons.swift
[820/916] Compiling NIOCore IO.swift
[821/916] Compiling NIOCore IOData.swift
[826/922] Compiling NIOCore Linux.swift
[827/922] Compiling NIOCore MarkedCircularBuffer.swift
[828/922] Compiling NIOCore MulticastChannel.swift
[829/922] Compiling NIOCore NIOAny.swift
[830/922] Compiling NIOCore NIOCloseOnErrorHandler.swift
[831/922] Compiling NIOCore NIOLoopBound.swift
[832/922] Compiling NIOCore EventLoop+SerialExecutor.swift
[833/922] Compiling NIOCore EventLoop.swift
[834/922] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[835/922] Compiling NIOCore EventLoopFuture+Deprecated.swift
[836/922] Compiling NIOCore ConvenienceOptionSupport.swift
[837/922] Compiling NIOCore DeadChannel.swift
[838/922] Compiling NIOCore DispatchQueue+WithFuture.swift
[839/922] Compiling NIOCore EventLoop+Deprecated.swift
[840/922] Compiling NIOCore ByteBuffer-conversions.swift
[841/922] Compiling NIOCore ByteBuffer-core.swift
[842/922] Compiling NIOCore ByteBuffer-hex.swift
[843/922] Compiling NIOCore ByteBuffer-int.swift
[844/922] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[845/922] Compiling NIOCore ByteBuffer-multi-int.swift
[846/922] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[847/922] Compiling NIOCore ByteBuffer-views.swift
[848/922] Compiling NIOCore Codec.swift
[849/922] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[850/922] Compiling NIOCore EventLoopFuture.swift
[851/922] Compiling NIOCore FileDescriptor.swift
[852/922] Compiling NIOCore FileHandle.swift
[866/922] Compiling NIOCore FileRegion.swift
[867/922] Compiling NIOCore SocketOptionProvider.swift
[868/922] Compiling NIOCore SystemCallHelpers.swift
[869/922] Compiling NIOCore TimeAmount+Duration.swift
[870/922] Compiling NIOCore TypeAssistedChannelHandler.swift
[871/922] Compiling NIOCore UniversalBootstrapSupport.swift
[872/922] Compiling NIOCore Utilities.swift
[873/927] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[874/927] Compiling NIOCore NIOScheduledCallback.swift
[875/927] Compiling NIOCore NIOSendable.swift
[876/927] Compiling NIOCore RecvByteBufferAllocator.swift
[877/927] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[878/927] Compiling NIOCore SocketAddresses.swift
[879/927] Compiling NIOCore Channel.swift
[880/927] Compiling NIOCore ChannelHandler.swift
[881/927] Compiling NIOCore ChannelHandlers.swift
[882/927] Compiling NIOCore ChannelInvoker.swift
[883/927] Compiling NIOCore ChannelOption.swift
[884/927] Compiling NIOCore ChannelPipeline.swift
[885/927] Compiling NIOCore CircularBuffer.swift
[886/927] Compiling generate_docs_reference GenerateDocsReference.swift
[887/927] Compiling generate_docs_reference Process+SimpleAPI.swift
[888/927] Emitting module generate_docs_reference
[888/927] Write Objects.LinkFileList
[889/927] Linking generate-docs-reference
[890/927] Applying generate-docs-reference
[892/927] Compiling generate_command_models GenerateCommandModels.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-command-models/GenerateCommandModels.swift:73:13: warning: no 'async' operations occur within 'await' expression
71 | }
72 |
73 | try await allCmds.write(to: URL(fileURLWithPath: self.outputFile), atomically: true, encoding: .utf8)
| `- warning: no 'async' operations occur within 'await' expression
74 | }
75 |
/Users/admin/builder/spi-builder-workspace/Tools/generate-command-models/GenerateCommandModels.swift:184:70: warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
182 | } else if let shortName = arg.names?.filter { $0.kind == .short }.first?.name {
183 | name = "-" + shortName
184 | } else if let longNameWithSingleDash = arg.names?.filter { $0.kind == .longWithSingleDash }.first?.name {
| `- warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
185 | name = "-" + longNameWithSingleDash
186 | }
/Users/admin/builder/spi-builder-workspace/Tools/generate-command-models/GenerateCommandModels.swift:182:57: warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
180 | if let longName = arg.names?.filter { $0.kind == .long }.first?.name {
181 | name = "--" + longName
182 | } else if let shortName = arg.names?.filter { $0.kind == .short }.first?.name {
| `- warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
183 | name = "-" + shortName
184 | } else if let longNameWithSingleDash = arg.names?.filter { $0.kind == .longWithSingleDash }.first?.name {
/Users/admin/builder/spi-builder-workspace/Tools/generate-command-models/GenerateCommandModels.swift:180:49: warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
178 | let flag = arg.kind == .flag
179 | var name: String?
180 | if let longName = arg.names?.filter { $0.kind == .long }.first?.name {
| `- warning: trailing closure in this context is confusable with the body of the statement; pass as a parenthesized argument to silence this warning
181 | name = "--" + longName
182 | } else if let shortName = arg.names?.filter { $0.kind == .short }.first?.name {
[893/927] Emitting module generate_command_models
[893/927] Write Objects.LinkFileList
[916/927] Emitting module NIOCore
[916/979] Linking generate-command-models
[917/979] Applying generate-command-models
[919/979] Compiling NIOEmbedded Embedded.swift
[920/979] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[921/979] Emitting module NIOEmbedded
[922/979] Compiling NIOEmbedded AsyncTestingChannel.swift
[923/979] Compiling NIOPosix SocketProtocols.swift
[924/979] Compiling NIOPosix System.swift
[925/979] Compiling NIOPosix Thread.swift
[926/979] Compiling NIOPosix ThreadPosix.swift
[927/979] Compiling NIOPosix ThreadWindows.swift
[928/984] Emitting module NIOPosix
[929/984] Compiling NIOPosix UnsafeTransfer.swift
[930/984] Compiling NIOPosix Utilities.swift
[931/984] Compiling NIOPosix VsockAddress.swift
[932/984] Compiling NIOPosix VsockChannelEvents.swift
[933/984] Compiling NIOPosix resource_bundle_accessor.swift
[934/984] Compiling NIOPosix SelectorKqueue.swift
[935/984] Compiling NIOPosix SelectorUring.swift
[936/984] Compiling NIOPosix ServerSocket.swift
[937/984] Compiling NIOPosix Socket.swift
[938/984] Compiling NIOPosix SocketChannel.swift
[939/984] Compiling NIOPosix BSDSocketAPICommon.swift
[940/984] Compiling NIOPosix BSDSocketAPIPosix.swift
[941/984] Compiling NIOPosix BSDSocketAPIWindows.swift
[942/984] Compiling NIOPosix BaseSocket.swift
[943/984] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[944/984] Compiling NIOPosix BaseSocketChannel.swift
[945/984] Compiling NIOPosix Pool.swift
[946/984] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[947/984] Compiling NIOPosix PosixSingletons.swift
[948/984] Compiling NIOPosix RawSocketBootstrap.swift
[949/984] Compiling NIOPosix Resolver.swift
[950/984] Compiling NIOPosix Selectable.swift
[951/984] Compiling NIOPosix SelectableChannel.swift
[952/984] Compiling NIOPosix SelectableEventLoop.swift
[953/984] Compiling NIOPosix SelectorEpoll.swift
[954/984] Compiling NIOPosix SelectorGeneric.swift
[955/984] Compiling NIOPosix Linux.swift
[956/984] Compiling NIOPosix LinuxCPUSet.swift
[957/984] Compiling NIOPosix LinuxUring.swift
[958/984] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[959/984] Compiling NIOPosix NIOThreadPool.swift
[960/984] Compiling NIOPosix BaseStreamSocketChannel.swift
[961/984] Compiling NIOPosix Bootstrap.swift
[962/984] Compiling NIOPosix ControlMessage.swift
[963/984] Compiling NIOPosix DatagramVectorReadManager.swift
[964/984] Compiling NIOPosix Errors+Any.swift
[965/984] Compiling NIOPosix FileDescriptor.swift
[966/984] Compiling NIOPosix GetaddrinfoResolver.swift
[967/984] Compiling NIOPosix HappyEyeballs.swift
[968/984] Compiling NIOPosix IO.swift
[969/984] Compiling NIOPosix IntegerBitPacking.swift
[970/984] Compiling NIOPosix IntegerTypes.swift
[971/984] Compiling NIOPosix NonBlockingFileIO.swift
[972/984] Compiling NIOPosix PendingDatagramWritesManager.swift
[973/984] Compiling NIOPosix PendingWritesManager.swift
[974/984] Compiling NIOPosix PipeChannel.swift
[975/984] Compiling NIOPosix PipePair.swift
[976/986] Compiling NIO Exports.swift
[977/986] Emitting module NIO
[978/1026] Compiling NIOSOCKS Errors.swift
[979/1027] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[980/1027] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[981/1027] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[982/1027] Compiling NIOTLS TLSEvents.swift
[983/1027] Compiling NIOSOCKS Helpers.swift
[984/1027] Compiling NIOHTTP1 HTTPEncoder.swift
[985/1027] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[986/1027] Compiling NIOSOCKS ClientStateMachine.swift
[987/1027] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[988/1027] Compiling NIOSOCKS SOCKSResponse.swift
[989/1027] Compiling NIOSOCKS Messages.swift
[990/1027] Compiling NIOSOCKS SOCKSRequest.swift
[991/1027] Compiling NIOHTTP1 ByteCollectionUtils.swift
[992/1027] Compiling NIOHTTP1 HTTPDecoder.swift
[993/1027] Emitting module NIOSOCKS
[994/1027] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[995/1027] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[996/1027] Emitting module NIOTLS
[997/1027] Compiling NIOTLS SNIHandler.swift
[998/1027] Compiling NIOSOCKS ServerStateMachine.swift
[999/1027] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[1000/1028] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[1003/1053] Compiling NIOSSL ByteBufferBIO.swift
[1004/1053] Compiling NIOSSL CustomPrivateKey.swift
[1005/1053] Compiling NIOSSL IdentityVerification.swift
[1006/1053] Compiling NIOSSL SSLConnection.swift
[1007/1059] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1008/1059] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1009/1059] Emitting module NIOFoundationCompat
[1010/1059] Compiling NIOSSL NIOSSLHandler+Configuration.swift
[1011/1059] Compiling NIOSSL NIOSSLHandler.swift
[1012/1081] Compiling NIOTransportServices AcceptHandler.swift
[1013/1081] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1014/1081] Emitting module NIOHTTP1
[1015/1081] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[1016/1081] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1017/1081] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[1018/1081] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1019/1081] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1020/1099] Emitting module NIOTransportServices
[1021/1101] Emitting module NIOSSL
[1022/1104] Compiling NIOHPACK IndexedHeaderTable.swift
[1023/1105] Compiling NIOHPACK StaticHeaderTable.swift
[1024/1105] Compiling NIOHPACK IntegerCoding.swift
[1025/1105] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1026/1105] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1027/1105] Compiling NIOHTTPCompression HTTPDecompression.swift
[1028/1105] Compiling NIOHTTPCompression HTTPCompression.swift
[1029/1105] Emitting module NIOHTTPCompression
[1030/1105] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1031/1105] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1032/1105] Compiling NIOHPACK HuffmanTables.swift
[1033/1105] Compiling NIOHPACK HuffmanCoding.swift
[1034/1105] Compiling NIOHPACK HeaderTables.swift
[1035/1105] Compiling NIOSSL UniversalBootstrapSupport.swift
[1036/1105] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[1037/1105] Compiling NIOSSL resource_bundle_accessor.swift
[1038/1105] Compiling NIOHPACK HPACKErrors.swift
[1039/1105] Compiling NIOHPACK HPACKEncoder.swift
[1040/1105] Compiling NIOHPACK DynamicHeaderTable.swift
[1041/1105] Compiling NIOHPACK HPACKDecoder.swift
[1042/1105] Emitting module NIOHPACK
[1043/1105] Compiling NIOHPACK HPACKHeader.swift
[1044/1126] Compiling NIOHTTP2 InboundWindowManager.swift
[1045/1126] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1046/1126] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1047/1126] Compiling NIOHTTP2 InboundEventBuffer.swift
[1048/1126] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1049/1126] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1050/1165] Compiling NIOHTTP2 SendingHeadersState.swift
[1051/1165] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1052/1165] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1053/1165] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1056/1165] Compiling NIOHTTP2 QuiescingState.swift
[1057/1165] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1058/1165] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1059/1165] Compiling NIOHTTP2 MaySendFrames.swift
[1060/1165] Compiling NIOHTTP2 SendingDataState.swift
[1061/1165] Compiling NIOHTTP2 SendingGoawayState.swift
[1062/1165] Compiling NIOHTTP2 HTTP2Settings.swift
[1063/1165] Compiling NIOHTTP2 HTTP2Stream.swift
[1064/1165] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1067/1165] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1068/1165] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1069/1165] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1071/1165] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1072/1165] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1073/1165] Compiling NIOHTTP2 HTTP2StreamID.swift
[1074/1165] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1075/1165] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1076/1165] Compiling NIOHTTP2 MayReceiveFrames.swift
[1077/1165] Compiling NIOHTTP2 ReceivingDataState.swift
[1078/1165] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1085/1165] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1097/1165] Emitting module NIOHTTP2
[1117/1171] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1118/1171] Compiling NIOHTTP2 StreamChannelList.swift
[1119/1171] Compiling NIOHTTP2 StreamMap.swift
[1120/1171] Compiling NIOHTTP2 StreamStateMachine.swift
[1121/1171] Compiling NIOHTTP2 UnsafeTransfer.swift
[1122/1171] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1130/1171] Compiling NIOHTTP2 SendingRstStreamState.swift
[1131/1171] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1132/1171] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1133/1171] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1134/1171] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1135/1171] Compiling NIOHTTP2 HasLocalSettings.swift
[1136/1171] Compiling NIOHTTP2 HasRemoteSettings.swift
[1137/1171] Compiling NIOHTTP2 Error+Any.swift
[1138/1171] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1139/1171] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1140/1171] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1141/1171] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1142/1171] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[1143/1171] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[1148/1171] Compiling NIOHTTP2 StateMachineResult.swift
[1149/1171] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1150/1171] Compiling NIOHTTP2 DOSHeuristics.swift
[1151/1171] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1152/1171] Compiling NIOHTTP2 HTTP2Frame.swift
[1153/1171] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1154/1171] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1155/1171] Compiling NIOHTTP2 HTTP2PingData.swift
[1156/1171] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1157/1171] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[1158/1171] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[1159/1171] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1160/1171] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1161/1171] Compiling NIOHTTP2 HTTP2Error.swift
[1162/1171] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1163/1233] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[1164/1233] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[1165/1233] Compiling AsyncHTTPClient AsyncLazySequence.swift
[1166/1233] Compiling AsyncHTTPClient HTTPClient+execute.swift
[1167/1233] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[1168/1233] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[1169/1233] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[1170/1239] Emitting module AsyncHTTPClient
[1171/1239] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1172/1239] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1173/1239] Compiling AsyncHTTPClient ConnectionPool.swift
[1174/1239] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1175/1239] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1176/1239] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1177/1239] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1178/1239] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1179/1239] Compiling AsyncHTTPClient ConnectionTarget.swift
[1180/1239] Compiling AsyncHTTPClient DeconstructedURL.swift
[1181/1239] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1182/1239] Compiling AsyncHTTPClient FoundationExtensions.swift
[1183/1239] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1184/1239] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1185/1239] Compiling AsyncHTTPClient SSLContextCache.swift
[1186/1239] Compiling AsyncHTTPClient Scheme.swift
[1187/1239] Compiling AsyncHTTPClient Singleton.swift
[1188/1239] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1189/1239] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[1190/1239] Compiling AsyncHTTPClient Utils.swift
[1191/1239] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1192/1239] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1193/1239] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1194/1239] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1195/1239] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1196/1239] Compiling AsyncHTTPClient RequestBodyLength.swift
[1197/1239] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1198/1239] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1199/1239] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1200/1239] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1201/1239] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1202/1239] Compiling AsyncHTTPClient Transaction.swift
[1203/1239] Compiling AsyncHTTPClient Base64.swift
[1204/1239] Compiling AsyncHTTPClient BasicAuth.swift
[1205/1239] Compiling AsyncHTTPClient HTTP1Connection.swift
[1206/1239] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1207/1239] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1208/1239] Compiling AsyncHTTPClient HTTP2Connection.swift
[1209/1239] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1210/1239] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1211/1239] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1212/1239] Compiling AsyncHTTPClient RequestOptions.swift
[1213/1239] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1214/1239] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1215/1239] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1216/1239] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1217/1239] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1218/1239] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1219/1239] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1220/1239] Compiling AsyncHTTPClient TLSConfiguration.swift
[1221/1239] Compiling AsyncHTTPClient RedirectState.swift
[1222/1239] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1223/1239] Compiling AsyncHTTPClient RequestBag.swift
[1224/1239] Compiling AsyncHTTPClient RequestValidation.swift
[1225/1239] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[1226/1239] Compiling AsyncHTTPClient HTTPClient.swift
[1227/1239] Compiling AsyncHTTPClient HTTPHandler.swift
[1228/1239] Compiling AsyncHTTPClient LRUCache.swift
[1229/1239] Compiling AsyncHTTPClient NIOLoopBound+Execute.swift
[1230/1239] Compiling AsyncHTTPClient NWErrorHandler.swift
[1231/1241] Compiling OpenAPIAsyncHTTPClient AsyncHTTPClientTransport.swift
[1232/1241] Emitting module OpenAPIAsyncHTTPClient
[1233/1257] Compiling SwiftlyCore ToolchainVersion.swift
[1234/1258] Compiling SwiftlyCore Terminal.swift
[1235/1258] Compiling SwiftlyCore StringExtensions.swift
[1236/1258] Compiling SwiftlyCore SwiftlyCore.swift
[1237/1258] Compiling SwiftlyCore SwiftlyVersion.swift
[1238/1258] Compiling SwiftlyCore Platform.swift
[1239/1258] Compiling SwiftlyCore ProcessInfo.swift
[1240/1258] Compiling SwiftlyCore ModeledCommandLine.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftlyCore/ModeledCommandLine.swift:184:13: warning: no 'async' operations occur within 'await' expression
182 | }
183 |
184 | try await p.runProgram([executable] + args, quiet: quiet, env: newEnv)
| `- warning: no 'async' operations occur within 'await' expression
185 | }
186 | }
[1241/1258] Compiling SwiftlyCore OutputFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftlyCore/ModeledCommandLine.swift:184:13: warning: no 'async' operations occur within 'await' expression
182 | }
183 |
184 | try await p.runProgram([executable] + args, quiet: quiet, env: newEnv)
| `- warning: no 'async' operations occur within 'await' expression
185 | }
186 | }
[1242/1258] Compiling SwiftlyCore FileLock.swift
[1243/1258] Compiling SwiftlyCore FileManager+FilePath.swift
[1244/1258] Compiling SwiftlyCore Commands+Runnable+Output.swift
[1245/1258] Compiling SwiftlyCore Error.swift
[1246/1258] Compiling SwiftlyCore HTTPClient.swift
[1247/1258] Compiling SwiftlyCore Messages.swift
[1248/1258] Emitting module SwiftlyCore
[1249/1258] Compiling SwiftlyCore Commands.swift
/Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftlyCore/destination/GenerateCommandModels/Commands.swift:373:17: warning: variable 'genArgs' was never mutated; consider changing to 'let' constant
371 |
372 | public func config() -> Configuration {
373 | var genArgs: [String] = []
| `- warning: variable 'genArgs' was never mutated; consider changing to 'let' constant
374 |
375 |
/Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftlyCore/destination/GenerateCommandModels/Commands.swift:622:17: warning: variable 'genArgs' was never mutated; consider changing to 'let' constant
620 |
621 | public func config() -> Configuration {
622 | var genArgs: [String] = []
| `- warning: variable 'genArgs' was never mutated; consider changing to 'let' constant
623 |
624 |
/Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SwiftlyCore/destination/GenerateCommandModels/Commands.swift:1066:17: warning: variable 'genArgs' was never mutated; consider changing to 'let' constant
1064 |
1065 | public func config() -> Configuration {
1066 | var genArgs: [String] = []
| `- warning: variable 'genArgs' was never mutated; consider changing to 'let' constant
1067 |
1068 |
[1250/1260] Emitting module MacOSPlatform
[1251/1260] Compiling MacOSPlatform MacOS.swift
/Users/admin/builder/spi-builder-workspace/Sources/MacOSPlatform/MacOS.swift:120:27: warning: result of call to 'installer(executable:_:)' is unused
118 | if ctx.mockedHomeDir == nil {
119 | await ctx.message("Extracting the swiftly package...")
120 | try await sys.installer(
| `- warning: result of call to 'installer(executable:_:)' is unused
121 | .pkg(archive),
122 | .target("CurrentUserHomeDirectory")
/Users/admin/builder/spi-builder-workspace/Sources/MacOSPlatform/MacOS.swift:120:17: warning: no 'async' operations occur within 'await' expression
118 | if ctx.mockedHomeDir == nil {
119 | await ctx.message("Extracting the swiftly package...")
120 | try await sys.installer(
| `- warning: no 'async' operations occur within 'await' expression
121 | .pkg(archive),
122 | .target("CurrentUserHomeDirectory")
/Users/admin/builder/spi-builder-workspace/Sources/MacOSPlatform/MacOS.swift:120:13: warning: no calls to throwing functions occur within 'try' expression
118 | if ctx.mockedHomeDir == nil {
119 | await ctx.message("Extracting the swiftly package...")
120 | try await sys.installer(
| `- warning: no calls to throwing functions occur within 'try' expression
121 | .pkg(archive),
122 | .target("CurrentUserHomeDirectory")
/Users/admin/builder/spi-builder-workspace/Sources/MacOSPlatform/MacOS.swift:196:14: warning: immutable value 'key' was never used; consider replacing with '_' or removing it
194 |
195 | public func getShell() async throws -> String {
196 | for (key, value) in try await sys.dscl(datasource: ".").read(path: fs.home, key: ["UserShell"]).properties(self) {
| `- warning: immutable value 'key' was never used; consider replacing with '_' or removing it
197 | return value
198 | }
[1252/1279] Compiling TestSwiftly TestSwiftly.swift
/Users/admin/builder/spi-builder-workspace/Sources/TestSwiftly/TestSwiftly.swift:95:15: warning: 'guard' condition is always true, body is unreachable
93 | }
94 |
95 | guard case let swiftlyArchive = FilePath(swiftlyArchive) else { fatalError("") }
| `- warning: 'guard' condition is always true, body is unreachable
96 |
97 | print("Extracting swiftly release")
[1253/1279] Emitting module TestSwiftly
[1253/1279] Write Objects.LinkFileList
[1255/1279] Compiling Swiftly Update.swift
[1256/1279] Compiling Swiftly Unlink.swift
[1257/1279] Compiling Swiftly Uninstall.swift
[1258/1280] Compiling Swiftly List.swift
[1259/1280] Compiling Swiftly ListAvailable.swift
[1260/1280] Compiling Swiftly Swiftly.swift
[1261/1280] Compiling Swiftly OutputSchema.swift
[1262/1280] Compiling Swiftly Proxy.swift
[1263/1280] Compiling Swiftly Run.swift
[1264/1280] Compiling Swiftly SelfUpdate.swift
[1265/1280] Compiling Swiftly Use.swift
[1266/1280] Compiling Swiftly Install.swift
[1267/1280] Compiling Swiftly Link.swift
[1268/1280] Compiling Swiftly Config.swift
[1269/1280] Compiling Swiftly Init.swift
[1270/1280] Emitting module Swiftly
[1271/1280] Compiling build_swiftly_release BuildSwiftlyRelease.swift
[1272/1280] Emitting module build_swiftly_release
[1272/1280] Write Objects.LinkFileList
[1274/1280] Linking test-swiftly
[1275/1280] Applying test-swiftly
[1276/1280] Linking build-swiftly-release
[1277/1280] Applying build-swiftly-release
[1278/1280] Linking swiftly
[1279/1280] Applying swiftly
Build complete! (238.20s)
Fetching https://github.com/apple/swift-openapi-generator
Fetching https://github.com/apple/swift-tools-support-core.git
Fetching https://github.com/apple/swift-system
Fetching https://github.com/nicklockwood/SwiftFormat
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-openapi-runtime
[1/5679] Fetching swift-openapi-runtime
[115/7761] Fetching swift-openapi-runtime, swift-docc-plugin
[199/12189] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system
[3081/28046] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-openapi-generator
[7387/34899] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-openapi-generator, swift-tools-support-core
[23499/111221] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-openapi-generator, swift-tools-support-core, swift-nio
Fetched https://github.com/apple/swift-tools-support-core.git from cache (1.49s)
Fetched https://github.com/apple/swift-openapi-generator from cache (1.49s)
[15243/137309] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-nio, swiftformat
Fetching https://github.com/swift-server/swift-openapi-async-http-client
Fetching https://github.com/swift-server/async-http-client
[61462/137879] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-nio, swiftformat, swift-openapi-async-http-client
Fetched https://github.com/swift-server/swift-openapi-async-http-client from cache (0.75s)
Fetching https://github.com/apple/swift-argument-parser
[64514/137309] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-nio, swiftformat
[64515/151323] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-nio, swiftformat, async-http-client
Fetched https://github.com/swift-server/async-http-client from cache (1.43s)
[75554/137309] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-nio, swiftformat
[90056/152689] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-nio, swiftformat, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.51s)
[90951/137309] Fetching swift-openapi-runtime, swift-docc-plugin, swift-system, swift-nio, swiftformat
Fetched https://github.com/apple/swift-system from cache (96.45s)
Fetched https://github.com/apple/swift-nio.git from cache (96.45s)
Fetched https://github.com/apple/swift-docc-plugin from cache (96.45s)
Fetched https://github.com/apple/swift-openapi-runtime from cache (96.45s)
Fetched https://github.com/nicklockwood/SwiftFormat from cache (96.45s)
Computing version for https://github.com/nicklockwood/SwiftFormat
Computed https://github.com/nicklockwood/SwiftFormat at 0.49.18 (3.10s)
Computing version for https://github.com/apple/swift-openapi-runtime
Computed https://github.com/apple/swift-openapi-runtime at 1.8.2 (0.47s)
Fetching https://github.com/apple/swift-http-types
[1/904] Fetching swift-http-types
Fetched https://github.com/apple/swift-http-types from cache (0.87s)
Computing version for https://github.com/swift-server/swift-openapi-async-http-client
Computed https://github.com/swift-server/swift-openapi-async-http-client at 1.1.0 (2.24s)
Computing version for https://github.com/apple/swift-system
Computed https://github.com/apple/swift-system at 1.5.0 (0.43s)
Computing version for https://github.com/apple/swift-openapi-generator
Computed https://github.com/apple/swift-openapi-generator at 1.8.0 (0.57s)
Fetching https://github.com/apple/swift-algorithms
Fetching https://github.com/apple/swift-collections
Fetching https://github.com/jpsim/Yams
Fetching https://github.com/mattpolzin/OpenAPIKit
[1/5959] Fetching swift-algorithms
[180/16818] Fetching swift-algorithms, yams
[241/33424] Fetching swift-algorithms, yams, swift-collections
[7060/123169] Fetching swift-algorithms, yams, swift-collections, openapikit
Fetched https://github.com/apple/swift-algorithms from cache (1.09s)
[1318/117210] Fetching yams, swift-collections, openapikit
Fetched https://github.com/mattpolzin/OpenAPIKit from cache (18.66s)
Fetched https://github.com/jpsim/Yams from cache (18.66s)
Fetched https://github.com/apple/swift-collections from cache (18.66s)
Computing version for https://github.com/apple/swift-tools-support-core.git
Computed https://github.com/apple/swift-tools-support-core.git at 0.7.3 (0.58s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (0.51s)
Computing version for https://github.com/apple/swift-algorithms
Computed https://github.com/apple/swift-algorithms at 1.2.1 (0.53s)
Fetching https://github.com/apple/swift-numerics.git
[1/5757] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.01s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.56s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (0.74s)
Fetching https://github.com/apple/swift-atomics.git
[1/1797] Fetching swift-atomics
Fetched https://github.com/apple/swift-atomics.git from cache (1.03s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.45s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.1 (0.46s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (0.54s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3411] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.13s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.57s)
Computing version for https://github.com/mattpolzin/OpenAPIKit
Computed https://github.com/mattpolzin/OpenAPIKit at 3.5.2 (0.55s)
Computing version for https://github.com/swift-server/async-http-client
Computed https://github.com/swift-server/async-http-client at 1.26.1 (0.44s)
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio-ssl.git
[1/11532] Fetching swift-nio-http2
[2/14199] Fetching swift-nio-http2, swift-nio-transport-services
[163/20122] Fetching swift-nio-http2, swift-nio-transport-services, swift-nio-extras
[397/23958] Fetching swift-nio-http2, swift-nio-transport-services, swift-nio-extras, swift-log
[890/38848] Fetching swift-nio-http2, swift-nio-transport-services, swift-nio-extras, swift-log, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (1.01s)
[9004/36181] Fetching swift-nio-http2, swift-nio-extras, swift-log, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.33s)
[15120/24649] Fetching swift-nio-extras, swift-log, swift-nio-ssl
Fetched https://github.com/apple/swift-log.git from cache (1.75s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.75s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.75s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (0.46s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (0.45s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.32.0 (0.56s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.44s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.28.0 (0.47s)
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-asn1.git
[1/1141] Fetching swift-http-structured-headers
[59/2731] Fetching swift-http-structured-headers, swift-asn1
[182/7716] Fetching swift-http-structured-headers, swift-asn1, swift-async-algorithms
[613/10142] Fetching swift-http-structured-headers, swift-asn1, swift-async-algorithms, swift-service-lifecycle
[735/16326] Fetching swift-http-structured-headers, swift-asn1, swift-async-algorithms, swift-service-lifecycle, swift-certificates
Fetched https://github.com/apple/swift-certificates.git from cache (1.14s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.14s)
Fetched https://github.com/apple/swift-asn1.git from cache (1.14s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.14s)
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.14s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.8.0 (0.44s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (0.51s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.10.0 (0.69s)
Fetching https://github.com/apple/swift-crypto.git
[1/14981] Fetching swift-crypto
Fetched https://github.com/apple/swift-crypto.git from cache (1.90s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (1.14s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (0.54s)
Computing version for https://github.com/apple/swift-http-types
Computed https://github.com/apple/swift-http-types at 1.4.0 (0.43s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.3.0 (0.43s)
Computing version for https://github.com/jpsim/Yams
Computed https://github.com/jpsim/Yams at 6.0.1 (0.43s)
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.10.0
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.28.0
Creating working copy for https://github.com/mattpolzin/OpenAPIKit
Working copy of https://github.com/mattpolzin/OpenAPIKit resolved at 3.5.2
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.2
Creating working copy for https://github.com/nicklockwood/SwiftFormat
Working copy of https://github.com/nicklockwood/SwiftFormat resolved at 0.49.18
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.0.4
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/apple/swift-openapi-generator
Working copy of https://github.com/apple/swift-openapi-generator resolved at 1.8.0
Creating working copy for https://github.com/apple/swift-http-types
Working copy of https://github.com/apple/swift-http-types resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-openapi-runtime
Working copy of https://github.com/apple/swift-openapi-runtime resolved at 1.8.2
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/jpsim/Yams
Working copy of https://github.com/jpsim/Yams resolved at 6.0.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-algorithms
Working copy of https://github.com/apple/swift-algorithms resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/apple/swift-tools-support-core.git
Working copy of https://github.com/apple/swift-tools-support-core.git resolved at 0.7.3
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.32.0
Creating working copy for https://github.com/swift-server/swift-openapi-async-http-client
Working copy of https://github.com/swift-server/swift-openapi-async-http-client resolved at 1.1.0
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.8.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.3
Creating working copy for https://github.com/apple/swift-system
Working copy of https://github.com/apple/swift-system resolved at 1.5.0
Creating working copy for https://github.com/swift-server/async-http-client
Working copy of https://github.com/swift-server/async-http-client resolved at 1.26.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-collections
Working copy of https://github.com/apple/swift-collections resolved at 1.2.0
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: couldn't find pc file for libarchive
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Tools/build-swiftly-release/musl-clang
warning: couldn't find pc file for libarchive
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "async-http-client",
"requirement" : {
"range" : [
{
"lower_bound" : "1.24.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/async-http-client"
},
{
"identity" : "swift-openapi-async-http-client",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/swift-openapi-async-http-client"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.80.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-tools-support-core",
"requirement" : {
"range" : [
{
"lower_bound" : "0.7.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-tools-support-core.git"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
},
{
"identity" : "swift-openapi-generator",
"requirement" : {
"range" : [
{
"lower_bound" : "1.7.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-openapi-generator"
},
{
"identity" : "swift-openapi-runtime",
"requirement" : {
"range" : [
{
"lower_bound" : "1.8.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-openapi-runtime"
},
{
"identity" : "swift-system",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-system"
},
{
"identity" : "swiftformat",
"requirement" : {
"exact" : [
"0.49.18"
]
},
"type" : "sourceControl",
"url" : "https://github.com/nicklockwood/SwiftFormat"
}
],
"manifest_display_name" : "swiftly",
"name" : "swiftly",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "swiftly",
"targets" : [
"Swiftly"
],
"type" : {
"executable" : null
}
},
{
"name" : "test-swiftly",
"targets" : [
"TestSwiftly"
],
"type" : {
"executable" : null
}
},
{
"name" : "generate-docs-reference",
"targets" : [
"generate-docs-reference"
],
"type" : {
"executable" : null
}
},
{
"name" : "generate-command-models",
"targets" : [
"generate-command-models"
],
"type" : {
"executable" : null
}
},
{
"name" : "build-swiftly-release",
"targets" : [
"build-swiftly-release"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "generate_docs_reference",
"module_type" : "SwiftTarget",
"name" : "generate-docs-reference",
"path" : "Tools/generate-docs-reference",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"generate-docs-reference"
],
"sources" : [
"Extensions/Process+SimpleAPI.swift",
"GenerateDocsReference.swift"
],
"type" : "executable"
},
{
"c99name" : "generate_command_models",
"module_type" : "SwiftTarget",
"name" : "generate-command-models",
"path" : "Tools/generate-command-models",
"product_dependencies" : [
"ArgumentParser",
"SystemPackage"
],
"product_memberships" : [
"swiftly",
"test-swiftly",
"generate-command-models",
"build-swiftly-release"
],
"sources" : [
"GenerateCommandModels.swift"
],
"type" : "executable"
},
{
"c99name" : "build_swiftly_release",
"module_type" : "SwiftTarget",
"name" : "build-swiftly-release",
"path" : "Tools/build-swiftly-release",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"build-swiftly-release"
],
"sources" : [
"BuildSwiftlyRelease.swift"
],
"target_dependencies" : [
"SwiftlyCore",
"LinuxPlatform",
"MacOSPlatform"
],
"type" : "executable"
},
{
"c99name" : "TestSwiftly",
"module_type" : "SwiftTarget",
"name" : "TestSwiftly",
"path" : "Sources/TestSwiftly",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"test-swiftly"
],
"sources" : [
"TestSwiftly.swift"
],
"target_dependencies" : [
"SwiftlyCore",
"LinuxPlatform",
"MacOSPlatform"
],
"type" : "executable"
},
{
"c99name" : "SwiftlyWebsiteAPI",
"module_type" : "SwiftTarget",
"name" : "SwiftlyWebsiteAPI",
"path" : "Sources/SwiftlyWebsiteAPI",
"product_dependencies" : [
"OpenAPIRuntime",
"OpenAPIGenerator"
],
"product_memberships" : [
"swiftly",
"test-swiftly",
"build-swiftly-release"
],
"sources" : [
"Servers+Extensions.swift"
],
"type" : "library"
},
{
"c99name" : "SwiftlyTests",
"module_type" : "SwiftTarget",
"name" : "SwiftlyTests",
"path" : "Tests/SwiftlyTests",
"product_dependencies" : [
"SystemPackage"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftlyTests/mock-signing-key-private.pgp",
"rule" : {
"embed_in_code" : {
}
}
}
],
"sources" : [
"CommandLineTests.swift",
"FileLockTests.swift",
"HTTPClientTests.swift",
"InitTests.swift",
"InstallTests.swift",
"LinkTests.swift",
"ListTests.swift",
"PlatformTests.swift",
"RunTests.swift",
"SelfUpdateTests.swift",
"StringExtensionsTests.swift",
"SwiftlyCoreTests.swift",
"SwiftlyTests.swift",
"ToolchainSelectorTests.swift",
"UninstallTests.swift",
"UnlinkTests.swift",
"UpdateTests.swift",
"UseTests.swift"
],
"target_dependencies" : [
"Swiftly"
],
"type" : "test"
},
{
"c99name" : "SwiftlyDownloadAPI",
"module_type" : "SwiftTarget",
"name" : "SwiftlyDownloadAPI",
"path" : "Sources/SwiftlyDownloadAPI",
"product_dependencies" : [
"OpenAPIRuntime",
"OpenAPIGenerator"
],
"product_memberships" : [
"swiftly",
"test-swiftly",
"build-swiftly-release"
],
"sources" : [
"Servers+Extensions.swift"
],
"type" : "library"
},
{
"c99name" : "SwiftlyDocs",
"module_type" : "SwiftTarget",
"name" : "SwiftlyDocs",
"path" : "Documentation",
"sources" : [
"EmptyFile.swift"
],
"type" : "library"
},
{
"c99name" : "SwiftlyCore",
"module_type" : "SwiftTarget",
"name" : "SwiftlyCore",
"path" : "Sources/SwiftlyCore",
"product_dependencies" : [
"AsyncHTTPClient",
"NIOFoundationCompat",
"OpenAPIRuntime",
"OpenAPIAsyncHTTPClient",
"SystemPackage"
],
"product_memberships" : [
"swiftly",
"test-swiftly",
"build-swiftly-release"
],
"sources" : [
"Commands+Runnable+Output.swift",
"Error.swift",
"FileLock.swift",
"FileManager+FilePath.swift",
"HTTPClient.swift",
"Messages.swift",
"ModeledCommandLine.swift",
"OutputFormatter.swift",
"Platform.swift",
"ProcessInfo.swift",
"StringExtensions.swift",
"SwiftlyCore.swift",
"SwiftlyVersion.swift",
"Terminal.swift",
"ToolchainVersion.swift"
],
"target_dependencies" : [
"SwiftlyDownloadAPI",
"SwiftlyWebsiteAPI",
"GenerateCommandModels"
],
"type" : "library"
},
{
"c99name" : "Swiftly",
"module_type" : "SwiftTarget",
"name" : "Swiftly",
"path" : "Sources/Swiftly",
"product_dependencies" : [
"ArgumentParser",
"SwiftToolsSupport-auto",
"SystemPackage"
],
"product_memberships" : [
"swiftly"
],
"sources" : [
"Config.swift",
"Init.swift",
"Install.swift",
"Link.swift",
"List.swift",
"ListAvailable.swift",
"OutputSchema.swift",
"Proxy.swift",
"Run.swift",
"SelfUpdate.swift",
"Swiftly.swift",
"Uninstall.swift",
"Unlink.swift",
"Update.swift",
"Use.swift"
],
"target_dependencies" : [
"SwiftlyCore",
"LinuxPlatform",
"MacOSPlatform"
],
"type" : "executable"
},
{
"c99name" : "MacOSPlatform",
"module_type" : "SwiftTarget",
"name" : "MacOSPlatform",
"path" : "Sources/MacOSPlatform",
"product_dependencies" : [
"SystemPackage"
],
"product_memberships" : [
"swiftly",
"test-swiftly",
"build-swiftly-release"
],
"sources" : [
"MacOS.swift"
],
"target_dependencies" : [
"SwiftlyCore"
],
"type" : "library"
},
{
"c99name" : "LinuxPlatform",
"module_type" : "SwiftTarget",
"name" : "LinuxPlatform",
"path" : "Sources/LinuxPlatform",
"product_dependencies" : [
"SystemPackage"
],
"product_memberships" : [
"swiftly",
"test-swiftly",
"build-swiftly-release"
],
"sources" : [
"Extract.swift",
"Linux.swift"
],
"target_dependencies" : [
"SwiftlyCore",
"CLibArchive"
],
"type" : "library"
},
{
"c99name" : "GenerateDocsReference",
"module_type" : "PluginTarget",
"name" : "GenerateDocsReference",
"path" : "Plugins/GenerateDocsReference",
"plugin_capability" : {
"intent" : {
"description" : "Generate a documentation reference for swiftly.",
"type" : "custom",
"verb" : "generate-docs-reference"
},
"permissions" : [
{
"network_scope" : {
"none" : {
}
},
"reason" : "This command generates documentation.",
"type" : "writeToPackageDirectory"
}
],
"type" : "command"
},
"sources" : [
"GenerateDocsReference.swift",
"GenerateDocsReferenceError.swift",
"PackagePlugin+Helpers.swift"
],
"target_dependencies" : [
"generate-docs-reference"
],
"type" : "plugin"
},
{
"c99name" : "GenerateCommandModels",
"module_type" : "PluginTarget",
"name" : "GenerateCommandModels",
"path" : "Plugins/GenerateCommandModels",
"plugin_capability" : {
"type" : "buildTool"
},
"product_memberships" : [
"swiftly",
"test-swiftly",
"build-swiftly-release"
],
"sources" : [
"plugin.swift"
],
"target_dependencies" : [
"generate-command-models"
],
"type" : "plugin"
},
{
"c99name" : "CLibArchive",
"module_type" : "SystemLibraryTarget",
"name" : "CLibArchive",
"path" : "Sources/CLibArchive",
"product_memberships" : [
"swiftly",
"test-swiftly",
"build-swiftly-release"
],
"sources" : [
],
"type" : "system-target"
}
],
"tools_version" : "6.0"
}
Done.