This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of swift-test-codecov with Swift 6.0 (beta) for macOS (SPM).

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mattpolzin/swift-test-codecov.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/mattpolzin/swift-test-codecov
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 401f6bb Merge pull request #22 from nickpdemarco/npd/bump-argument-parser
Cloned https://github.com/mattpolzin/swift-test-codecov.git
Revision (git rev-parse @):
401f6bb153dea22a22ae1bdd38afe6b361ef606f
SUCCESS checkout https://github.com/mattpolzin/swift-test-codecov.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/mattpolzin/swift-test-codecov.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/11] Write sources
[4/11] Write swift-test-codecov-entitlement.plist
[6/11] Write sources
[7/11] Write swift-version-6F35C1178C84523A.txt
[9/32] Emitting module ArgumentParserToolInfo
[10/32] Compiling ArgumentParserToolInfo ToolInfo.swift
[11/67] Compiling ArgumentParser ArgumentSet.swift
[12/67] Compiling ArgumentParser CommandParser.swift
[13/67] Compiling ArgumentParser InputOrigin.swift
[14/67] Compiling ArgumentParser Name.swift
[15/67] Compiling ArgumentParser CommandConfiguration.swift
[16/67] Compiling ArgumentParser EnumerableFlag.swift
[17/67] Compiling ArgumentParser ExpressibleByArgument.swift
[18/67] Compiling ArgumentParser ParsableArguments.swift
[19/70] Compiling ArgumentParser BashCompletionsGenerator.swift
[20/70] Compiling ArgumentParser CompletionsGenerator.swift
[21/70] Compiling ArgumentParser FishCompletionsGenerator.swift
[22/70] Compiling ArgumentParser ZshCompletionsGenerator.swift
[23/70] Compiling ArgumentParser Parsed.swift
[24/70] Compiling ArgumentParser ParsedValues.swift
[25/70] Compiling ArgumentParser ParserError.swift
[26/70] Compiling ArgumentParser SplitArguments.swift
[27/70] Compiling ArgumentParser SequenceExtensions.swift
[28/70] Compiling ArgumentParser StringExtensions.swift
[29/70] Compiling ArgumentParser Tree.swift
[30/70] Emitting module ArgumentParser
[31/70] Compiling ArgumentParser ParsableArgumentsValidation.swift
[32/70] Compiling ArgumentParser ParsableCommand.swift
[33/70] Compiling ArgumentParser ArgumentDecoder.swift
[34/70] Compiling ArgumentParser ArgumentDefinition.swift
[35/70] Compiling TextTable PlainFormat.swift
[36/71] Compiling TextTable String+Util.swift
[37/71] Compiling Regex Options.swift
[38/71] Compiling Regex Regex.swift
[39/71] Compiling ArgumentParser MessageInfo.swift
[40/71] Compiling ArgumentParser UsageGenerator.swift
[41/71] Compiling ArgumentParser CollectionExtensions.swift
[42/71] Compiling ArgumentParser Flag.swift
[43/71] Compiling ArgumentParser NameSpecification.swift
[44/71] Compiling ArgumentParser Option.swift
[45/71] Compiling ArgumentParser OptionGroup.swift
[46/71] Compiling ArgumentParser Argument.swift
[47/71] Compiling ArgumentParser ArgumentHelp.swift
[48/71] Compiling ArgumentParser CompletionKind.swift
[49/71] Compiling ArgumentParser Errors.swift
[50/71] Compiling ArgumentParser DumpHelpGenerator.swift
[51/71] Compiling ArgumentParser HelpCommand.swift
[52/71] Compiling ArgumentParser HelpGenerator.swift
[53/71] Emitting module TextTable
[54/71] Compiling TextTable PipeFormat.swift
[59/71] Compiling TextTable OrgFormat.swift
[60/71] Compiling Regex MatchResult.swift
[61/71] Compiling Regex Foundation+Ranges.swift
[62/71] Compiling Regex String+ReplaceMatching.swift
[63/71] Emitting module Regex
[64/71] Compiling Regex ThreadLocal.swift
[65/71] Compiling TextTable RstFormat.swift
[66/71] Compiling TextTable PsqlFormat.swift
[67/71] Compiling TextTable SimpleFormat.swift
[68/74] Compiling TextTable TextTable.swift
[69/74] Compiling SwiftTestCodecovLib Aggregate.swift
[70/74] Emitting module SwiftTestCodecovLib
[71/74] Compiling SwiftTestCodecovLib CodeCov.swift
[72/76] Compiling swift_test_codecov main.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-test-codecov/main.swift:7:1: warning: extension declares a conformance of imported type 'AggregateProperty' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'SwiftTestCodecovLib' introduce this conformance in the future
  5 | import TextTable
  6 |
  7 | extension CodeCov.AggregateProperty: ExpressibleByArgument {}
    | |- warning: extension declares a conformance of imported type 'AggregateProperty' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'SwiftTestCodecovLib' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  8 |
  9 | let codecovFileDiscussion = """
/Users/admin/builder/spi-builder-workspace/Sources/swift-test-codecov/main.swift:31:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 | struct StatsCommand: ParsableCommand {
 31 |     static let configuration: CommandConfiguration = .init(
    |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 32 |         commandName: "swift-test-codecov",
 33 |         abstract: "Analyze Code Coverage Metrics",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-test-codecov/main.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
  1 |
  2 | import ArgumentParser
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
  3 | import Foundation
  4 | import SwiftTestCodecovLib
    :
 29 |
 30 | struct StatsCommand: ParsableCommand {
 31 |     static let configuration: CommandConfiguration = .init(
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         commandName: "swift-test-codecov",
 33 |         abstract: "Analyze Code Coverage Metrics",
[73/76] Emitting module swift_test_codecov
/Users/admin/builder/spi-builder-workspace/Sources/swift-test-codecov/main.swift:7:1: warning: extension declares a conformance of imported type 'AggregateProperty' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'SwiftTestCodecovLib' introduce this conformance in the future
  5 | import TextTable
  6 |
  7 | extension CodeCov.AggregateProperty: ExpressibleByArgument {}
    | |- warning: extension declares a conformance of imported type 'AggregateProperty' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'SwiftTestCodecovLib' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  8 |
  9 | let codecovFileDiscussion = """
/Users/admin/builder/spi-builder-workspace/Sources/swift-test-codecov/main.swift:31:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 | struct StatsCommand: ParsableCommand {
 31 |     static let configuration: CommandConfiguration = .init(
    |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 32 |         commandName: "swift-test-codecov",
 33 |         abstract: "Analyze Code Coverage Metrics",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-test-codecov/main.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
  1 |
  2 | import ArgumentParser
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
  3 | import Foundation
  4 | import SwiftTestCodecovLib
    :
 29 |
 30 | struct StatsCommand: ParsableCommand {
 31 |     static let configuration: CommandConfiguration = .init(
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         commandName: "swift-test-codecov",
 33 |         abstract: "Analyze Code Coverage Metrics",
[73/76] Write Objects.LinkFileList
[74/76] Linking swift-test-codecov
[75/76] Applying swift-test-codecov
Build complete! (34.48s)
Fetching https://github.com/mattpolzin/TextTable.git
[1/189] Fetching texttable
Fetched https://github.com/mattpolzin/TextTable.git from cache (0.70s)
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/sharplet/Regex.git
[1/1254] Fetching regex
[817/12933] Fetching regex, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.64s)
Fetched https://github.com/sharplet/Regex.git from cache (1.64s)
Computing version for https://github.com/sharplet/Regex.git
Computed https://github.com/sharplet/Regex.git at 2.1.1 (2.75s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.0.3 (0.71s)
Creating working copy for https://github.com/sharplet/Regex.git
Working copy of https://github.com/sharplet/Regex.git resolved at 2.1.1
Creating working copy for https://github.com/mattpolzin/TextTable.git
Working copy of https://github.com/mattpolzin/TextTable.git resolved at swift-5 (5366206)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.0.3
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"
    },
    {
      "identity" : "texttable",
      "requirement" : {
        "branch" : [
          "swift-5"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/mattpolzin/TextTable.git"
    },
    {
      "identity" : "regex",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.1.0",
            "upper_bound" : "2.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sharplet/Regex.git"
    }
  ],
  "manifest_display_name" : "swift-test-codecov",
  "name" : "swift-test-codecov",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "swift-test-codecov",
      "targets" : [
        "swift-test-codecov"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SwiftTestCodecovLib",
      "targets" : [
        "SwiftTestCodecovLib"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_test_codecovTests",
      "module_type" : "SwiftTarget",
      "name" : "swift-test-codecovTests",
      "path" : "Tests/swift-test-codecovTests",
      "sources" : [
        "PlaceholderTests2.swift"
      ],
      "target_dependencies" : [
        "swift-test-codecov"
      ],
      "type" : "test"
    },
    {
      "c99name" : "swift_test_codecov",
      "module_type" : "SwiftTarget",
      "name" : "swift-test-codecov",
      "path" : "Sources/swift-test-codecov",
      "product_dependencies" : [
        "ArgumentParser",
        "TextTable"
      ],
      "product_memberships" : [
        "swift-test-codecov"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "SwiftTestCodecovLib"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SwiftTestCodecovLibTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftTestCodecovLibTests",
      "path" : "Tests/SwiftTestCodecovLibTests",
      "product_dependencies" : [
        "Regex"
      ],
      "sources" : [
        "AggregateTests.swift"
      ],
      "target_dependencies" : [
        "SwiftTestCodecovLib"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftTestCodecovLib",
      "module_type" : "SwiftTarget",
      "name" : "SwiftTestCodecovLib",
      "path" : "Sources/SwiftTestCodecovLib",
      "product_dependencies" : [
        "Regex"
      ],
      "product_memberships" : [
        "swift-test-codecov",
        "SwiftTestCodecovLib"
      ],
      "sources" : [
        "Aggregate.swift",
        "CodeCov.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.