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 Buildkite, reference 0.3.2 (4c5f2d), with Swift 6.0 for Linux on 2 Nov 2024 12:03:29 UTC.

Swift 6 data race errors: 2

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.56.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.0
Building package at path:  $PWD
https://github.com/aaronsky/buildkite-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/apple/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.41s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (0.66s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3153] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.40s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.65s)
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.3
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
[2/2] Compiling plugin Swift-DocC Preview
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/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/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 StatusCode.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/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
[7/48] Compiling Buildkite TokenProvider.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/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
[8/48] Compiling Buildkite Transport.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/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
[9/48] Compiling Buildkite URL+Buildkite.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/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
[10/48] Compiling Buildkite AgentMetrics.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/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
[11/48] Compiling Buildkite Organizations.swift
[12/48] Compiling Buildkite Pipelines.swift
[13/48] Compiling Buildkite Teams.swift
[14/48] Compiling Buildkite Users.swift
[15/48] Compiling Buildkite TestAnalyticsUpload.swift
[16/48] Compiling Buildkite Build.swift
[17/48] Compiling Buildkite Emoji.swift
[18/48] Compiling Buildkite Job.swift
[19/48] Compiling Buildkite Meta.swift
[20/48] Compiling Buildkite Organization.swift
[21/48] Compiling Buildkite Pipeline.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 GraphQL.swift
[29/48] Compiling Buildkite AccessTokens.swift
[30/48] Compiling Buildkite Agents.swift
[31/48] Compiling Buildkite Annotations.swift
[32/48] Compiling Buildkite Artifacts.swift
[33/48] Compiling Buildkite Builds.swift
[34/48] Compiling Buildkite Emojis.swift
[35/48] Compiling Buildkite Followable.swift
[36/48] Compiling Buildkite Jobs.swift
[37/48] Compiling Buildkite Metas.swift
[38/48] Compiling Buildkite Team.swift
[39/48] Compiling Buildkite Trace.swift
[40/48] Compiling Buildkite User.swift
[41/48] Compiling Buildkite WebhookEvent.swift
[42/48] Compiling Buildkite APIVersion.swift
[43/48] Compiling Buildkite Configuration.swift
[44/48] Compiling Buildkite Formatters.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[45/48] Compiling Buildkite JSONValue.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[46/48] Compiling Buildkite Pagination.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[47/48] Compiling Buildkite Resource.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[48/48] Compiling Buildkite Response.swift
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
Build complete! (27.84s)
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.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.