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 XCResource, reference main (a044a3), with Swift 6.2 (beta) for Linux on 19 Jun 2025 02:49:20 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/faberNovel/xcresource-cli.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/faberNovel/xcresource-cli
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at a044a32 Update changelog
Cloned https://github.com/faberNovel/xcresource-cli.git
Revision (git rev-parse @):
a044a3247f7fa07d8cef9ab0509505c59b166b1d
SUCCESS checkout https://github.com/faberNovel/xcresource-cli.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/faberNovel/xcresource-cli.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.13s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 0.5.0 (1.61s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 0.5.0
Building for debugging...
[0/11] Write sources
[4/11] Write swift-version-24593BA9C3E375BF.txt
[6/44] Emitting module ArgumentParserToolInfo
[7/44] Compiling ArgumentParserToolInfo ToolInfo.swift
[8/45] Wrapping AST for ArgumentParserToolInfo for debugging
[10/79] Emitting module ArgumentParser
[11/83] Compiling ArgumentParser BashCompletionsGenerator.swift
[12/83] Compiling ArgumentParser CompletionsGenerator.swift
[13/83] Compiling ArgumentParser FishCompletionsGenerator.swift
[14/83] Compiling ArgumentParser ZshCompletionsGenerator.swift
[15/83] Compiling ArgumentParser Argument.swift
[16/83] Compiling ArgumentParser Parsed.swift
[17/83] Compiling ArgumentParser ParsableArguments.swift
[18/83] Compiling ArgumentParser ParsableArgumentsValidation.swift
[19/83] Compiling ArgumentParser ParsableCommand.swift
[20/87] Compiling ArgumentParser ParsedValues.swift
[21/87] Compiling ArgumentParser ParserError.swift
[22/87] Compiling ArgumentParser SplitArguments.swift
[23/87] Compiling ArgumentParser DumpHelpGenerator.swift
[24/87] Compiling XCResource XCTemplatesDownloader.swift
[25/87] Compiling ArgumentParser SequenceExtensions.swift
[26/87] Compiling ArgumentParser StringExtensions.swift
[27/87] Compiling ArgumentParser Tree.swift
[28/87] Compiling ArgumentParser ArgumentDecoder.swift
[29/87] Compiling ArgumentParser ArgumentDefinition.swift
[30/87] Compiling ArgumentParser ArgumentHelp.swift
[31/87] Compiling ArgumentParser CompletionKind.swift
[32/87] Compiling ArgumentParser Errors.swift
[33/87] Compiling ArgumentParser Flag.swift
[34/87] Compiling ArgumentParser NameSpecification.swift
[35/87] Compiling ArgumentParser HelpCommand.swift
[36/87] Emitting module XCResource
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[42/87] Compiling ArgumentParser Option.swift
[43/87] Compiling ArgumentParser OptionGroup.swift
[44/87] Compiling ArgumentParser CommandConfiguration.swift
[45/87] Compiling ArgumentParser EnumerableFlag.swift
[46/87] Compiling ArgumentParser ExpressibleByArgument.swift
[47/87] Compiling ArgumentParser ArgumentSet.swift
[48/87] Compiling ArgumentParser CommandParser.swift
[49/87] Compiling ArgumentParser InputOrigin.swift
[50/87] Compiling ArgumentParser Name.swift
[51/87] Compiling XCResource XCTemplateNamespace.swift
[52/87] Compiling XCResource XCTemplateNamespaceFolderURLProviding.swift
[53/87] Compiling XCResource XCTemplateSource.swift
[55/88] Wrapping AST for XCResource for debugging
[85/96] Wrapping AST for ArgumentParser for debugging
[87/101] Compiling CLI XCTemplateCommand.swift
[88/102] Compiling CLI main.swift
[89/102] Compiling CLI RemoveTemplatesCommand.swift
[90/102] Compiling CLI OpenTemplatesCommand.swift
[91/102] Compiling CLI XCResourceCommand.swift
[92/102] Compiling CLI InstallSnippetsCommand.swift
[93/102] Emitting module CLI
[94/102] Compiling CLI RemoveSnippetsCommand.swift
[95/102] Compiling CLI XCSnippetCommand.swift
[96/102] Compiling CLI ListSnippetsCommand.swift
[97/102] Compiling CLI OpenSnippetsCommand.swift
[98/102] Compiling CLI InstallTemplatesCommand.swift
[99/102] Compiling CLI ListTemplatesCommand.swift
[100/103] Wrapping AST for CLI for debugging
[101/103] Write Objects.LinkFileList
[102/103] Linking xcresource
Build complete! (20.09s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "XCResource",
  "name" : "XCResource",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "xcresource",
      "targets" : [
        "CLI"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "XCResource",
      "targets" : [
        "XCResource"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XCResourceTests",
      "module_type" : "SwiftTarget",
      "name" : "XCResourceTests",
      "path" : "Tests/XCResourceTests",
      "sources" : [
        "URLInputParserTests.swift",
        "Utils/DynamicXCSnippetFolder.swift",
        "Utils/DynamicXCTemplateFolder.swift",
        "Utils/FileManager+Temporary.swift",
        "Utils/GitRepository.swift",
        "Utils/TestXCTemplateFolderURLProvider.swift",
        "XCSnippetDownloaderTests.swift",
        "XCSnippetFileManagerTests.swift",
        "XCSnippetFileSummaryTaggerTests.swift",
        "XCTemplateDownloaderTests.swift",
        "XCTemplateFileManagerTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "XCResource"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XCResource",
      "module_type" : "SwiftTarget",
      "name" : "XCResource",
      "path" : "Sources/XCResource",
      "product_memberships" : [
        "xcresource",
        "XCResource"
      ],
      "sources" : [
        "Shared/Extension/FileManager+Temporary.swift",
        "Shared/Extension/URL+Convenience.swift",
        "Shared/Shell.swift",
        "XCSnippet/File/SnippetFileToSnippetMapper.swift",
        "XCSnippet/File/XCSnippetCoder.swift",
        "XCSnippet/File/XCSnippetFile.swift",
        "XCSnippet/File/XCSnippetFileManager.swift",
        "XCSnippet/File/XCSnippetFileParser.swift",
        "XCSnippet/File/XCSnippetFileSummaryTagger.swift",
        "XCSnippet/XCSnippet.swift",
        "XCSnippet/XCSnippetCLI.swift",
        "XCSnippet/XCSnippetDownloadingStrategy.swift",
        "XCSnippet/XCSnippetFolderURLProviding.swift",
        "XCSnippet/XCSnippetLibrary.swift",
        "XCSnippet/XCSnippetList.swift",
        "XCSnippet/XCSnippetNamespace.swift",
        "XCSnippet/XCSnippetNamespaceMapper.swift",
        "XCSnippet/XCSnippetSource.swift",
        "XCSnippet/XCSnippetsDownloader.swift",
        "XCTemplate/File/XCTemplateFile.swift",
        "XCTemplate/File/XCTemplateFileManager.swift",
        "XCTemplate/File/XCTemplateFolderFile.swift",
        "XCTemplate/File/XCTemplateFolderMapper.swift",
        "XCTemplate/URLInputParser.swift",
        "XCTemplate/XCTemplate.swift",
        "XCTemplate/XCTemplateCLI.swift",
        "XCTemplate/XCTemplateFolder.swift",
        "XCTemplate/XCTemplateFolderDownloadingStrategy.swift",
        "XCTemplate/XCTemplateFolderDownloadingStrategyFactory.swift",
        "XCTemplate/XCTemplateLibrary.swift",
        "XCTemplate/XCTemplateNamespace.swift",
        "XCTemplate/XCTemplateNamespaceFolderURLProviding.swift",
        "XCTemplate/XCTemplateSource.swift",
        "XCTemplate/XCTemplatesDownloader.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CLI",
      "module_type" : "SwiftTarget",
      "name" : "CLI",
      "path" : "Sources/CLI",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "xcresource"
      ],
      "sources" : [
        "XCResourceCommand.swift",
        "XCSnippet/InstallSnippetsCommand.swift",
        "XCSnippet/ListSnippetsCommand.swift",
        "XCSnippet/OpenSnippetsCommand.swift",
        "XCSnippet/RemoveSnippetsCommand.swift",
        "XCSnippet/XCSnippetCommand.swift",
        "XCTemplate/InstallTemplatesCommand.swift",
        "XCTemplate/ListTemplatesCommand.swift",
        "XCTemplate/OpenTemplatesCommand.swift",
        "XCTemplate/RemoveTemplatesCommand.swift",
        "XCTemplate/XCTemplateCommand.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "XCResource"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.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.