Build Information
Successful build of swift-argument-parser, reference 1.5.1 (011f0c
), with Swift 6.2 (beta) for Android on 24 Jun 2025 06:45:12 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apple/swift-argument-parser.git
Reference: 1.5.1
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/apple/swift-argument-parser
* tag 1.5.1 -> FETCH_HEAD
HEAD is now at 011f0c7 Update changelog for 1.5.1, along with unreleased changes (#784)
Cloned https://github.com/apple/swift-argument-parser.git
Revision (git rev-parse @):
011f0c765fb46d9cac61bca19be0527e99c98c8b
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/apple/swift-argument-parser.git at 1.5.1
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/apple/swift-argument-parser.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/31] Write sources
[11/31] Write swift-version-8C5A4AE7A8CE2BA.txt
[13/35] Compiling ArgumentParserToolInfo ToolInfo.swift
[14/35] Emitting module ArgumentParserToolInfo
[16/36] Compiling ArgumentParserToolInfo ToolInfo.swift
[17/36] Emitting module ArgumentParserToolInfo
[18/37] Wrapping AST for ArgumentParserToolInfo for debugging
[21/113] Emitting module ArgumentParser
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
[22/118] Compiling ArgumentParser ArgumentVisibility.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
[23/118] Compiling ArgumentParser CompletionKind.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
[24/118] Compiling ArgumentParser Errors.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
[25/118] Compiling ArgumentParser Flag.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
[26/118] Compiling ArgumentParser NameSpecification.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
[27/118] Compiling ArgumentParser Option.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
[28/118] Compiling ArgumentParser CompletionsGenerator.swift
[29/118] Compiling ArgumentParser FishCompletionsGenerator.swift
[30/118] Compiling ArgumentParser ZshCompletionsGenerator.swift
[31/118] Compiling ArgumentParser Argument.swift
[32/118] Compiling ArgumentParser ArgumentHelp.swift
[33/118] Compiling ArgumentParser OptionGroup.swift
[34/118] Compiling ArgumentParser AsyncParsableCommand.swift
[35/118] Compiling ArgumentParser CommandConfiguration.swift
[36/118] Compiling ArgumentParser CommandGroup.swift
[37/118] Compiling ArgumentParser EnumerableFlag.swift
[38/118] Compiling ArgumentParser BashCompletionsGenerator.swift
[39/118] Compiling ArgumentParser ArgumentDefinition.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
[40/118] Compiling ArgumentParser ArgumentSet.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
[41/118] Compiling ArgumentParser CommandParser.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
[42/118] Compiling ArgumentParser InputKey.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
[43/118] Compiling ArgumentParser InputOrigin.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
[44/118] Compiling ArgumentParser Name.swift
[45/118] Compiling ArgumentParser Parsed.swift
[46/118] Compiling ArgumentParser ParsedValues.swift
[47/118] Compiling ArgumentParser ParserError.swift
[48/118] Compiling ArgumentParser SplitArguments.swift
[49/123] Compiling ArgumentParser ExpressibleByArgument.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
[50/123] Compiling ArgumentParser ParsableArguments.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
[51/123] Compiling ArgumentParser ParsableArgumentsValidation.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
[52/123] Compiling ArgumentParser ParsableCommand.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
[53/123] Compiling ArgumentParser ArgumentDecoder.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
[60/123] Emitting module ArgumentParser
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
69 | public struct CleanExit: Error, CustomStringConvertible {
70 | internal enum Representation {
| `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
71 | case helpRequest(ParsableCommand.Type? = nil)
72 | case message(String)
:
74 | }
75 |
76 | internal var base: Representation
| `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
77 |
78 | /// Treat this error as a help request and display the full help message.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
11 |
12 | struct CommandError: Error {
13 | var commandStack: [ParsableCommand.Type]
| `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has non-sendable type '[any ParsableCommand.Type]'
14 | var parserError: ParserError
15 | }
[77/123] Compiling ArgumentParser CollectionExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
[78/123] Compiling ArgumentParser Platform.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
[79/123] Compiling ArgumentParser SequenceExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
[80/123] Compiling ArgumentParser StringExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
[81/123] Compiling ArgumentParser Tree.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
64 | /// An array of types that define subcommands for this command and are
65 | /// not part of any command group.
66 | public var ungroupedSubcommands: [ParsableCommand.Type]
| `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
67 |
68 | /// The list of subcommands and subcommand groups.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
70 |
71 | /// The default command type to run if no subcommand is given.
72 | public var defaultSubcommand: ParsableCommand.Type?
| `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
73 |
74 | /// Flag names to be used for help.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 | /// The list of subcommands that are part of this group.
18 | public let subcommands: [ParsableCommand.Type]
| `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 | /// Create a command group.
[87/123] Compiling ArgumentParser DumpHelpGenerator.swift
[88/123] Compiling ArgumentParser HelpCommand.swift
[89/123] Compiling ArgumentParser HelpGenerator.swift
[90/123] Compiling ArgumentParser MessageInfo.swift
[91/123] Compiling ArgumentParser UsageGenerator.swift
[92/124] Wrapping AST for ArgumentParser for debugging
[94/151] Compiling generate_manual MDocBuilder.swift
[95/151] Compiling generate_manual MDocComponent.swift
[96/151] Compiling generate_manual Document.swift
[97/151] Compiling generate_manual DocumentDate.swift
[98/154] Compiling generate_manual Container.swift
[99/154] Compiling generate_manual Empty.swift
[100/154] Compiling generate_manual ForEach.swift
[101/154] Compiling generate_manual MDocASTNodeWrapper.swift
[102/154] Compiling generate_manual Exit.swift
[103/154] Compiling generate_manual List.swift
[104/154] Compiling generate_manual MultiPageDescription.swift
[105/154] Compiling generate_manual Name.swift
[106/154] Compiling generate_manual AuthorArgument.swift
[107/154] Compiling generate_manual ArgumentSynopsis.swift
[108/154] Compiling generate_manual Author.swift
[109/154] Compiling generate_manual Authors.swift
[110/154] Compiling generate_manual Preamble.swift
[111/154] Compiling generate_manual Section.swift
[112/154] Compiling generate_manual SeeAlso.swift
[113/154] Compiling generate_manual SinglePageDescription.swift
[114/154] Emitting module generate_manual
[115/154] Compiling generate_manual Process+SimpleAPI.swift
[116/154] Compiling generate_manual GenerateManual.swift
[117/154] Compiling generate_manual MDocASTNode.swift
[118/154] Compiling generate_manual Synopsis.swift
[119/154] Compiling generate_manual ArgumentParser+MDoc.swift
[120/154] Compiling generate_manual Date+ExpressibleByArgument.swift
[121/154] Compiling generate_manual MDocMacro.swift
[122/154] Compiling generate_manual MDocSerializationContext.swift
[123/154] Compiling generate_manual String+Escaping.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
| `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 | case aliasMatchingCommand(ParsableCommand.Type)
110 | }
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 | enum InitializationError: Error {
108 | case recursiveSubcommand(ParsableCommand.Type)
109 | case aliasMatchingCommand(ParsableCommand.Type)
| `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 | }
111 | }
[129/155] Wrapping AST for generate-manual for debugging
[130/155] Write Objects.LinkFileList
[131/155] Linking generate-manual-tool
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
24 |
25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
26 | let parsableArgumentsType: ParsableArguments.Type
| `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-sendable type 'any ParsableArguments.Type'
27 | let underlayingErrors: [Error]
28 | var description: String {
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 | struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 | let type: ParsableArguments.Type
| `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 | var description: String {
[143/165] Wrapping AST for ArgumentParser for debugging
[145/193] Compiling roll SplitMix64.swift
[146/193] Emitting module roll
[147/193] Emitting module ArgumentParserTestHelpers
[148/193] Compiling ArgumentParserTestHelpers StringHelpers.swift
[149/193] Emitting module repeat
[150/193] Compiling repeat Repeat.swift
[151/194] Wrapping AST for repeat for debugging
[152/194] Write Objects.LinkFileList
[154/194] Compiling roll main.swift
[156/195] Compiling generate_manual AuthorArgument.swift
[157/195] Compiling generate_manual ArgumentSynopsis.swift
[158/195] Compiling generate_manual Author.swift
[159/195] Compiling generate_manual Authors.swift
[160/195] Emitting module generate_manual
[161/198] Compiling generate_manual MDocBuilder.swift
[162/198] Compiling generate_manual MDocComponent.swift
[163/198] Compiling generate_manual Document.swift
[164/198] Compiling generate_manual DocumentDate.swift
[165/198] Compiling generate_manual Container.swift
[166/198] Compiling generate_manual Empty.swift
[167/198] Compiling generate_manual ForEach.swift
[168/198] Compiling generate_manual MDocASTNodeWrapper.swift
[169/198] Compiling generate_manual Exit.swift
[170/198] Compiling generate_manual List.swift
[171/198] Compiling generate_manual MultiPageDescription.swift
[172/198] Compiling generate_manual Name.swift
[173/198] Compiling generate_manual Preamble.swift
[174/198] Compiling generate_manual Section.swift
[175/198] Compiling generate_manual SeeAlso.swift
[176/198] Compiling generate_manual SinglePageDescription.swift
[176/198] Linking repeat
[177/198] Wrapping AST for roll for debugging
[178/198] Write Objects.LinkFileList
[180/198] Compiling ArgumentParserTestHelpers TestHelpers.swift
[182/199] Compiling generate_manual Synopsis.swift
[183/199] Compiling generate_manual ArgumentParser+MDoc.swift
[184/199] Compiling generate_manual Date+ExpressibleByArgument.swift
[185/199] Compiling generate_manual Process+SimpleAPI.swift
[186/199] Compiling generate_manual GenerateManual.swift
[187/199] Compiling generate_manual MDocASTNode.swift
[187/199] Linking roll
[189/199] Emitting module math
[190/199] Compiling math Math.swift
[191/200] Wrapping AST for math for debugging
[192/200] Write Objects.LinkFileList
[193/200] Linking math
[195/200] Compiling generate_manual MDocMacro.swift
[196/200] Compiling generate_manual MDocSerializationContext.swift
[197/200] Compiling generate_manual String+Escaping.swift
[198/201] Wrapping AST for generate-manual for debugging
[199/201] Write Objects.LinkFileList
[200/201] Linking generate-manual
Build complete! (47.78s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-argument-parser",
"name" : "swift-argument-parser",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ArgumentParser",
"targets" : [
"ArgumentParser"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "GenerateManual",
"targets" : [
"GenerateManual"
],
"type" : {
"plugin" : null
}
},
{
"name" : "roll",
"targets" : [
"roll"
],
"type" : {
"executable" : null
}
},
{
"name" : "repeat",
"targets" : [
"repeat"
],
"type" : {
"executable" : null
}
},
{
"name" : "math",
"targets" : [
"math"
],
"type" : {
"executable" : null
}
},
{
"name" : "generate-manual",
"targets" : [
"generate-manual"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "roll",
"module_type" : "SwiftTarget",
"name" : "roll",
"path" : "Examples/roll",
"product_memberships" : [
"roll"
],
"sources" : [
"SplitMix64.swift",
"main.swift"
],
"target_dependencies" : [
"ArgumentParser"
],
"type" : "executable"
},
{
"c99name" : "repeat",
"module_type" : "SwiftTarget",
"name" : "repeat",
"path" : "Examples/repeat",
"product_memberships" : [
"repeat"
],
"sources" : [
"Repeat.swift"
],
"target_dependencies" : [
"ArgumentParser"
],
"type" : "executable"
},
{
"c99name" : "math",
"module_type" : "SwiftTarget",
"name" : "math",
"path" : "Examples/math",
"product_memberships" : [
"math"
],
"sources" : [
"Math.swift"
],
"target_dependencies" : [
"ArgumentParser"
],
"type" : "executable"
},
{
"c99name" : "generate_manual",
"module_type" : "SwiftTarget",
"name" : "generate-manual",
"path" : "Tools/generate-manual",
"product_memberships" : [
"GenerateManual",
"generate-manual"
],
"sources" : [
"AuthorArgument.swift",
"DSL/ArgumentSynopsis.swift",
"DSL/Author.swift",
"DSL/Authors.swift",
"DSL/Core/Container.swift",
"DSL/Core/Empty.swift",
"DSL/Core/ForEach.swift",
"DSL/Core/MDocASTNodeWrapper.swift",
"DSL/Core/MDocBuilder.swift",
"DSL/Core/MDocComponent.swift",
"DSL/Document.swift",
"DSL/DocumentDate.swift",
"DSL/Exit.swift",
"DSL/List.swift",
"DSL/MultiPageDescription.swift",
"DSL/Name.swift",
"DSL/Preamble.swift",
"DSL/Section.swift",
"DSL/SeeAlso.swift",
"DSL/SinglePageDescription.swift",
"DSL/Synopsis.swift",
"Extensions/ArgumentParser+MDoc.swift",
"Extensions/Date+ExpressibleByArgument.swift",
"Extensions/Process+SimpleAPI.swift",
"GenerateManual.swift",
"MDoc/MDocASTNode.swift",
"MDoc/MDocMacro.swift",
"MDoc/MDocSerializationContext.swift",
"MDoc/String+Escaping.swift"
],
"target_dependencies" : [
"ArgumentParser",
"ArgumentParserToolInfo"
],
"type" : "executable"
},
{
"c99name" : "GenerateManual",
"module_type" : "PluginTarget",
"name" : "GenerateManual",
"path" : "Plugins/GenerateManual",
"plugin_capability" : {
"intent" : {
"description" : "Generate a manual entry for a specified target.",
"type" : "custom",
"verb" : "generate-manual"
},
"permissions" : [
],
"type" : "command"
},
"product_memberships" : [
"GenerateManual"
],
"sources" : [
"GenerateManualPlugin.swift",
"GenerateManualPluginError.swift",
"PackagePlugin+Helpers.swift"
],
"target_dependencies" : [
"generate-manual"
],
"type" : "plugin"
},
{
"c99name" : "ArgumentParserUnitTests",
"module_type" : "SwiftTarget",
"name" : "ArgumentParserUnitTests",
"path" : "Tests/ArgumentParserUnitTests",
"sources" : [
"CompletionScriptTests.swift",
"DumpHelpGenerationTests.swift",
"ErrorMessageTests.swift",
"ExitCodeTests.swift",
"HelpGenerationTests+AtArgument.swift",
"HelpGenerationTests+AtOption.swift",
"HelpGenerationTests+GroupName.swift",
"HelpGenerationTests.swift",
"InputOriginTests.swift",
"MirrorTests.swift",
"NameSpecificationTests.swift",
"ParsableArgumentsValidationTests.swift",
"SendableTests.swift",
"SequenceExtensionTests.swift",
"SplitArgumentTests.swift",
"StringEditDistanceTests.swift",
"StringSnakeCaseTests.swift",
"StringWrappingTests.swift",
"TreeTests.swift",
"UsageGenerationTests.swift"
],
"target_dependencies" : [
"ArgumentParser",
"ArgumentParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "ArgumentParserToolInfo",
"module_type" : "SwiftTarget",
"name" : "ArgumentParserToolInfo",
"path" : "Sources/ArgumentParserToolInfo",
"product_memberships" : [
"ArgumentParser",
"GenerateManual",
"roll",
"repeat",
"math",
"generate-manual"
],
"sources" : [
"ToolInfo.swift"
],
"type" : "library"
},
{
"c99name" : "ArgumentParserTestHelpers",
"module_type" : "SwiftTarget",
"name" : "ArgumentParserTestHelpers",
"path" : "Sources/ArgumentParserTestHelpers",
"sources" : [
"StringHelpers.swift",
"TestHelpers.swift"
],
"target_dependencies" : [
"ArgumentParser",
"ArgumentParserToolInfo"
],
"type" : "library"
},
{
"c99name" : "ArgumentParserPackageManagerTests",
"module_type" : "SwiftTarget",
"name" : "ArgumentParserPackageManagerTests",
"path" : "Tests/ArgumentParserPackageManagerTests",
"sources" : [
"HelpTests.swift",
"PackageManager/Clean.swift",
"PackageManager/Config.swift",
"PackageManager/Describe.swift",
"PackageManager/GenerateXcodeProject.swift",
"PackageManager/Options.swift",
"Tests.swift"
],
"target_dependencies" : [
"ArgumentParser",
"ArgumentParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "ArgumentParserGenerateManualTests",
"module_type" : "SwiftTarget",
"name" : "ArgumentParserGenerateManualTests",
"path" : "Tests/ArgumentParserGenerateManualTests",
"sources" : [
"CountLinesGenerateManualTests.swift",
"MathGenerateManualTests.swift",
"RepeatGenerateManualTests.swift",
"RollDiceGenerateManualTests.swift"
],
"target_dependencies" : [
"ArgumentParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "ArgumentParserExampleTests",
"module_type" : "SwiftTarget",
"name" : "ArgumentParserExampleTests",
"path" : "Tests/ArgumentParserExampleTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/ArgumentParserExampleTests/CountLinesTest.txt",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"CountLinesExampleTests.swift",
"MathExampleTests.swift",
"RepeatExampleTests.swift",
"RollDiceExampleTests.swift"
],
"target_dependencies" : [
"ArgumentParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "ArgumentParserEndToEndTests",
"module_type" : "SwiftTarget",
"name" : "ArgumentParserEndToEndTests",
"path" : "Tests/ArgumentParserEndToEndTests",
"sources" : [
"AsyncCommandEndToEndTests.swift",
"CustomParsingEndToEndTests.swift",
"DefaultSubcommandEndToEndTests.swift",
"DefaultsEndToEndTests.swift",
"EnumEndToEndTests.swift",
"EqualsEndToEndTests.swift",
"FlagsEndToEndTests.swift",
"JoinedEndToEndTests.swift",
"LongNameWithShortDashEndToEndTests.swift",
"NestedCommandEndToEndTests.swift",
"OptionGroupEndToEndTests.swift",
"OptionalEndToEndTests.swift",
"PositionalEndToEndTests.swift",
"RawRepresentableEndToEndTests.swift",
"RepeatingEndToEndTests+ParsingStrategy.swift",
"RepeatingEndToEndTests.swift",
"ShortNameEndToEndTests.swift",
"SimpleEndToEndTests.swift",
"SingleValueParsingStrategyTests.swift",
"SourceCompatEndToEndTests.swift",
"SubcommandEndToEndTests.swift",
"TransformEndToEndTests.swift",
"UnparsedValuesEndToEndTest.swift",
"ValidationEndToEndTests.swift"
],
"target_dependencies" : [
"ArgumentParser",
"ArgumentParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "ArgumentParser",
"module_type" : "SwiftTarget",
"name" : "ArgumentParser",
"path" : "Sources/ArgumentParser",
"product_memberships" : [
"ArgumentParser",
"GenerateManual",
"roll",
"repeat",
"math",
"generate-manual"
],
"sources" : [
"Completions/BashCompletionsGenerator.swift",
"Completions/CompletionsGenerator.swift",
"Completions/FishCompletionsGenerator.swift",
"Completions/ZshCompletionsGenerator.swift",
"Parsable Properties/Argument.swift",
"Parsable Properties/ArgumentHelp.swift",
"Parsable Properties/ArgumentVisibility.swift",
"Parsable Properties/CompletionKind.swift",
"Parsable Properties/Errors.swift",
"Parsable Properties/Flag.swift",
"Parsable Properties/NameSpecification.swift",
"Parsable Properties/Option.swift",
"Parsable Properties/OptionGroup.swift",
"Parsable Types/AsyncParsableCommand.swift",
"Parsable Types/CommandConfiguration.swift",
"Parsable Types/CommandGroup.swift",
"Parsable Types/EnumerableFlag.swift",
"Parsable Types/ExpressibleByArgument.swift",
"Parsable Types/ParsableArguments.swift",
"Parsable Types/ParsableArgumentsValidation.swift",
"Parsable Types/ParsableCommand.swift",
"Parsing/ArgumentDecoder.swift",
"Parsing/ArgumentDefinition.swift",
"Parsing/ArgumentSet.swift",
"Parsing/CommandParser.swift",
"Parsing/InputKey.swift",
"Parsing/InputOrigin.swift",
"Parsing/Name.swift",
"Parsing/Parsed.swift",
"Parsing/ParsedValues.swift",
"Parsing/ParserError.swift",
"Parsing/SplitArguments.swift",
"Usage/DumpHelpGenerator.swift",
"Usage/HelpCommand.swift",
"Usage/HelpGenerator.swift",
"Usage/MessageInfo.swift",
"Usage/UsageGenerator.swift",
"Utilities/CollectionExtensions.swift",
"Utilities/Platform.swift",
"Utilities/SequenceExtensions.swift",
"Utilities/StringExtensions.swift",
"Utilities/Tree.swift"
],
"target_dependencies" : [
"ArgumentParserToolInfo"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Done.