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 RedisConnection, reference main (c7f76e), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 10:13:51 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/schwa/RedisConnection.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/schwa/RedisConnection
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at c7f76e7 Merge pull request #2 from PPunya/main
Cloned https://github.com/schwa/RedisConnection.git
Revision (git rev-parse @):
c7f76e7898d44f696d4cbe37bb8506fe4e9d9b42
SUCCESS checkout https://github.com/schwa/RedisConnection.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/schwa/RedisConnection.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[1/7] Write CLI-entitlement.plist
[3/7] Write swift-version-1EA4D86E10B52AF.txt
[5/14] Compiling RedisConnection Scratch.swift
/Users/admin/builder/spi-builder-workspace/Sources/RedisConnection/Scratch.swift:4:1: warning: extension declares a conformance of imported type 'State' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Network' introduce this conformance in the future
 2 | import Network
 3 |
 4 | extension NWConnection.State: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'State' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Network' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     public var description: String {
 6 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/RedisConnection/Scratch.swift:40:21: warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
38 |     public init<I>(_ makeUnderlyingIterator: @Sendable @escaping () -> I) where Element == I.Element, I: AsyncIteratorProtocol {
39 |         self.makeUnderlyingIterator = {
40 |             var i = makeUnderlyingIterator()
   |                     `- warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 |             return AnyAsyncIterator {
42 |                 try await i.next()
/Users/admin/builder/spi-builder-workspace/Sources/RedisConnection/Scratch.swift:38:22: warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
36 |     public let makeUnderlyingIterator: @Sendable () -> Iterator
37 |
38 |     public init<I>(_ makeUnderlyingIterator: @Sendable @escaping () -> I) where Element == I.Element, I: AsyncIteratorProtocol {
   |                      `- warning: capture of non-sendable type 'I.Type' in an isolated closure; this is an error in the Swift 6 language mode
39 |         self.makeUnderlyingIterator = {
40 |             var i = makeUnderlyingIterator()
[6/14] Compiling RedisConnection RedisStreamingParser.swift
[7/14] Compiling RedisConnection RedisProtocol.swift
[8/14] Compiling RedisConnection RedisError.swift
[9/14] Compiling RedisConnection RESPValue.swift
[10/14] Compiling RedisConnection RedisConnection.swift
[11/14] Emitting module RedisConnection
/Users/admin/builder/spi-builder-workspace/Sources/RedisConnection/Scratch.swift:4:1: warning: extension declares a conformance of imported type 'State' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Network' introduce this conformance in the future
 2 | import Network
 3 |
 4 | extension NWConnection.State: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'State' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Network' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 5 |     public var description: String {
 6 |         switch self {
[12/17] Emitting module CLI
[13/17] Compiling CLI Support.swift
[14/17] Compiling CLI cli.swift
[14/17] Write Objects.LinkFileList
[15/17] Linking CLI
[16/17] Applying CLI
Build complete! (5.07s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "RedisConnection",
  "name" : "RedisConnection",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "17.0"
    }
  ],
  "products" : [
    {
      "name" : "RedisConnection",
      "targets" : [
        "RedisConnection"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CLI",
      "targets" : [
        "CLI"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RedisConnectionTests",
      "module_type" : "SwiftTarget",
      "name" : "RedisConnectionTests",
      "path" : "Tests/RedisConnectionTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RedisConnectionTests/foo.dat",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "RedisConnectionTests.swift"
      ],
      "target_dependencies" : [
        "RedisConnection"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RedisConnection",
      "module_type" : "SwiftTarget",
      "name" : "RedisConnection",
      "path" : "Sources/RedisConnection",
      "product_memberships" : [
        "RedisConnection",
        "CLI"
      ],
      "sources" : [
        "RESPValue.swift",
        "RedisConnection.swift",
        "RedisError.swift",
        "RedisProtocol.swift",
        "RedisStreamingParser.swift",
        "Scratch.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CLI",
      "module_type" : "SwiftTarget",
      "name" : "CLI",
      "path" : "Sources/CLI",
      "product_memberships" : [
        "CLI"
      ],
      "sources" : [
        "Support.swift",
        "cli.swift"
      ],
      "target_dependencies" : [
        "RedisConnection"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.9"
}
Done.