Build Information
Successful build of SwiftOutdated, reference 0.9.0 (6dbb22
), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 19:16:37 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kiliankoe/swift-outdated.git
Reference: 0.9.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kiliankoe/swift-outdated
* tag 0.9.0 -> FETCH_HEAD
HEAD is now at 6dbb22f bump version to 0.9.0
Cloned https://github.com/kiliankoe/swift-outdated.git
Revision (git rev-parse @):
6dbb22f79874b75b5c95daa0a21d66082f6aeefc
SUCCESS checkout https://github.com/kiliankoe/swift-outdated.git at 0.9.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/kiliankoe/swift-outdated.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/16] Write sources
[5/16] Write swift-outdated-entitlement.plist
[5/16] Write sources
[12/16] Write swift-version-1EA4D86E10B52AF.txt
[14/46] Emitting module ArgumentParserToolInfo
[15/46] Compiling ArgumentParserToolInfo ToolInfo.swift
[16/85] Compiling Logging MetadataProvider.swift
[17/85] Compiling Logging LogHandler.swift
[18/85] Compiling Logging Logging.swift
[19/85] Emitting module Logging
[20/85] Compiling Logging Locks.swift
[21/85] Compiling Rainbow Style.swift
[22/86] Compiling Rainbow ControlCode.swift
[23/86] Compiling ArgumentParser BashCompletionsGenerator.swift
[24/86] Compiling ArgumentParser CompletionsGenerator.swift
[25/86] Compiling Rainbow Color.swift
[26/86] Emitting module Version
[27/86] Compiling Version Version+Codable.swift
[28/86] Emitting module Rainbow
[29/86] Compiling Rainbow StringGenerator.swift
[30/86] Compiling Rainbow XcodeColorsSupport.swift
[31/86] Compiling Rainbow String+Rainbow.swift
[32/86] Compiling Version Version+Range.swift
[33/86] Compiling Version Version.swift
[34/86] Emitting module ArgumentParser
[37/90] Compiling ArgumentParser FishCompletionsGenerator.swift
[38/90] Compiling ArgumentParser ZshCompletionsGenerator.swift
[39/90] Compiling ArgumentParser Argument.swift
[40/90] Compiling ArgumentParser NameSpecification.swift
[41/90] Compiling ArgumentParser Option.swift
[42/90] Compiling ArgumentParser OptionGroup.swift
[43/90] Compiling ArgumentParser AsyncParsableCommand.swift
[44/90] Compiling ArgumentParser ArgumentHelp.swift
[45/90] Compiling ArgumentParser ArgumentVisibility.swift
[46/90] Compiling ArgumentParser CompletionKind.swift
[47/90] Compiling ArgumentParser Errors.swift
[48/90] Compiling ArgumentParser Flag.swift
[49/90] Compiling ArgumentParser InputOrigin.swift
[50/90] Compiling ArgumentParser Name.swift
[51/90] Compiling ArgumentParser Parsed.swift
[52/90] Compiling ArgumentParser ParsedValues.swift
[53/90] Compiling ArgumentParser ParsableArguments.swift
[54/90] Compiling ArgumentParser ParsableArgumentsValidation.swift
[55/90] Compiling ArgumentParser ParsableCommand.swift
[56/90] Compiling ArgumentParser ArgumentDecoder.swift
[57/90] Compiling ArgumentParser ArgumentDefinition.swift
[58/90] Compiling ArgumentParser ArgumentSet.swift
[59/90] Compiling ArgumentParser CommandParser.swift
[60/90] Compiling ArgumentParser InputKey.swift
[61/90] Compiling ArgumentParser Platform.swift
[62/90] Compiling ArgumentParser SequenceExtensions.swift
[63/90] Compiling ArgumentParser StringExtensions.swift
[64/90] Compiling ArgumentParser Tree.swift
[65/90] Compiling Version Version+Comparable.swift
[66/90] Compiling Version Version+Foundation.swift
[67/90] Compiling ArgumentParser ParserError.swift
[68/90] Compiling ArgumentParser SplitArguments.swift
[69/90] Compiling ArgumentParser DumpHelpGenerator.swift
[70/90] Compiling ArgumentParser HelpCommand.swift
[71/90] Compiling ArgumentParser CommandConfiguration.swift
[72/90] Compiling ArgumentParser CommandGroup.swift
[73/90] Compiling ArgumentParser EnumerableFlag.swift
[74/90] Compiling ArgumentParser ExpressibleByArgument.swift
[75/90] Compiling ArgumentParser HelpGenerator.swift
[76/90] Compiling ArgumentParser MessageInfo.swift
[77/90] Compiling ArgumentParser UsageGenerator.swift
[78/90] Compiling ArgumentParser CollectionExtensions.swift
[79/90] Compiling Rainbow ModesExtractor.swift
[80/90] Compiling Rainbow OutputTarget.swift
[81/90] Compiling Rainbow Rainbow.swift
[82/90] Emitting module SwiftyTextTable
[83/90] Compiling SwiftyTextTable TextTable.swift
[84/90] Compiling ShellOut ShellOut.swift
[85/90] Emitting module ShellOut
[86/90] Compiling Files Files.swift
[87/90] Emitting module Files
[88/97] Compiling Outdated Resolved.swift
[89/97] Compiling Outdated SwiftPackage.swift
[90/97] Compiling Outdated Pin.swift
[91/97] Compiling Outdated PackageCollection.swift
[92/97] Compiling Outdated ConcurrentDictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/Outdated/ConcurrentDictionary.swift:32:17: warning: capture of non-sendable type 'Key.Type' in an isolated closure
30 | set(newValue) {
31 | concurrentQueue.async(flags: .barrier) { [weak self] in
32 | self?.dictionary[key] = newValue
| `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
33 | }
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/Outdated/ConcurrentDictionary.swift:31:60: warning: capture of non-sendable type 'Key.Type' in an isolated closure
29 | subscript(key: Key) -> Value? {
30 | set(newValue) {
31 | concurrentQueue.async(flags: .barrier) { [weak self] in
| `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
32 | self?.dictionary[key] = newValue
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/Outdated/ConcurrentDictionary.swift:50:30: warning: capture of non-sendable type 'Key.Type' in an isolated closure
48 | func removeValue(forKey key: Key) {
49 | concurrentQueue.async(flags: .barrier) { [weak self] in
50 | self?.dictionary.removeValue(forKey: key)
| `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/Outdated/ConcurrentDictionary.swift:49:56: warning: capture of non-sendable type 'Key.Type' in an isolated closure
47 |
48 | func removeValue(forKey key: Key) {
49 | concurrentQueue.async(flags: .barrier) { [weak self] in
| `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
50 | self?.dictionary.removeValue(forKey: key)
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/Outdated/ConcurrentDictionary.swift:56:13: warning: capture of non-sendable type 'Key.Type' in an isolated closure
54 | func removeAll() {
55 | concurrentQueue.async(flags: .barrier) { [weak self] in
56 | self?.dictionary.removeAll()
| `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
57 | }
58 | }
/Users/admin/builder/spi-builder-workspace/Sources/Outdated/ConcurrentDictionary.swift:55:56: warning: capture of non-sendable type 'Key.Type' in an isolated closure
53 |
54 | func removeAll() {
55 | concurrentQueue.async(flags: .barrier) { [weak self] in
| `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
56 | self?.dictionary.removeAll()
57 | }
[93/97] Emitting module Outdated
[94/97] Compiling Outdated OutdatedPackage.swift
[95/99] Emitting module SwiftOutdated
[96/99] Compiling SwiftOutdated SwiftOutdated.swift
[96/99] Write Objects.LinkFileList
[97/99] Linking swift-outdated
[98/99] Applying swift-outdated
Build complete! (24.28s)
Fetching https://github.com/johnsundell/ShellOut.git
Fetching https://github.com/johnsundell/Files.git
Fetching https://github.com/scottrhoyt/SwiftyTextTable.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/onevcat/Rainbow.git
Fetching https://github.com/apple/swift-argument-parser.git
Fetching https://github.com/mxcl/Version.git
[1/1196] Fetching rainbow
[157/2176] Fetching rainbow, shellout
[334/3105] Fetching rainbow, shellout, swiftytexttable
[427/3398] Fetching rainbow, shellout, swiftytexttable, version
[483/4646] Fetching rainbow, shellout, swiftytexttable, version, files
[1946/8482] Fetching rainbow, shellout, swiftytexttable, version, files, swift-log
Fetched https://github.com/johnsundell/ShellOut.git from cache (0.89s)
[4127/7502] Fetching rainbow, swiftytexttable, version, files, swift-log
[4588/22882] Fetching rainbow, swiftytexttable, version, files, swift-log, swift-argument-parser
Fetched https://github.com/johnsundell/Files.git from cache (1.15s)
Fetched https://github.com/scottrhoyt/SwiftyTextTable.git from cache (1.15s)
[6094/20705] Fetching rainbow, version, swift-log, swift-argument-parser
Fetched https://github.com/apple/swift-log.git from cache (1.64s)
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.64s)
Fetched https://github.com/onevcat/Rainbow.git from cache (1.64s)
Fetched https://github.com/mxcl/Version.git from cache (1.64s)
Computing version for https://github.com/scottrhoyt/SwiftyTextTable.git
Computed https://github.com/scottrhoyt/SwiftyTextTable.git at 0.9.0 (3.51s)
Computing version for https://github.com/johnsundell/ShellOut.git
Computed https://github.com/johnsundell/ShellOut.git at 2.3.0 (1.94s)
Computing version for https://github.com/mxcl/Version.git
Computed https://github.com/mxcl/Version.git at 2.2.0 (0.52s)
Computing version for https://github.com/johnsundell/Files.git
Computed https://github.com/johnsundell/Files.git at 4.3.0 (0.51s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.42s)
Computing version for https://github.com/onevcat/Rainbow.git
Computed https://github.com/onevcat/Rainbow.git at 3.2.0 (0.54s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.5.1 (0.45s)
Creating working copy for https://github.com/scottrhoyt/SwiftyTextTable.git
Working copy of https://github.com/scottrhoyt/SwiftyTextTable.git resolved at 0.9.0
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.5.1
Creating working copy for https://github.com/onevcat/Rainbow.git
Working copy of https://github.com/onevcat/Rainbow.git resolved at 3.2.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/johnsundell/ShellOut.git
Working copy of https://github.com/johnsundell/ShellOut.git resolved at 2.3.0
Creating working copy for https://github.com/johnsundell/Files.git
Working copy of https://github.com/johnsundell/Files.git resolved at 4.3.0
Creating working copy for https://github.com/mxcl/Version.git
Working copy of https://github.com/mxcl/Version.git resolved at 2.2.0
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.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "version",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/mxcl/Version.git"
},
{
"identity" : "shellout",
"requirement" : {
"range" : [
{
"lower_bound" : "2.3.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/johnsundell/ShellOut.git"
},
{
"identity" : "files",
"requirement" : {
"range" : [
{
"lower_bound" : "4.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/johnsundell/Files.git"
},
{
"identity" : "swiftytexttable",
"requirement" : {
"range" : [
{
"lower_bound" : "0.9.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/scottrhoyt/SwiftyTextTable.git"
},
{
"identity" : "rainbow",
"requirement" : {
"range" : [
{
"lower_bound" : "3.0.0",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/onevcat/Rainbow.git"
}
],
"manifest_display_name" : "SwiftOutdated",
"name" : "SwiftOutdated",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "swift-outdated",
"targets" : [
"SwiftOutdated"
],
"type" : {
"executable" : null
}
},
{
"name" : "Outdated",
"targets" : [
"Outdated"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftOutdated",
"module_type" : "SwiftTarget",
"name" : "SwiftOutdated",
"path" : "Sources/SwiftOutdated",
"product_dependencies" : [
"ArgumentParser",
"Logging"
],
"product_memberships" : [
"swift-outdated"
],
"sources" : [
"SwiftOutdated.swift"
],
"target_dependencies" : [
"Outdated"
],
"type" : "executable"
},
{
"c99name" : "Outdated",
"module_type" : "SwiftTarget",
"name" : "Outdated",
"path" : "Sources/Outdated",
"product_dependencies" : [
"Logging",
"Files",
"Rainbow",
"ShellOut",
"SwiftyTextTable",
"Version"
],
"product_memberships" : [
"swift-outdated",
"Outdated"
],
"sources" : [
"ConcurrentDictionary.swift",
"OutdatedPackage.swift",
"PackageCollection.swift",
"Pin.swift",
"Resolved.swift",
"SwiftPackage.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Done.