The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of PackageConfig, reference 1.1.3 (585231), with Swift 6.2 (beta) for Linux on 19 Jun 2025 07:16:13 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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/shibapm/packageconfig.git
Reference: 1.1.3
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/shibapm/packageconfig
 * tag               1.1.3      -> FETCH_HEAD
HEAD is now at 5852319 Merge pull request #27 from minuscorp/rename-example-product
Cloned https://github.com/shibapm/packageconfig.git
Revision (git rev-parse @):
58523193c26fb821ed1720dcd8a21009055c7cdb
SUCCESS checkout https://github.com/shibapm/packageconfig.git at 1.1.3
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/shibapm/packageconfig.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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
Building for debugging...
[0/18] Write sources
[5/18] Write swift-version-24593BA9C3E375BF.txt
[7/28] Emitting module PackageConfigExecutable
/host/spi-builder-workspace/Sources/PackageConfigExecutable/main.swift:12:9: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
10 | swift build --target PackageConfigs
11 | """
12 | process.launchPath = "/bin/bash"
   |         |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
   |         `- note: use 'executableURL' instead
13 | process.arguments = ["-c", script]
14 | process.launch()
/host/spi-builder-workspace/Sources/PackageConfigExecutable/main.swift:14:9: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
12 | process.launchPath = "/bin/bash"
13 | process.arguments = ["-c", script]
14 | process.launch()
   |         |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
   |         `- note: use 'run' instead
15 | process.waitUntilExit()
16 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[8/28] Compiling PackageConfig Error.swift
[9/28] Compiling PackageConfigExecutable main.swift
/host/spi-builder-workspace/Sources/PackageConfigExecutable/main.swift:12:9: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
10 | swift build --target PackageConfigs
11 | """
12 | process.launchPath = "/bin/bash"
   |         |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
   |         `- note: use 'executableURL' instead
13 | process.arguments = ["-c", script]
14 | process.launch()
/host/spi-builder-workspace/Sources/PackageConfigExecutable/main.swift:14:9: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
12 | process.launchPath = "/bin/bash"
13 | process.arguments = ["-c", script]
14 | process.launch()
   |         |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
   |         `- note: use 'run' instead
15 | process.waitUntilExit()
16 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[10/29] Compiling PackageConfig Writer.swift
[11/29] Compiling PackageConfig PackageConfig.swift
[13/29] Compiling PackageConfig Package.swift
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:25:17: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
 23 |
 24 |         // Create a process to eval the Swift Package manifest as a subprocess
 25 |         process.launchPath = swiftC
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                 `- note: use 'executableURL' instead
 26 |         process.arguments = arguments
 27 |         let stdPipe = Pipe()
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:37:17: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
 35 |         // creating a file in the tmpdir that stores the JSON
 36 |         // settings when a new instance of PackageConfig is created
 37 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
    |                 `- note: use 'run' instead
 38 |         process.waitUntilExit()
 39 |         debugLog(String(data: stdPipe.fileHandleForReading.readDataToEndOfFile(), encoding: .utf8)!)
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:56:21: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
 54 |             let pipe = Pipe()
 55 |
 56 |             process.launchPath = currentDirectory + "/Package"
    |                     |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                     `- note: use 'executableURL' instead
 57 |             process.standardOutput = pipe
 58 |
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:59:21: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
 57 |             process.standardOutput = pipe
 58 |
 59 |             process.launch()
    |                     |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
    |                     `- note: use 'run' instead
 60 |             process.waitUntilExit()
 61 |
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:72:17: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
 70 |         let pipe = Pipe()
 71 |
 72 |         process.launchPath = "/usr/bin/xcrun"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                 `- note: use 'executableURL' instead
 73 |         process.arguments = ["--find", tool]
 74 |         process.standardOutput = pipe
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:76:34: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
 74 |         process.standardOutput = pipe
 75 |
 76 |         debugLog("CMD: \(process.launchPath!) \( ["--find", tool].joined(separator: " "))")
    |                                  |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                                  `- note: use 'executableURL' instead
 77 |
 78 |         process.launch()
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:78:17: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
 76 |         debugLog("CMD: \(process.launchPath!) \( ["--find", tool].joined(separator: " "))")
 77 |
 78 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
    |                 `- note: use 'run' instead
 79 |         process.waitUntilExit()
 80 |         return String(data: pipe.fileHandleForReading.readDataToEndOfFile(), encoding: .utf8)!
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:88:17: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
 86 |         let pipe = Pipe()
 87 |
 88 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                 `- note: use 'executableURL' instead
 89 |         process.arguments = ["-c", "command -v \(tool)"]
 90 |         process.standardOutput = pipe
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:92:34: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
 90 |         process.standardOutput = pipe
 91 |
 92 |         debugLog("CMD: \(process.launchPath!) \(process.arguments!.joined(separator: " "))")
    |                                  |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                                  `- note: use 'executableURL' instead
 93 |
 94 |         process.launch()
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:94:17: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
 92 |         debugLog("CMD: \(process.launchPath!) \(process.arguments!.joined(separator: " "))")
 93 |
 94 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
    |                 `- note: use 'run' instead
 95 |         process.waitUntilExit()
 96 |         return String(data: pipe.fileHandleForReading.readDataToEndOfFile(), encoding: .utf8)!
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:224:17: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
222 |         let pipe = Pipe()
223 |
224 |         process.launchPath = "/usr/bin/xcrun"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                 `- note: use 'executableURL' instead
225 |         process.arguments = ["--show-sdk-path"]
226 |         process.standardOutput = pipe
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:228:43: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
226 |         process.standardOutput = pipe
227 |
228 |         debugLog("CMD SDK path: \(process.launchPath!) \(process.arguments!.joined(separator: " "))")
    |                                           |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                                           `- note: use 'executableURL' instead
229 |
230 |         process.launch()
/host/spi-builder-workspace/Sources/PackageConfig/Package.swift:230:17: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
228 |         debugLog("CMD SDK path: \(process.launchPath!) \(process.arguments!.joined(separator: " "))")
229 |
230 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
    |                 `- note: use 'run' instead
231 |         process.waitUntilExit()
232 |         return String(data: pipe.fileHandleForReading.readDataToEndOfFile(), encoding: .utf8)!
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[14/29] Compiling PackageConfig PackageConfiguration.swift
[15/29] Compiling PackageConfig Loader.swift
[15/29] Wrapping AST for PackageConfigExecutable for debugging
[16/29] Write Objects.LinkFileList
[17/29] Linking package-config
[19/29] Emitting module PackageConfig
[20/29] Compiling PackageConfig DynamicLibraries.swift
/host/spi-builder-workspace/Sources/PackageConfig/DynamicLibraries.swift:13:11: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
11 | 		let pipe = Pipe()
12 |
13 | 		process.launchPath = "/bin/bash"
   |           |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
   |           `- note: use 'executableURL' instead
14 | 		process.arguments = ["-c", "cat Package.swift"]
15 | 		process.standardOutput = pipe
/host/spi-builder-workspace/Sources/PackageConfig/DynamicLibraries.swift:16:11: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
14 | 		process.arguments = ["-c", "cat Package.swift"]
15 | 		process.standardOutput = pipe
16 | 		process.launch()
   |           |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
   |           `- note: use 'run' instead
17 | 		process.waitUntilExit()
18 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[21/32] Wrapping AST for PackageConfig for debugging
[22/32] Write Objects.LinkFileList
[23/32] Linking libPackageConfig.so
[25/32] Compiling ExampleConfig ExampleConfig.swift
[26/32] Emitting module ExampleConfig
[27/37] Wrapping AST for ExampleConfig for debugging
[28/37] Write Objects.LinkFileList
[30/37] Compiling PackageConfigs PackageConfigs.swift
[31/37] Emitting module PackageConfigs
[32/38] Compiling ExampleMain main.swift
[33/38] Emitting module ExampleMain
[35/39] Wrapping AST for ExampleMain for debugging
[36/39] Write Objects.LinkFileList
[37/39] Linking libExampleConfig.so
[38/39] Linking package-config-example
Build complete! (39.15s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "PackageConfig",
  "name" : "PackageConfig",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "PackageConfig",
      "targets" : [
        "PackageConfig"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "package-config",
      "targets" : [
        "PackageConfigExecutable"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "ExampleConfig",
      "targets" : [
        "ExampleConfig"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "package-config-example",
      "targets" : [
        "ExampleMain"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PackageConfigs",
      "module_type" : "SwiftTarget",
      "name" : "PackageConfigs",
      "path" : "Sources/PackageConfigs",
      "sources" : [
        "PackageConfigs.swift"
      ],
      "target_dependencies" : [
        "ExampleConfig"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PackageConfigExecutable",
      "module_type" : "SwiftTarget",
      "name" : "PackageConfigExecutable",
      "path" : "Sources/PackageConfigExecutable",
      "product_memberships" : [
        "package-config"
      ],
      "sources" : [
        "main.swift"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "PackageConfig",
      "module_type" : "SwiftTarget",
      "name" : "PackageConfig",
      "path" : "Sources/PackageConfig",
      "product_memberships" : [
        "PackageConfig",
        "ExampleConfig",
        "package-config-example"
      ],
      "sources" : [
        "DynamicLibraries.swift",
        "Error.swift",
        "Loader.swift",
        "Package.swift",
        "PackageConfig.swift",
        "PackageConfiguration.swift",
        "Writer.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ExampleMain",
      "module_type" : "SwiftTarget",
      "name" : "ExampleMain",
      "path" : "Sources/ExampleMain",
      "product_memberships" : [
        "package-config-example"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "PackageConfig",
        "ExampleConfig"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ExampleConfig",
      "module_type" : "SwiftTarget",
      "name" : "ExampleConfig",
      "path" : "Sources/ExampleConfig",
      "product_memberships" : [
        "ExampleConfig",
        "package-config-example"
      ],
      "sources" : [
        "ExampleConfig.swift"
      ],
      "target_dependencies" : [
        "PackageConfig"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
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.