The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftIndexStore, reference 0.5.0 (26d3af), with Swift 6.3 for Linux on 18 Apr 2026 18:53:21 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kateinoigakukun/swift-indexstore.git
Reference: 0.5.0
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/kateinoigakukun/swift-indexstore
 * tag               0.5.0      -> FETCH_HEAD
HEAD is now at 26d3af1 Merge pull request #17 from ileitch/bazel9
Cloned https://github.com/kateinoigakukun/swift-indexstore.git
Revision (git rev-parse @):
26d3af186fb38ec3a96c8a9a3172b7ccc3565524
SUCCESS checkout https://github.com/kateinoigakukun/swift-indexstore.git at 0.5.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.3
Building package at path:  $PWD
https://github.com/kateinoigakukun/swift-indexstore.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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/17529] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.19s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.1 (2.00s)
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] 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 |     }
[10/27] Compiling ArgumentParserToolInfo ToolInfo.swift
[11/27] Emitting module ArgumentParserToolInfo
[12/28] Wrapping AST for ArgumentParserToolInfo for debugging
[14/74] Emitting module ArgumentParser
[15/80] Compiling ArgumentParser ParentCommand.swift
[16/80] Compiling ArgumentParser AsyncParsableCommand.swift
[17/80] Compiling ArgumentParser CommandConfiguration.swift
[18/80] Compiling ArgumentParser CommandGroup.swift
[19/80] Compiling ArgumentParser EnumerableFlag.swift
[20/80] Compiling ArgumentParser ExpressibleByArgument.swift
[21/80] Compiling ArgumentParser ParsableArguments.swift
[22/80] Compiling ArgumentParser BashCompletionsGenerator.swift
[23/80] Compiling ArgumentParser CompletionsGenerator.swift
[24/80] Compiling SwiftIndexStore UnfairLock.swift
[25/80] Compiling SwiftIndexStore OptionSetDisplayable.swift
[26/80] Compiling SwiftIndexStore IndexStoreUnit.swift
[27/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 |     }
[28/80] Compiling SwiftIndexStore SwiftIndexStore.swift
[29/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>
[30/80] Compiling ArgumentParser FishCompletionsGenerator.swift
[31/80] Compiling ArgumentParser ZshCompletionsGenerator.swift
[33/81] Compiling ArgumentParser ArgumentVisibility.swift
[34/81] Compiling ArgumentParser CompletionKind.swift
[35/81] Compiling ArgumentParser Errors.swift
[36/81] Compiling ArgumentParser Flag.swift
[37/81] Compiling ArgumentParser NameSpecification.swift
[38/81] Compiling ArgumentParser Option.swift
[39/81] Compiling ArgumentParser OptionGroup.swift
[39/81] Wrapping AST for SwiftIndexStore for debugging
[41/81] Compiling ArgumentParser Tree.swift
[42/81] Compiling ArgumentParser CodingKeyValidator.swift
[43/81] Compiling ArgumentParser NonsenseFlagsValidator.swift
[44/81] Compiling ArgumentParser ParsableArgumentsValidation.swift
[45/81] Compiling ArgumentParser PositionalArgumentsValidator.swift
[46/81] Compiling ArgumentParser UniqueNamesValidator.swift
[51/81] Compiling ArgumentParser Argument.swift
[52/81] Compiling ArgumentParser ArgumentDiscussion.swift
[53/81] Compiling ArgumentParser ArgumentHelp.swift
[54/81] Compiling ArgumentParser DumpHelpGenerator.swift
[55/81] Compiling ArgumentParser HelpCommand.swift
[56/81] Compiling ArgumentParser HelpGenerator.swift
[57/81] Compiling ArgumentParser MessageInfo.swift
[58/81] Compiling ArgumentParser UsageGenerator.swift
[59/81] Compiling ArgumentParser CollectionExtensions.swift
[60/81] Compiling ArgumentParser Foundation.swift
[61/81] Compiling ArgumentParser Mutex.swift
[62/81] Compiling ArgumentParser Platform.swift
[63/81] Compiling ArgumentParser SequenceExtensions.swift
[64/81] Compiling ArgumentParser StringExtensions.swift
[65/81] Compiling ArgumentParser SwiftExtensions.swift
[66/81] Compiling ArgumentParser InputOrigin.swift
[67/81] Compiling ArgumentParser Name.swift
[68/81] Compiling ArgumentParser Parsed.swift
[69/81] Compiling ArgumentParser ParsedValues.swift
[70/81] Compiling ArgumentParser ParserError.swift
[71/81] Compiling ArgumentParser SplitArguments.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] Emitting module IndexDumpTool
[81/85] Compiling IndexDumpTool IndexDumpTool.swift
[82/85] Compiling IndexDumpTool main.swift
[83/86] Wrapping AST for IndexDumpTool for debugging
[84/86] Write Objects.LinkFileList
[85/86] Linking index-dump-tool
Build complete! (25.28s)
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.