Build Information
Failed to build AST, reference main (cad7c2), with Swift 6.2 for Linux on 20 Jun 2025 21:04:57 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/AnarchoSystems/AST.git
Reference: main
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/AnarchoSystems/AST
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at cad7c2c associated type changed
Cloned https://github.com/AnarchoSystems/AST.git
Revision (git rev-parse @):
cad7c2c4127a5e79a48991e33db5a787fb2b0506
SUCCESS checkout https://github.com/AnarchoSystems/AST.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/AnarchoSystems/AST.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/apple/swift-argument-parser.git
[1/15380] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.22s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.5.1 (1.96s)
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.5.1
[0/13] Write sources
[5/13] Write swift-version-24593BA9C3E375BF.txt
[7/30] Compiling AST ClosedGraph.swift
[8/30] Compiling AST Constructor.swift
[9/31] Compiling AST Parser+CLR1.swift
[10/31] Compiling AST Parser.swift
[11/31] Compiling AST PropertyWrappers.swift
[12/31] Compiling AST Sourcegen.swift
[13/31] Compiling ArgumentParserToolInfo ToolInfo.swift
[14/31] Emitting module ArgumentParserToolInfo
[16/32] Compiling AST Expr.swift
[17/32] Compiling AST Grammar.swift
[18/32] Compiling AST Context.swift
[19/32] Compiling AST Errors.swift
[19/32] Wrapping AST for ArgumentParserToolInfo for debugging
[21/70] Compiling AST Utils.swift
[22/70] Compiling ArgumentParser Name.swift
[23/70] Compiling ArgumentParser Parsed.swift
[24/70] Compiling ArgumentParser ParsedValues.swift
[25/70] Compiling ArgumentParser ParserError.swift
[26/70] Compiling ArgumentParser SplitArguments.swift
[27/75] Compiling ArgumentParser ArgumentVisibility.swift
[28/75] Compiling ArgumentParser CompletionKind.swift
[29/75] Compiling ArgumentParser Errors.swift
[30/75] Compiling ArgumentParser Flag.swift
[31/75] Compiling ArgumentParser NameSpecification.swift
[32/75] Compiling ArgumentParser Option.swift
[33/75] Compiling ArgumentParser BashCompletionsGenerator.swift
[34/75] Compiling ArgumentParser CompletionsGenerator.swift
[35/75] Compiling ArgumentParser FishCompletionsGenerator.swift
[36/75] Compiling ArgumentParser ZshCompletionsGenerator.swift
[37/75] Compiling ArgumentParser Argument.swift
[38/75] Compiling ArgumentParser ArgumentHelp.swift
[39/75] Emitting module ArgumentParser
[40/75] Compiling ArgumentParser ExpressibleByArgument.swift
[41/75] Compiling ArgumentParser ParsableArguments.swift
[42/75] Compiling ArgumentParser ParsableArgumentsValidation.swift
[43/75] Compiling ArgumentParser ParsableCommand.swift
[44/75] Compiling ArgumentParser ArgumentDecoder.swift
[45/75] Compiling ArgumentParser OptionGroup.swift
[46/75] Compiling ArgumentParser AsyncParsableCommand.swift
[47/75] Compiling ArgumentParser CommandConfiguration.swift
[48/75] Compiling ArgumentParser CommandGroup.swift
[49/75] Compiling ArgumentParser EnumerableFlag.swift
[50/75] Emitting module AST
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:15:1: warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Character : Codable {
| |- warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 |
17 | public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:15:1: warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Character : Codable {
| |- warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 |
17 | public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:27: error: missing argument for parameter 'coder' in call
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: missing argument for parameter 'coder' in call
25 | }
26 | self = str.first!
Foundation.NSError.init:2:17: note: 'init(coder:)' declared here
1 | class NSError {
2 | required public init?(coder aDecoder: NSCoder)}
| `- note: 'init(coder:)' declared here
3 |
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:19: error: thrown expression type 'NSError?' does not conform to 'Error'
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: thrown expression type 'NSError?' does not conform to 'Error'
25 | }
26 | self = str.first!
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:15:1: warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Character : Codable {
| |- warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 |
17 | public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:27: error: missing argument for parameter 'coder' in call
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: missing argument for parameter 'coder' in call
25 | }
26 | self = str.first!
Foundation.NSError.init:2:17: note: 'init(coder:)' declared here
1 | class NSError {
2 | required public init?(coder aDecoder: NSCoder)}
| `- note: 'init(coder:)' declared here
3 |
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:19: error: thrown expression type 'NSError?' does not conform to 'Error'
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: thrown expression type 'NSError?' does not conform to 'Error'
25 | }
26 | self = str.first!
[57/75] Compiling ArgumentParser CollectionExtensions.swift
[58/75] Compiling ArgumentParser Platform.swift
[59/75] Compiling ArgumentParser SequenceExtensions.swift
[60/75] Compiling ArgumentParser StringExtensions.swift
[61/75] Compiling ArgumentParser Tree.swift
[62/75] Compiling ArgumentParser ArgumentDefinition.swift
[63/75] Compiling ArgumentParser ArgumentSet.swift
[64/75] Compiling ArgumentParser CommandParser.swift
[65/75] Compiling ArgumentParser InputKey.swift
[66/75] Compiling ArgumentParser InputOrigin.swift
[67/75] Compiling ArgumentParser DumpHelpGenerator.swift
[68/75] Compiling ArgumentParser HelpCommand.swift
[69/75] Compiling ArgumentParser HelpGenerator.swift
[70/75] Compiling ArgumentParser MessageInfo.swift
[71/75] Compiling ArgumentParser UsageGenerator.swift
[73/76] Wrapping AST for ArgumentParser for debugging
[1/1] Compiling plugin GenerateTestGrammarSources
[2/2] Compiling plugin GenerateManual
Building for debugging...
[2/27] Write sources
[12/27] Write swift-version-24593BA9C3E375BF.txt
[14/48] Compiling AST Stack.swift
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:15:1: warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Character : Codable {
| |- warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 |
17 | public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:27: error: missing argument for parameter 'coder' in call
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: missing argument for parameter 'coder' in call
25 | }
26 | self = str.first!
Foundation.NSError.init:2:17: note: 'init(coder:)' declared here
1 | class NSError {
2 | required public init?(coder aDecoder: NSCoder)}
| `- note: 'init(coder:)' declared here
3 |
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:19: error: thrown expression type 'NSError?' does not conform to 'Error'
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: thrown expression type 'NSError?' does not conform to 'Error'
25 | }
26 | self = str.first!
[15/48] Compiling AST SymbolProtocol.swift
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:15:1: warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Character : Codable {
| |- warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 |
17 | public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:27: error: missing argument for parameter 'coder' in call
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: missing argument for parameter 'coder' in call
25 | }
26 | self = str.first!
Foundation.NSError.init:2:17: note: 'init(coder:)' declared here
1 | class NSError {
2 | required public init?(coder aDecoder: NSCoder)}
| `- note: 'init(coder:)' declared here
3 |
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:19: error: thrown expression type 'NSError?' does not conform to 'Error'
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: thrown expression type 'NSError?' does not conform to 'Error'
25 | }
26 | self = str.first!
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:15:1: warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Character : Codable {
| |- warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 |
17 | public func encode(to encoder: Encoder) throws {
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:27: error: missing argument for parameter 'coder' in call
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: missing argument for parameter 'coder' in call
25 | }
26 | self = str.first!
Foundation.NSError.init:2:17: note: 'init(coder:)' declared here
1 | class NSError {
2 | required public init?(coder aDecoder: NSCoder)}
| `- note: 'init(coder:)' declared here
3 |
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:24:19: error: thrown expression type 'NSError?' does not conform to 'Error'
22 | let str = try String(from: decoder)
23 | guard str.count == 1 else {
24 | throw NSError() //todo
| `- error: thrown expression type 'NSError?' does not conform to 'Error'
25 | }
26 | self = str.first!
[17/49] Emitting module ArgumentParserToolInfo
[18/50] Compiling AST Stack.swift
[19/52] Wrapping AST for ArgumentParserToolInfo for debugging
[21/52] Compiling AST Expr.swift
[22/52] Compiling AST Grammar.swift
[23/52] Emitting module AST
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:15:1: warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Character : Codable {
| |- warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 |
17 | public func encode(to encoder: Encoder) throws {
[24/53] Compiling AST ASTNode.swift
[25/53] Compiling AST Action.swift
[26/53] Compiling AST Utils.swift
[27/53] Compiling ArgumentParserToolInfo ToolInfo.swift
[28/53] Emitting module ArgumentParserToolInfo
[29/54] Wrapping AST for ArgumentParserToolInfo for debugging
[31/92] Compiling ArgumentParser FishCompletionsGenerator.swift
[32/92] Compiling ArgumentParser ZshCompletionsGenerator.swift
[33/92] Compiling AST Parser.swift
[34/92] Compiling AST Sourcegen.swift
[35/92] Compiling ArgumentParser BashCompletionsGenerator.swift
[36/92] Compiling ArgumentParser CompletionsGenerator.swift
[37/92] Emitting module AST
/host/spi-builder-workspace/Sources/AST/SymbolProtocol.swift:15:1: warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Character : Codable {
| |- warning: extension declares a conformance of imported type 'Character' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 |
17 | public func encode(to encoder: Encoder) throws {
[38/92] Compiling ArgumentParser NameSpecification.swift
[39/92] Compiling ArgumentParser Option.swift
BUILD FAILURE 6.2 linux