Build Information
Successful build of SwiftIndexStore, reference master (7fc1b1), with Swift 6.3 for Linux on 20 Apr 2026 21:44:03 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ileitch/swift-indexstore.git
Reference: master
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/ileitch/swift-indexstore
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 7fc1b1e Update IndexStoreSymbol
Cloned https://github.com/ileitch/swift-indexstore.git
Revision (git rev-parse @):
7fc1b1e59955b070e28bb32c29e8774625bab5a1
SUCCESS checkout https://github.com/ileitch/swift-indexstore.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.3
Building package at path: $PWD
https://github.com/ileitch/swift-indexstore.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Fetching https://github.com/apple/swift-argument-parser
[1/17527] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (0.89s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.1 (1.38s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.7.1
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/14] Write sources
[6/14] Compiling _CIndexStore dummy.c
[7/14] Write swift-version-24593BA9C3E375BF.txt
[9/26] Compiling SwiftIndexStore IndexStoreUnit.swift
[10/27] Compiling SwiftIndexStore IndexStoreRelation.swift
[11/27] Compiling SwiftIndexStore IndexStoreSymbol.swift
[12/27] Emitting module ArgumentParserToolInfo
[13/27] Compiling ArgumentParserToolInfo ToolInfo.swift
[14/28] Wrapping AST for ArgumentParserToolInfo for debugging
[16/74] Emitting module ArgumentParser
[17/80] Compiling ArgumentParser ParentCommand.swift
[18/80] Compiling ArgumentParser AsyncParsableCommand.swift
[19/80] Compiling ArgumentParser CommandConfiguration.swift
[20/80] Compiling ArgumentParser CommandGroup.swift
[21/80] Compiling ArgumentParser EnumerableFlag.swift
[22/80] Compiling ArgumentParser ExpressibleByArgument.swift
[23/80] Compiling ArgumentParser ParsableArguments.swift
[24/80] Compiling SwiftIndexStore UnfairLock.swift
[25/80] Emitting module SwiftIndexStore
/host/spi-builder-workspace/Sources/SwiftIndexStore/LibIndexStore.swift:17:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
15 | func getPath() -> String { url.path }
16 |
17 | subscript<T>(dynamicMember keyPath: KeyPath<indexstore_functions_t, T>) -> T {
| `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
18 | api[keyPath: keyPath]
19 | }
[26/80] Compiling ArgumentParser BashCompletionsGenerator.swift
[27/80] Compiling ArgumentParser CompletionsGenerator.swift
[28/80] Compiling ArgumentParser InputOrigin.swift
[29/80] Compiling ArgumentParser Name.swift
[30/80] Compiling ArgumentParser Parsed.swift
[31/80] Compiling ArgumentParser ParsedValues.swift
[32/80] Compiling ArgumentParser ParserError.swift
[33/80] Compiling ArgumentParser SplitArguments.swift
[34/80] Compiling ArgumentParser ArgumentVisibility.swift
[35/80] Compiling ArgumentParser CompletionKind.swift
[36/80] Compiling ArgumentParser Errors.swift
[37/80] Compiling ArgumentParser Flag.swift
[38/80] Compiling ArgumentParser NameSpecification.swift
[39/80] Compiling ArgumentParser Option.swift
[40/80] Compiling ArgumentParser OptionGroup.swift
[41/80] Compiling SwiftIndexStore Process+Extension.swift
/host/spi-builder-workspace/Sources/SwiftIndexStore/Process+Extension.swift:15:17: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
13 | static func exec(bin: String, arguments: [String], cwd: String? = nil) throws -> (stdout: String, stderr: String) {
14 | let process = Process()
15 | process.launchPath = bin
| |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
| `- note: use 'executableURL' instead
16 | process.arguments = arguments
17 | if let cwd = cwd {
/host/spi-builder-workspace/Sources/SwiftIndexStore/Process+Extension.swift:18:21: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
16 | process.arguments = arguments
17 | if let cwd = cwd {
18 | process.currentDirectoryPath = cwd
| |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
| `- note: use 'currentDirectoryURL' instead
19 | }
20 |
/host/spi-builder-workspace/Sources/SwiftIndexStore/Process+Extension.swift:25:17: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
23 | process.standardOutput = stdoutPipe
24 | process.standardError = stderrPipe
25 | process.launch()
| |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
| `- note: use 'run' instead
26 | process.waitUntilExit()
27 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[42/80] Compiling SwiftIndexStore OptionSetDisplayable.swift
[43/80] Compiling SwiftIndexStore LibIndexStore.swift
/host/spi-builder-workspace/Sources/SwiftIndexStore/LibIndexStore.swift:17:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
15 | func getPath() -> String { url.path }
16 |
17 | subscript<T>(dynamicMember keyPath: KeyPath<indexstore_functions_t, T>) -> T {
| `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
18 | api[keyPath: keyPath]
19 | }
[44/80] Compiling SwiftIndexStore SwiftIndexStore.swift
[45/81] Wrapping AST for SwiftIndexStore for debugging
[47/81] Compiling ArgumentParser Tree.swift
[48/81] Compiling ArgumentParser CodingKeyValidator.swift
[49/81] Compiling ArgumentParser NonsenseFlagsValidator.swift
[50/81] Compiling ArgumentParser ParsableArgumentsValidation.swift
[51/81] Compiling ArgumentParser PositionalArgumentsValidator.swift
[52/81] Compiling ArgumentParser UniqueNamesValidator.swift
[55/81] Compiling ArgumentParser FishCompletionsGenerator.swift
[56/81] Compiling ArgumentParser ZshCompletionsGenerator.swift
[57/81] Compiling ArgumentParser Argument.swift
[58/81] Compiling ArgumentParser ArgumentDiscussion.swift
[59/81] Compiling ArgumentParser ArgumentHelp.swift
[60/81] Compiling ArgumentParser DumpHelpGenerator.swift
[61/81] Compiling ArgumentParser HelpCommand.swift
[62/81] Compiling ArgumentParser HelpGenerator.swift
[63/81] Compiling ArgumentParser MessageInfo.swift
[64/81] Compiling ArgumentParser UsageGenerator.swift
[65/81] Compiling ArgumentParser CollectionExtensions.swift
[66/81] Compiling ArgumentParser Foundation.swift
[67/81] Compiling ArgumentParser Mutex.swift
[68/81] Compiling ArgumentParser Platform.swift
[69/81] Compiling ArgumentParser SequenceExtensions.swift
[70/81] Compiling ArgumentParser StringExtensions.swift
[71/81] Compiling ArgumentParser SwiftExtensions.swift
[72/81] Compiling ArgumentParser ParsableCommand.swift
[73/81] Compiling ArgumentParser ArgumentDecoder.swift
[74/81] Compiling ArgumentParser ArgumentDefinition.swift
[75/81] Compiling ArgumentParser ArgumentSet.swift
[76/81] Compiling ArgumentParser CommandParser.swift
[77/81] Compiling ArgumentParser InputKey.swift
[78/82] Wrapping AST for ArgumentParser for debugging
[80/85] Compiling IndexDumpTool main.swift
[81/85] Compiling IndexDumpTool IndexDumpTool.swift
[82/85] Emitting module IndexDumpTool
[83/86] Wrapping AST for IndexDumpTool for debugging
[84/86] Write Objects.LinkFileList
[85/86] Linking index-dump-tool
Build complete! (19.70s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
}
],
"manifest_display_name" : "SwiftIndexStore",
"name" : "SwiftIndexStore",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SwiftIndexStore",
"targets" : [
"SwiftIndexStore"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "index-dump-tool",
"targets" : [
"IndexDumpTool"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "_CIndexStore",
"module_type" : "ClangTarget",
"name" : "_CIndexStore",
"path" : "Sources/_CIndexStore",
"product_memberships" : [
"SwiftIndexStore",
"index-dump-tool"
],
"sources" : [
"dummy.c"
],
"type" : "library"
},
{
"c99name" : "SwiftIndexStoreTests",
"module_type" : "SwiftTarget",
"name" : "SwiftIndexStoreTests",
"path" : "Tests/SwiftIndexStoreTests",
"sources" : [
"IndexSpace.swift",
"SwiftIndexStoreTests.swift",
"Toolchain.swift"
],
"target_dependencies" : [
"SwiftIndexStore"
],
"type" : "test"
},
{
"c99name" : "SwiftIndexStore",
"module_type" : "SwiftTarget",
"name" : "SwiftIndexStore",
"path" : "Sources/SwiftIndexStore",
"product_memberships" : [
"SwiftIndexStore",
"index-dump-tool"
],
"sources" : [
"IndexStoreError.swift",
"IndexStoreOccurrence.swift",
"IndexStoreRelation.swift",
"IndexStoreSymbol.swift",
"IndexStoreUnit.swift",
"LibIndexStore.swift",
"OptionSetDisplayable.swift",
"Process+Extension.swift",
"SwiftIndexStore.swift",
"UnfairLock.swift"
],
"target_dependencies" : [
"_CIndexStore"
],
"type" : "library"
},
{
"c99name" : "IndexDumpTool",
"module_type" : "SwiftTarget",
"name" : "IndexDumpTool",
"path" : "Sources/IndexDumpTool",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"index-dump-tool"
],
"sources" : [
"IndexDumpTool.swift",
"main.swift"
],
"target_dependencies" : [
"SwiftIndexStore"
],
"type" : "executable"
}
],
"tools_version" : "5.8"
}
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Done.