Build Information
Successful build of OutputUhooi with Swift 6.0 for Linux.
Swift 6 data race errors: 1
Build Command
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/uhooi/swift-output-uhooi.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/uhooi/swift-output-uhooi
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at ea7a639 Merge pull request #19 from uhooi/feature/bump_swift_argument_parser_to_1.1.3
Cloned https://github.com/uhooi/swift-output-uhooi.git
Revision (git rev-parse @):
ea7a63952b75048e2ebd7c52efd5479d84300978
SUCCESS checkout https://github.com/uhooi/swift-output-uhooi.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $workDir
https://github.com/uhooi/swift-output-uhooi.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Fetching https://github.com/apple/swift-argument-parser
[1/11714] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (0.62s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.1.3 (0.45s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.1.3
Building for debugging...
[0/11] Write sources
[4/11] Write swift-version-24593BA9C3E375BF.txt
[6/15] Compiling OutputUhooiCore TextBuilder.swift
[7/15] Emitting module OutputUhooiCore
[8/16] Emitting module ArgumentParserToolInfo
[9/16] Compiling ArgumentParserToolInfo ToolInfo.swift
[11/17] Wrapping AST for OutputUhooiCore for debugging
[12/17] Wrapping AST for ArgumentParserToolInfo for debugging
[14/53] Emitting module ArgumentParser
[15/57] Compiling ArgumentParser Name.swift
[16/57] Compiling ArgumentParser Parsed.swift
[17/57] Compiling ArgumentParser ParsedValues.swift
[18/57] Compiling ArgumentParser ParserError.swift
[19/57] Compiling ArgumentParser SplitArguments.swift
[20/57] Compiling ArgumentParser ArgumentHelp.swift
[21/57] Compiling ArgumentParser ArgumentVisibility.swift
[22/57] Compiling ArgumentParser CompletionKind.swift
[23/57] Compiling ArgumentParser Errors.swift
[24/57] Compiling ArgumentParser Flag.swift
[25/57] Compiling ArgumentParser BashCompletionsGenerator.swift
[26/57] Compiling ArgumentParser CompletionsGenerator.swift
[27/57] Compiling ArgumentParser FishCompletionsGenerator.swift
[28/57] Compiling ArgumentParser ZshCompletionsGenerator.swift
[29/57] Compiling ArgumentParser Argument.swift
[30/57] Compiling ArgumentParser CollectionExtensions.swift
[31/57] Compiling ArgumentParser SequenceExtensions.swift
[32/57] Compiling ArgumentParser StringExtensions.swift
[33/57] Compiling ArgumentParser Tree.swift
[34/57] Compiling ArgumentParser ArgumentDecoder.swift
[35/57] Compiling ArgumentParser ArgumentDefinition.swift
[36/57] Compiling ArgumentParser ArgumentSet.swift
[37/57] Compiling ArgumentParser CommandParser.swift
[38/57] Compiling ArgumentParser InputOrigin.swift
[39/57] Compiling ArgumentParser DumpHelpGenerator.swift
[40/57] Compiling ArgumentParser HelpCommand.swift
[41/57] Compiling ArgumentParser HelpGenerator.swift
[42/57] Compiling ArgumentParser MessageInfo.swift
[43/57] Compiling ArgumentParser UsageGenerator.swift
[44/57] Compiling ArgumentParser NameSpecification.swift
[45/57] Compiling ArgumentParser Option.swift
[46/57] Compiling ArgumentParser OptionGroup.swift
[47/57] Compiling ArgumentParser AsyncParsableCommand.swift
[48/57] Compiling ArgumentParser CommandConfiguration.swift
[49/57] Compiling ArgumentParser EnumerableFlag.swift
[50/57] Compiling ArgumentParser ExpressibleByArgument.swift
[51/57] Compiling ArgumentParser ParsableArguments.swift
[52/57] Compiling ArgumentParser ParsableArgumentsValidation.swift
[53/57] Compiling ArgumentParser ParsableCommand.swift
[54/58] Wrapping AST for ArgumentParser for debugging
[56/60] Emitting module OutputUhooi
/host/spi-builder-workspace/Sources/OutputUhooi/Uhooi.swift:7:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
5 | struct Uhooi: AsyncParsableCommand {
6 |
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | abstract: "Uhooi speak the phrase.",
9 | version: "0.2.0"
[57/60] Compiling OutputUhooi Uhooi.swift
/host/spi-builder-workspace/Sources/OutputUhooi/Uhooi.swift:7:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
5 | struct Uhooi: AsyncParsableCommand {
6 |
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | abstract: "Uhooi speak the phrase.",
9 | version: "0.2.0"
[58/61] Wrapping AST for OutputUhooi for debugging
[59/61] Write Objects.LinkFileList
[60/61] Linking uhooi
Build complete! (13.43s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
}
],
"manifest_display_name" : "OutputUhooi",
"name" : "OutputUhooi",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "uhooi",
"targets" : [
"OutputUhooi"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "OutputUhooiTests",
"module_type" : "SwiftTarget",
"name" : "OutputUhooiTests",
"path" : "Tests/OutputUhooiTests",
"sources" : [
"OutputUhooiTests.swift"
],
"target_dependencies" : [
"OutputUhooi"
],
"type" : "test"
},
{
"c99name" : "OutputUhooiCoreTests",
"module_type" : "SwiftTarget",
"name" : "OutputUhooiCoreTests",
"path" : "Tests/OutputUhooiCoreTests",
"sources" : [
"TextBuilderTests.swift"
],
"target_dependencies" : [
"OutputUhooiCore"
],
"type" : "test"
},
{
"c99name" : "OutputUhooiCore",
"module_type" : "SwiftTarget",
"name" : "OutputUhooiCore",
"path" : "Sources/OutputUhooiCore",
"product_memberships" : [
"uhooi"
],
"sources" : [
"TextBuilder.swift"
],
"type" : "library"
},
{
"c99name" : "OutputUhooi",
"module_type" : "SwiftTarget",
"name" : "OutputUhooi",
"path" : "Sources/OutputUhooi",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"uhooi"
],
"sources" : [
"Uhooi.swift"
],
"target_dependencies" : [
"OutputUhooiCore"
],
"type" : "executable"
}
],
"tools_version" : "5.6"
}
Done.