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 Buildkite, reference 0.3.2 (4c5f2d), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 13:41:08 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/aaronsky/buildkite-swift.git
Reference: 0.3.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/aaronsky/buildkite-swift
 * tag               0.3.2      -> FETCH_HEAD
HEAD is now at 4c5f2dd Add Sendable conformances
Cloned https://github.com/aaronsky/buildkite-swift.git
Revision (git rev-parse @):
4c5f2dd0c1c25a341437522d82dc976b3a878bc4
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/aaronsky/buildkite-swift.git at 0.3.2
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/aaronsky/buildkite-swift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/44] Emitting module Buildkite
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[6/48] Compiling Buildkite Pipelines.swift
[7/48] Compiling Buildkite Teams.swift
[8/48] Compiling Buildkite Users.swift
[9/48] Compiling Buildkite TestAnalyticsUpload.swift
[10/48] Compiling Buildkite AgentMetrics.swift
[11/48] Compiling Buildkite GraphQL.swift
[12/48] Compiling Buildkite AccessTokens.swift
[13/48] Compiling Buildkite Agents.swift
[14/48] Compiling Buildkite BuildkiteClient.swift
[15/48] Compiling Buildkite AccessToken.swift
[16/48] Compiling Buildkite Agent.swift
[17/48] Compiling Buildkite AgentMetric.swift
[18/48] Compiling Buildkite Annotation.swift
[19/48] Compiling Buildkite Annotations.swift
[20/48] Compiling Buildkite Artifacts.swift
[21/48] Compiling Buildkite Builds.swift
[22/48] Compiling Buildkite Emojis.swift
[23/48] Compiling Buildkite Organization.swift
[24/48] Compiling Buildkite Pipeline.swift
[25/48] Compiling Buildkite Team.swift
[26/48] Compiling Buildkite Trace.swift
[27/48] Compiling Buildkite User.swift
[28/48] Compiling Buildkite Artifact.swift
[29/48] Compiling Buildkite Build.swift
[30/48] Compiling Buildkite Emoji.swift
[31/48] Compiling Buildkite Job.swift
[32/48] Compiling Buildkite Meta.swift
[33/48] Compiling Buildkite WebhookEvent.swift
[34/48] Compiling Buildkite APIVersion.swift
[35/48] Compiling Buildkite Configuration.swift
[36/48] Compiling Buildkite Formatters.swift
[37/48] Compiling Buildkite Followable.swift
[38/48] Compiling Buildkite Jobs.swift
[39/48] Compiling Buildkite Metas.swift
[40/48] Compiling Buildkite Organizations.swift
[41/48] Compiling Buildkite StatusCode.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[42/48] Compiling Buildkite TokenProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[43/48] Compiling Buildkite Transport.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[44/48] Compiling Buildkite URL+Buildkite.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[45/48] Compiling Buildkite JSONValue.swift
[46/48] Compiling Buildkite Pagination.swift
[47/48] Compiling Buildkite Resource.swift
[48/48] Compiling Buildkite Response.swift
Build complete! (18.30s)
Fetching https://github.com/apple/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.11s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (1.65s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.18s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.77s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "Buildkite",
  "name" : "Buildkite",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Buildkite",
      "targets" : [
        "Buildkite"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BuildkiteTests",
      "module_type" : "SwiftTarget",
      "name" : "BuildkiteTests",
      "path" : "Tests/BuildkiteTests",
      "sources" : [
        "BuildkiteClientTests.swift",
        "Networking/JSONValueTests.swift",
        "Networking/StatusCodeTests.swift",
        "Networking/TransportTests.swift",
        "Resources/Agent/AgentMetricsTests.swift",
        "Resources/GraphQL/GraphQLTests.swift",
        "Resources/REST/AccessTokensTests.swift",
        "Resources/REST/AgentsTests.swift",
        "Resources/REST/AnnotationsTests.swift",
        "Resources/REST/ArtifactsTests.swift",
        "Resources/REST/BuildsTests.swift",
        "Resources/REST/EmojisTests.swift",
        "Resources/REST/FollowableTests.swift",
        "Resources/REST/JobsTests.swift",
        "Resources/REST/MetasTests.swift",
        "Resources/REST/OrganizationsTests.swift",
        "Resources/REST/PipelinesTests.swift",
        "Resources/REST/TeamsTests.swift",
        "Resources/REST/UsersTests.swift",
        "Resources/TestAnalytics/TestAnalyticsUploadTests.swift",
        "Utilities/MockContext.swift",
        "Utilities/MockData.swift",
        "Utilities/MockTransport.swift",
        "Utilities/URL+Buildkite.swift",
        "Utilities/XCTestCase+Buildkite.swift"
      ],
      "target_dependencies" : [
        "Buildkite"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Buildkite",
      "module_type" : "SwiftTarget",
      "name" : "Buildkite",
      "path" : "Sources/Buildkite",
      "product_memberships" : [
        "Buildkite"
      ],
      "sources" : [
        "BuildkiteClient.swift",
        "Models/AccessToken.swift",
        "Models/Agent.swift",
        "Models/AgentMetric.swift",
        "Models/Annotation.swift",
        "Models/Artifact.swift",
        "Models/Build.swift",
        "Models/Emoji.swift",
        "Models/Job.swift",
        "Models/Meta.swift",
        "Models/Organization.swift",
        "Models/Pipeline.swift",
        "Models/Team.swift",
        "Models/Trace.swift",
        "Models/User.swift",
        "Models/WebhookEvent.swift",
        "Networking/APIVersion.swift",
        "Networking/Configuration.swift",
        "Networking/Formatters.swift",
        "Networking/JSONValue.swift",
        "Networking/Pagination.swift",
        "Networking/Resource.swift",
        "Networking/Response.swift",
        "Networking/StatusCode.swift",
        "Networking/TokenProvider.swift",
        "Networking/Transport.swift",
        "Networking/URL+Buildkite.swift",
        "Resources/Agent/AgentMetrics.swift",
        "Resources/GraphQL/GraphQL.swift",
        "Resources/REST/AccessTokens.swift",
        "Resources/REST/Agents.swift",
        "Resources/REST/Annotations.swift",
        "Resources/REST/Artifacts.swift",
        "Resources/REST/Builds.swift",
        "Resources/REST/Emojis.swift",
        "Resources/REST/Followable.swift",
        "Resources/REST/Jobs.swift",
        "Resources/REST/Metas.swift",
        "Resources/REST/Organizations.swift",
        "Resources/REST/Pipelines.swift",
        "Resources/REST/Teams.swift",
        "Resources/REST/Users.swift",
        "Resources/TestAnalytics/TestAnalyticsUpload.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.