The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftIndexStore, reference master (7fc1b1), with Swift 6.2 for Linux on 20 Jun 2025 23:51:05 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:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.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.2
Building package at path:  $PWD
https://github.com/ileitch/swift-indexstore.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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
[1/15380] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.48s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.1 (2.02s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.5.1
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/13] Write sources
[5/13] Compiling _CIndexStore dummy.c
[6/13] Write swift-version-24593BA9C3E375BF.txt
[8/25] Compiling SwiftIndexStore IndexStoreUnit.swift
[9/26] Emitting module ArgumentParserToolInfo
[10/26] Compiling ArgumentParserToolInfo ToolInfo.swift
[12/27] Compiling SwiftIndexStore IndexStoreRelation.swift
[13/27] Compiling SwiftIndexStore IndexStoreSymbol.swift
[13/27] Wrapping AST for ArgumentParserToolInfo for debugging
[15/65] Compiling ArgumentParser OptionGroup.swift
[16/65] Compiling ArgumentParser AsyncParsableCommand.swift
[17/65] Compiling ArgumentParser CommandConfiguration.swift
[18/65] Compiling ArgumentParser CommandGroup.swift
[19/65] Compiling ArgumentParser EnumerableFlag.swift
[20/70] Emitting module SwiftIndexStore
[21/70] Compiling ArgumentParser ArgumentVisibility.swift
[22/70] Compiling ArgumentParser CompletionKind.swift
[23/70] Compiling SwiftIndexStore UnfairLock.swift
[24/70] Compiling ArgumentParser CollectionExtensions.swift
[25/70] Compiling ArgumentParser Platform.swift
[26/70] Compiling ArgumentParser SequenceExtensions.swift
[27/70] Compiling ArgumentParser StringExtensions.swift
[28/70] Compiling ArgumentParser Tree.swift
[29/70] Emitting module ArgumentParser
[30/70] Compiling ArgumentParser Name.swift
[31/70] Compiling ArgumentParser Parsed.swift
[32/70] Compiling ArgumentParser ParsedValues.swift
[33/70] Compiling ArgumentParser ParserError.swift
[34/70] Compiling ArgumentParser SplitArguments.swift
[35/70] Compiling ArgumentParser ExpressibleByArgument.swift
[36/70] Compiling ArgumentParser ParsableArguments.swift
[37/70] Compiling ArgumentParser ParsableArgumentsValidation.swift
[38/70] Compiling ArgumentParser ParsableCommand.swift
[39/70] Compiling ArgumentParser ArgumentDecoder.swift
[40/70] Compiling ArgumentParser BashCompletionsGenerator.swift
[41/70] Compiling ArgumentParser CompletionsGenerator.swift
[42/70] Compiling ArgumentParser FishCompletionsGenerator.swift
[43/70] Compiling ArgumentParser ZshCompletionsGenerator.swift
[44/70] Compiling ArgumentParser Argument.swift
[45/70] Compiling ArgumentParser ArgumentHelp.swift
[46/70] 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>
[47/70] Compiling SwiftIndexStore OptionSetDisplayable.swift
[48/70] Compiling SwiftIndexStore SwiftIndexStore.swift
[49/70] Compiling SwiftIndexStore LibIndexStore.swift
[50/71] Wrapping AST for SwiftIndexStore for debugging
[52/71] Compiling ArgumentParser DumpHelpGenerator.swift
[53/71] Compiling ArgumentParser HelpCommand.swift
[54/71] Compiling ArgumentParser HelpGenerator.swift
[55/71] Compiling ArgumentParser MessageInfo.swift
[56/71] Compiling ArgumentParser UsageGenerator.swift
[59/71] Compiling ArgumentParser Errors.swift
[60/71] Compiling ArgumentParser Flag.swift
[61/71] Compiling ArgumentParser NameSpecification.swift
[62/71] Compiling ArgumentParser Option.swift
[63/71] Compiling ArgumentParser ArgumentDefinition.swift
[64/71] Compiling ArgumentParser ArgumentSet.swift
[65/71] Compiling ArgumentParser CommandParser.swift
[66/71] Compiling ArgumentParser InputKey.swift
[67/71] Compiling ArgumentParser InputOrigin.swift
[68/72] Wrapping AST for ArgumentParser for debugging
[70/75] Compiling IndexDumpTool main.swift
[71/75] Emitting module IndexDumpTool
[72/75] Compiling IndexDumpTool IndexDumpTool.swift
[73/76] Wrapping AST for IndexDumpTool for debugging
[74/76] Write Objects.LinkFileList
[75/76] Linking index-dump-tool
Build complete! (23.38s)
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.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
Done.