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 Linux on 19 Jun 2025 13:40:12 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

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 /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/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:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/aaronsky/buildkite-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/apple/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.43s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (0.89s)
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.22s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.91s)
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
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
[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-24593BA9C3E375BF.txt
[5/43] Emitting module Buildkite
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[6/48] Compiling Buildkite Team.swift
[7/48] Compiling Buildkite Trace.swift
[8/48] Compiling Buildkite User.swift
[9/48] Compiling Buildkite WebhookEvent.swift
[10/48] Compiling Buildkite APIVersion.swift
[11/48] Compiling Buildkite Configuration.swift
[12/48] Compiling Buildkite StatusCode.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:67:61: 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
65 |         #if os(Linux) || os(Windows)
66 |         return try await withCheckedThrowingContinuation { continuation in
67 |             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
68 |         }
69 |         #else
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[13/48] Compiling Buildkite TokenProvider.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:67:61: 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
65 |         #if os(Linux) || os(Windows)
66 |         return try await withCheckedThrowingContinuation { continuation in
67 |             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
68 |         }
69 |         #else
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[14/48] Compiling Buildkite Transport.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:67:61: 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
65 |         #if os(Linux) || os(Windows)
66 |         return try await withCheckedThrowingContinuation { continuation in
67 |             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
68 |         }
69 |         #else
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[15/48] Compiling Buildkite URL+Buildkite.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:67:61: 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
65 |         #if os(Linux) || os(Windows)
66 |         return try await withCheckedThrowingContinuation { continuation in
67 |             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
68 |         }
69 |         #else
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[16/48] Compiling Buildkite AgentMetrics.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:67:61: 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
65 |         #if os(Linux) || os(Windows)
66 |         return try await withCheckedThrowingContinuation { continuation in
67 |             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
68 |         }
69 |         #else
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[17/48] Compiling Buildkite Organizations.swift
[18/48] Compiling Buildkite Pipelines.swift
[19/48] Compiling Buildkite Teams.swift
[20/48] Compiling Buildkite Users.swift
[21/48] Compiling Buildkite TestAnalyticsUpload.swift
[22/48] Compiling Buildkite BuildkiteClient.swift
[23/48] Compiling Buildkite AccessToken.swift
[24/48] Compiling Buildkite Agent.swift
[25/48] Compiling Buildkite AgentMetric.swift
[26/48] Compiling Buildkite Annotation.swift
[27/48] Compiling Buildkite Artifact.swift
[28/48] Compiling Buildkite Builds.swift
[29/48] Compiling Buildkite Emojis.swift
[30/48] Compiling Buildkite Followable.swift
[31/48] Compiling Buildkite Jobs.swift
[32/48] Compiling Buildkite Metas.swift
[33/48] Compiling Buildkite Formatters.swift
[34/48] Compiling Buildkite JSONValue.swift
[35/48] Compiling Buildkite Pagination.swift
[36/48] Compiling Buildkite Resource.swift
[37/48] Compiling Buildkite Response.swift
[38/48] Compiling Buildkite GraphQL.swift
[39/48] Compiling Buildkite AccessTokens.swift
[40/48] Compiling Buildkite Agents.swift
[41/48] Compiling Buildkite Annotations.swift
[42/48] Compiling Buildkite Artifacts.swift
[43/48] Compiling Buildkite Build.swift
[44/48] Compiling Buildkite Emoji.swift
[45/48] Compiling Buildkite Job.swift
[46/48] Compiling Buildkite Meta.swift
[47/48] Compiling Buildkite Organization.swift
[48/48] Compiling Buildkite Pipeline.swift
Build complete! (34.80s)
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" : "/host/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"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.