Build Information
Successful build of XcodeMergeDriver, reference main (06a564), with Swift 6.2 for Android on 19 Jun 2025 21:40:32 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/steven851007/XcodeMergeDriver.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/steven851007/XcodeMergeDriver
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 06a5649 Merge pull request #6 from steven851007/ThrowError
Cloned https://github.com/steven851007/XcodeMergeDriver.git
Revision (git rev-parse @):
06a564986e6e72492f869d8a34df1b535587109f
SUCCESS checkout https://github.com/steven851007/XcodeMergeDriver.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/steven851007/XcodeMergeDriver.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-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 (0.93s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.1 (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 1.5.1
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/10] Write sources
[4/10] Write swift-version-8C5A4AE7A8CE2BA.txt
[6/12] Emitting module ArgumentParserToolInfo
[7/12] Compiling ArgumentParserToolInfo ToolInfo.swift
[8/13] Wrapping AST for ArgumentParserToolInfo for debugging
[10/51] Emitting module ArgumentParser
[11/56] Compiling ArgumentParser Name.swift
[12/56] Compiling ArgumentParser Parsed.swift
[13/56] Compiling ArgumentParser ParsedValues.swift
[14/56] Compiling ArgumentParser ParserError.swift
[15/56] Compiling ArgumentParser SplitArguments.swift
[16/56] Compiling ArgumentParser BashCompletionsGenerator.swift
[17/56] Compiling ArgumentParser CompletionsGenerator.swift
[18/56] Compiling ArgumentParser FishCompletionsGenerator.swift
[19/56] Compiling ArgumentParser ZshCompletionsGenerator.swift
[20/56] Compiling ArgumentParser Argument.swift
[21/56] Compiling ArgumentParser ArgumentHelp.swift
[22/56] Compiling ArgumentParser CollectionExtensions.swift
[23/56] Compiling ArgumentParser Platform.swift
[24/56] Compiling ArgumentParser SequenceExtensions.swift
[25/56] Compiling ArgumentParser StringExtensions.swift
[26/56] Compiling ArgumentParser Tree.swift
[27/56] Compiling ArgumentParser ArgumentDefinition.swift
[28/56] Compiling ArgumentParser ArgumentSet.swift
[29/56] Compiling ArgumentParser CommandParser.swift
[30/56] Compiling ArgumentParser InputKey.swift
[31/56] Compiling ArgumentParser InputOrigin.swift
[32/56] Compiling ArgumentParser OptionGroup.swift
[33/56] Compiling ArgumentParser AsyncParsableCommand.swift
[34/56] Compiling ArgumentParser CommandConfiguration.swift
[35/56] Compiling ArgumentParser CommandGroup.swift
[36/56] Compiling ArgumentParser EnumerableFlag.swift
[37/56] Compiling ArgumentParser ArgumentVisibility.swift
[38/56] Compiling ArgumentParser CompletionKind.swift
[39/56] Compiling ArgumentParser Errors.swift
[40/56] Compiling ArgumentParser Flag.swift
[41/56] Compiling ArgumentParser NameSpecification.swift
[42/56] Compiling ArgumentParser Option.swift
[43/56] Compiling ArgumentParser ExpressibleByArgument.swift
[44/56] Compiling ArgumentParser ParsableArguments.swift
[45/56] Compiling ArgumentParser ParsableArgumentsValidation.swift
[46/56] Compiling ArgumentParser ParsableCommand.swift
[47/56] Compiling ArgumentParser ArgumentDecoder.swift
[48/56] Compiling ArgumentParser DumpHelpGenerator.swift
[49/56] Compiling ArgumentParser HelpCommand.swift
[50/56] Compiling ArgumentParser HelpGenerator.swift
[51/56] Compiling ArgumentParser MessageInfo.swift
[52/56] Compiling ArgumentParser UsageGenerator.swift
[53/57] Wrapping AST for ArgumentParser for debugging
[55/66] Compiling XcodeMergeDriver PBXSourcesBuildPhaseSection.swift
[56/67] Compiling XcodeMergeDriver PBXGroupSection.swift
[57/67] Compiling XcodeMergeDriver PBXSourcesBuildPhase.swift
[58/67] Compiling XcodeMergeDriver PBXFileSection.swift
[59/67] Compiling XcodeMergeDriver PBXFileType.swift
[60/67] Compiling XcodeMergeDriver PBXGroup.swift
[61/67] Compiling XcodeMergeDriver XcodeProject.swift
[62/67] Emitting module XcodeMergeDriver
[63/67] Compiling XcodeMergeDriver Bash.swift
/host/spi-builder-workspace/Sources/XcodeMergeDriver/Bash.swift:36:17: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
34 | private func run(_ command: String, with arguments: [String] = []) throws -> String {
35 | let process = Process()
36 | process.launchPath = command
| |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
| `- note: use 'executableURL' instead
37 | process.arguments = arguments
38 | let outputPipe = Pipe()
/host/spi-builder-workspace/Sources/XcodeMergeDriver/Bash.swift:40:17: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
38 | let outputPipe = Pipe()
39 | process.standardOutput = outputPipe
40 | process.launch()
| |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
| `- note: use 'run' instead
41 | let outputData = outputPipe.fileHandleForReading.readDataToEndOfFile()
42 | let output = String(decoding: outputData, as: UTF8.self)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[64/67] Compiling XcodeMergeDriver XcodeMergeDriver.swift
/host/spi-builder-workspace/Sources/XcodeMergeDriver/Bash.swift:36:17: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
34 | private func run(_ command: String, with arguments: [String] = []) throws -> String {
35 | let process = Process()
36 | process.launchPath = command
| |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
| `- note: use 'executableURL' instead
37 | process.arguments = arguments
38 | let outputPipe = Pipe()
/host/spi-builder-workspace/Sources/XcodeMergeDriver/Bash.swift:40:17: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
38 | let outputPipe = Pipe()
39 | process.standardOutput = outputPipe
40 | process.launch()
| |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
| `- note: use 'run' instead
41 | let outputData = outputPipe.fileHandleForReading.readDataToEndOfFile()
42 | let output = String(decoding: outputData, as: UTF8.self)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[65/68] Wrapping AST for XcodeMergeDriver for debugging
[66/68] Write Objects.LinkFileList
[67/68] Linking XcodeMergeDriver
Build complete! (21.51s)
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" : "XcodeMergeDriver",
"name" : "XcodeMergeDriver",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "XcodeMergeDriver",
"targets" : [
"XcodeMergeDriver"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "XcodeMergeDriverTests",
"module_type" : "SwiftTarget",
"name" : "XcodeMergeDriverTests",
"path" : "Tests/XcodeMergeDriverTests",
"sources" : [
"EndToEnd/ComplexProject1/ComplexProject1Tests.swift",
"EndToEnd/FileAddedAndRemoved/FileAddedAndRemovedTests.swift",
"EndToEnd/FileAddedInBothBranch/FileAddedInBothBranchTests.swift",
"EndToEnd/GroupAddedAndFileMovedToGroup/GroupAddedAndFileMovedToGroupTests.swift",
"EndToEnd/GroupAddedInBothBranch/GroupAddedInBothBranchTests.swift",
"EndToEnd/RemovingDuplicates/RemovingDuplicatesTests.swift",
"PBXFileSectionTests.swift",
"PBXGroupSectionTests.swift",
"PBXSourcesBuildPhaseTests.swift",
"XcodeProjectTests.swift"
],
"target_dependencies" : [
"XcodeMergeDriver"
],
"type" : "test"
},
{
"c99name" : "XcodeMergeDriver",
"module_type" : "SwiftTarget",
"name" : "XcodeMergeDriver",
"path" : "Sources/XcodeMergeDriver",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"XcodeMergeDriver"
],
"sources" : [
"Bash.swift",
"XcodeMergeDriver.swift",
"XcodeProject/PBXFile/PBXFileSection.swift",
"XcodeProject/PBXFile/PBXFileType.swift",
"XcodeProject/PBXGroupSection/PBXGroup.swift",
"XcodeProject/PBXGroupSection/PBXGroupSection.swift",
"XcodeProject/PBXSourcesBuildPhase/PBXSourcesBuildPhase.swift",
"XcodeProject/PBXSourcesBuildPhase/PBXSourcesBuildPhaseSection.swift",
"XcodeProject/XcodeProject.swift"
],
"type" : "executable"
}
],
"tools_version" : "5.7"
}
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Done.