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 swift-distributed-tracing, reference 1.3.1 (baa932), with Swift 6.2 for macOS (SPM) on 7 Oct 2025 13:51:10 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apple/swift-distributed-tracing.git
Reference: 1.3.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/apple/swift-distributed-tracing
 * tag               1.3.1      -> FETCH_HEAD
HEAD is now at baa932c Windows CI & Fix Windows support (#188)
Cloned https://github.com/apple/swift-distributed-tracing.git
Revision (git rev-parse @):
baa932c1336f7894145cbaafcd34ce2dd0b77c97
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/apple/swift-distributed-tracing.git at 1.3.1
Fetching https://github.com/apple/swift-service-context.git
[1/1117] Fetching swift-service-context
Fetched https://github.com/apple/swift-service-context.git from cache (0.89s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (1.45s)
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.1
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "swift-distributed-tracing",
      "name": "swift-distributed-tracing",
      "url": "https://github.com/apple/swift-distributed-tracing.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-distributed-tracing",
      "dependencies": [
        {
          "identity": "swift-service-context",
          "name": "swift-service-context",
          "url": "https://github.com/apple/swift-service-context.git",
          "version": "1.2.1",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-service-context",
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/apple/swift-distributed-tracing.git
[1/5441] Fetching swift-distributed-tracing
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.07s)
Fetching https://github.com/apple/swift-service-context.git from cache
Fetched https://github.com/apple/swift-service-context.git from cache (0.47s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (0.52s)
Creating working copy for https://github.com/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.3.1 (baa932c)
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.1
warning: '.resolve-product-dependencies': dependency 'swift-distributed-tracing' is not used by any target
Found 1 product dependencies
  - swift-service-context
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/apple/swift-distributed-tracing.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version-49B95AFC49DCD68C.txt
[6/8] Compiling ServiceContextModule ServiceContextKey.swift
[7/8] Compiling ServiceContextModule ServiceContext.swift
[8/8] Emitting module ServiceContextModule
[9/14] Compiling Instrumentation NoOpInstrument.swift
[10/14] Compiling Instrumentation Locks.swift
[11/14] Compiling Instrumentation InstrumentationSystem.swift
[12/14] Compiling Instrumentation Instrument.swift
[13/14] Emitting module Instrumentation
[14/14] Compiling Instrumentation MultiplexInstrument.swift
[15/22] Compiling Tracing TracingTime.swift
[16/22] Compiling Tracing TracerProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:25:25: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 23 | /// A tracer is a special kind of instrument with the added ability to start a ``Span``.
 24 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 25 | public protocol Tracer: LegacyTracer {
    |                         |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |                         `- note: use 'Tracer' instead
 26 |     /// The concrete type of span this tracer produces.
 27 |     associatedtype Span: Tracing.Span
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:271:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
269 |         file fileID: String = #fileID,
270 |         line: UInt = #line,
271 |         @_inheritActorContext @_implicitSelfCapture _ operation: (Self.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
272 |     ) async rethrows -> T {
273 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:305:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
303 |         file fileID: String = #fileID,
304 |         line: UInt = #line,
305 |         @_inheritActorContext @_implicitSelfCapture _ operation: (Self.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
306 |     ) async rethrows -> T {
307 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:360:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
358 |         file fileID: String = #fileID,
359 |         line: UInt = #line,
360 |         @_inheritActorContext @_implicitSelfCapture _ operation: (Self.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
361 |     ) async rethrows -> T {
362 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:409:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
407 |         file fileID: String = #fileID,
408 |         line: UInt = #line,
409 |         @_inheritActorContext @_implicitSelfCapture _ operation: (Self.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
410 |     ) async rethrows -> T {
411 |         let span = self.startSpan(
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[17/22] Compiling Tracing Tracer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:54:27: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
 52 |     // Effectively these end up calling the same method, however
 53 |     // we try to not use the deprecated methods ourselves anyway
 54 |     InstrumentationSystem.legacyTracer.startAnySpan(
    |                           `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
 55 |         operationName,
 56 |         at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:54:40: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
 52 |     // Effectively these end up calling the same method, however
 53 |     // we try to not use the deprecated methods ourselves anyway
 54 |     InstrumentationSystem.legacyTracer.startAnySpan(
    |                                        `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
 55 |         operationName,
 56 |         at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:99:27: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
 97 |     // Effectively these end up calling the same method, however
 98 |     // we try to not use the deprecated methods ourselves anyway
 99 |     InstrumentationSystem.legacyTracer.startAnySpan(
    |                           `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
100 |         operationName,
101 |         at: DefaultTracerClock.now,
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:99:40: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
 97 |     // Effectively these end up calling the same method, however
 98 |     // we try to not use the deprecated methods ourselves anyway
 99 |     InstrumentationSystem.legacyTracer.startAnySpan(
    |                                        `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
100 |         operationName,
101 |         at: DefaultTracerClock.now,
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:146:34: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
144 |     // Effectively these end up calling the same method, however
145 |     // we try to not use the deprecated methods ourselves anyway
146 |     InstrumentationSystem.tracer.startAnySpan(
    |                                  `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
147 |         operationName,
148 |         at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:193:31: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
191 |     _ operation: (any Span) throws -> T
192 | ) rethrows -> T {
193 |     try InstrumentationSystem.legacyTracer.withAnySpan(
    |                               `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
194 |         operationName,
195 |         at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:238:31: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
236 |     _ operation: (any Span) throws -> T
237 | ) rethrows -> T {
238 |     try InstrumentationSystem.legacyTracer.withAnySpan(
    |                               `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
239 |         operationName,
240 |         at: DefaultTracerClock.now,
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:285:31: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
283 |     _ operation: (any Span) throws -> T
284 | ) rethrows -> T {
285 |     try InstrumentationSystem.legacyTracer.withAnySpan(
    |                               `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
286 |         operationName,
287 |         at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:337:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
335 |     _ operation: (any Span) async throws -> T
336 | ) async rethrows -> T {
337 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
338 |         operationName,
339 |         at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:428:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
426 |     _ operation: (any Span) async throws -> T
427 | ) async rethrows -> T {
428 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
429 |         operationName,
430 |         at: DefaultTracerClock.now,
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:518:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
516 |     _ operation: (any Span) async throws -> T
517 | ) async rethrows -> T {
518 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
519 |         operationName,
520 |         at: instant(),
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[18/22] Compiling Tracing TracerProtocol+Legacy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:82:11: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 80 |
 81 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 82 | extension LegacyTracer {
    |           |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |           `- note: use 'Tracer' instead
 83 |     // ==== startSpan ---------------------------------------------------------
 84 |
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:642:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
640 |         file fileID: String = #fileID,
641 |         line: UInt = #line,
642 |         @_inheritActorContext @_implicitSelfCapture _ operation: (any Tracing.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
643 |     ) async rethrows -> T {
644 |         try await self.withSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:684:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
682 |         file fileID: String = #fileID,
683 |         line: UInt = #line,
684 |         @_inheritActorContext @_implicitSelfCapture _ operation: (any Tracing.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
685 |     ) async rethrows -> T {
686 |         try await self.withSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:170:14: warning: 'startAnySpan(_:context:ofKind:at:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
168 |         line: UInt = #line
169 |     ) -> any Tracing.Span {
170 |         self.startAnySpan(
    |              `- warning: 'startAnySpan(_:context:ofKind:at:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
171 |             operationName,
172 |             context: context(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:216:25: warning: 'startAnySpan(_:context:ofKind:at:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
214 |         _ operation: (any Tracing.Span) throws -> T
215 |     ) rethrows -> T {
216 |         let span = self.startAnySpan(
    |                         `- warning: 'startAnySpan(_:context:ofKind:at:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
217 |             operationName,
218 |             context: context(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:320:25: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
318 |         _ operation: (any Tracing.Span) async throws -> T
319 |     ) async rethrows -> T {
320 |         let span = self.startAnySpan(
    |                         `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
321 |             operationName,
322 |             at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:425:25: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
423 |         _ operation: (any Tracing.Span) async throws -> T
424 |     ) async rethrows -> T {
425 |         let span = self.startAnySpan(
    |                         `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
426 |             operationName,
427 |             at: DefaultTracerClock.now,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[19/22] Emitting module Tracing
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/NoOpTracer.swift:20:27: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 18 | /// Tracer that ignores all operations, used when no tracing is required.
 19 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 20 | public struct NoOpTracer: LegacyTracer {
    |                           |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |                           `- note: use 'Tracer' instead
 21 |
 22 |     /// The type used to represent a span.
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:82:11: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 80 |
 81 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 82 | extension LegacyTracer {
    |           |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |           `- note: use 'Tracer' instead
 83 |     // ==== startSpan ---------------------------------------------------------
 84 |
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:642:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
640 |         file fileID: String = #fileID,
641 |         line: UInt = #line,
642 |         @_inheritActorContext @_implicitSelfCapture _ operation: (any Tracing.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
643 |     ) async rethrows -> T {
644 |         try await self.withSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:684:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
682 |         file fileID: String = #fileID,
683 |         line: UInt = #line,
684 |         @_inheritActorContext @_implicitSelfCapture _ operation: (any Tracing.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
685 |     ) async rethrows -> T {
686 |         try await self.withSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:25:25: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 23 | /// A tracer is a special kind of instrument with the added ability to start a ``Span``.
 24 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 25 | public protocol Tracer: LegacyTracer {
    |                         |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |                         `- note: use 'Tracer' instead
 26 |     /// The concrete type of span this tracer produces.
 27 |     associatedtype Span: Tracing.Span
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:271:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
269 |         file fileID: String = #fileID,
270 |         line: UInt = #line,
271 |         @_inheritActorContext @_implicitSelfCapture _ operation: (Self.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
272 |     ) async rethrows -> T {
273 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:305:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
303 |         file fileID: String = #fileID,
304 |         line: UInt = #line,
305 |         @_inheritActorContext @_implicitSelfCapture _ operation: (Self.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
306 |     ) async rethrows -> T {
307 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:360:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
358 |         file fileID: String = #fileID,
359 |         line: UInt = #line,
360 |         @_inheritActorContext @_implicitSelfCapture _ operation: (Self.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
361 |     ) async rethrows -> T {
362 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:409:10: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
407 |         file fileID: String = #fileID,
408 |         line: UInt = #line,
409 |         @_inheritActorContext @_implicitSelfCapture _ operation: (Self.Span) async throws -> T
    |          `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
410 |     ) async rethrows -> T {
411 |         let span = self.startSpan(
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[20/22] Compiling Tracing NoOpTracer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/NoOpTracer.swift:20:27: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 18 | /// Tracer that ignores all operations, used when no tracing is required.
 19 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 20 | public struct NoOpTracer: LegacyTracer {
    |                           |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |                           `- note: use 'Tracer' instead
 21 |
 22 |     /// The type used to represent a span.
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[21/22] Compiling Tracing InstrumentationSystem+Tracing.swift
[22/22] Compiling Tracing SpanProtocol.swift
[23/26] Compiling InMemoryTracing InMemoryTracer.swift
[24/26] Compiling InMemoryTracing InMemorySpan.swift
[25/26] Emitting module InMemoryTracing
[26/26] Compiling InMemoryTracing InMemorySpanContext.swift
Build complete! (3.33s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-service-context",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-service-context.git"
    }
  ],
  "manifest_display_name" : "swift-distributed-tracing",
  "name" : "swift-distributed-tracing",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Instrumentation",
      "targets" : [
        "Instrumentation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Tracing",
      "targets" : [
        "Tracing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "InMemoryTracing",
      "targets" : [
        "InMemoryTracing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "_CWASI",
      "module_type" : "ClangTarget",
      "name" : "_CWASI",
      "path" : "Sources/_CWASI",
      "product_memberships" : [
        "Tracing",
        "InMemoryTracing"
      ],
      "sources" : [
        "_CWASI.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "TracingTests",
      "module_type" : "SwiftTarget",
      "name" : "TracingTests",
      "path" : "Tests/TracingTests",
      "sources" : [
        "ActorTracingTests.swift",
        "DynamicTracepointTracerTests.swift",
        "SpanTests.swift",
        "TestTracer.swift",
        "TracedLock.swift",
        "TracedLockTests.swift",
        "TracerTests+swift57.swift",
        "TracerTests.swift",
        "TracerTimeTests.swift",
        "TracingInstrumentationSystemTests.swift"
      ],
      "target_dependencies" : [
        "Tracing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Tracing",
      "module_type" : "SwiftTarget",
      "name" : "Tracing",
      "path" : "Sources/Tracing",
      "product_dependencies" : [
        "ServiceContextModule"
      ],
      "product_memberships" : [
        "Tracing",
        "InMemoryTracing"
      ],
      "sources" : [
        "InstrumentationSystem+Tracing.swift",
        "NoOpTracer.swift",
        "SpanProtocol.swift",
        "Tracer.swift",
        "TracerProtocol+Legacy.swift",
        "TracerProtocol.swift",
        "TracingTime.swift"
      ],
      "target_dependencies" : [
        "Instrumentation",
        "_CWASI"
      ],
      "type" : "library"
    },
    {
      "c99name" : "InstrumentationTests",
      "module_type" : "SwiftTarget",
      "name" : "InstrumentationTests",
      "path" : "Tests/InstrumentationTests",
      "sources" : [
        "InstrumentTests.swift",
        "InstrumentationSystemTests.swift"
      ],
      "target_dependencies" : [
        "Instrumentation"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Instrumentation",
      "module_type" : "SwiftTarget",
      "name" : "Instrumentation",
      "path" : "Sources/Instrumentation",
      "product_dependencies" : [
        "ServiceContextModule"
      ],
      "product_memberships" : [
        "Instrumentation",
        "Tracing",
        "InMemoryTracing"
      ],
      "sources" : [
        "Instrument.swift",
        "InstrumentationSystem.swift",
        "Locks.swift",
        "MultiplexInstrument.swift",
        "NoOpInstrument.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "InMemoryTracingTests",
      "module_type" : "SwiftTarget",
      "name" : "InMemoryTracingTests",
      "path" : "Tests/InMemoryTracingTests",
      "sources" : [
        "InMemoryTracerTests.swift"
      ],
      "target_dependencies" : [
        "InMemoryTracing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "InMemoryTracing",
      "module_type" : "SwiftTarget",
      "name" : "InMemoryTracing",
      "path" : "Sources/InMemoryTracing",
      "product_memberships" : [
        "InMemoryTracing"
      ],
      "sources" : [
        "InMemorySpan.swift",
        "InMemorySpanContext.swift",
        "InMemoryTracer.swift"
      ],
      "target_dependencies" : [
        "Tracing"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/apple/swift-distributed-tracing/1.3.1
Repository:               apple/swift-distributed-tracing
Swift version used:       6.2
Target:                   Tracing
Extracting symbol information for 'Tracing'...
Finished extracting symbol information for 'Tracing'. (0.78s)
Building documentation for 'Tracing'...
Finished building documentation for 'Tracing' (0.31s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-tracing/1.3.1
Fetching https://github.com/swiftlang/swift-docc-plugin
Updating https://github.com/apple/swift-service-context.git
Updated https://github.com/apple/swift-service-context.git (0.48s)
[1/2133] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.28s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (1.82s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (2.48s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3540] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.16s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.82s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
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
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[3/8] Write sources
[4/8] Write swift-version-49B95AFC49DCD68C.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Identifier.swift
[8/57] Compiling SymbolKit KindIdentifier.swift
[9/57] Compiling SymbolKit Location.swift
[10/57] Compiling SymbolKit Mutability.swift
[11/57] Compiling SymbolKit Names.swift
[12/57] Compiling SymbolKit SPI.swift
[13/57] Compiling SymbolKit Snippet.swift
[14/57] Compiling SymbolKit Extension.swift
[15/57] Compiling SymbolKit SemanticVersion.swift
[16/57] Compiling SymbolKit AccessControl.swift
[17/57] Compiling SymbolKit Availability.swift
[18/57] Compiling SymbolKit AvailabilityItem.swift
[19/57] Compiling SymbolKit Domain.swift
[20/57] Compiling SymbolKit Relationship.swift
[21/57] Compiling SymbolKit RelationshipKind.swift
[22/57] Compiling SymbolKit SourceOrigin.swift
[23/57] Compiling SymbolKit GenericConstraints.swift
[24/57] Compiling SymbolKit Swift.swift
[25/57] Compiling SymbolKit GenericConstraint.swift
[26/57] Compiling SymbolKit GenericParameter.swift
[27/57] Compiling SymbolKit Generics.swift
[28/57] Compiling SymbolKit Namespace.swift
[29/57] Compiling SymbolKit DeclarationFragments.swift
[30/57] Compiling SymbolKit Fragment.swift
[31/57] Compiling SymbolKit FragmentKind.swift
[32/57] Compiling SymbolKit FunctionParameter.swift
[33/57] Compiling SymbolKit FunctionSignature.swift
[34/57] Compiling SymbolKit Mixin+Equals.swift
[35/57] Compiling SymbolKit Mixin+Hash.swift
[36/57] Compiling SymbolKit Mixin.swift
[37/57] Compiling SymbolKit LineList.swift
[38/57] Compiling SymbolKit Position.swift
[39/57] Compiling SymbolKit SourceRange.swift
[40/57] Compiling SymbolKit Metadata.swift
[41/57] Compiling SymbolKit Module.swift
[42/57] Compiling SymbolKit OperatingSystem.swift
[43/57] Compiling SymbolKit Platform.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Emitting module Snippets
[53/57] Compiling Snippets Snippet.swift
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract SnippetBuildCommand.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.94s)
Building for debugging...
[0/1] Write swift-version-49B95AFC49DCD68C.txt
Build of target: 'Tracing' complete! (0.20s)
Target:                   Instrumentation
Extracting symbol information for 'Instrumentation'...
Finished extracting symbol information for 'Instrumentation'. (0.24s)
Building documentation for 'Instrumentation'...
Finished building documentation for 'Instrumentation' (0.06s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-tracing/1.3.1
Building for debugging...
[0/3] Write swift-version-49B95AFC49DCD68C.txt
Build of product 'snippet-extract' complete! (0.20s)
Building for debugging...
[0/1] Write swift-version-49B95AFC49DCD68C.txt
Build of target: 'Instrumentation' complete! (0.19s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/apple/swift-distributed-tracing/1.3.1/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/apple/swift-distributed-tracing/1.3.1/linkable-paths.json
     666
7	/Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-tracing/1.3.1
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/apple/swift-distributed-tracing/1.3.1
File count: 666
Doc size:   7.0MB
Preparing doc bundle ...
Uploading prod-apple-swift-distributed-tracing-1.3.1-ef5dffdf.zip to s3://spi-docs-inbox/prod-apple-swift-distributed-tracing-1.3.1-ef5dffdf.zip
Copying... [12%]
Copying... [21%]
Copying... [30%]
Copying... [42%]
Copying... [51%]
Copying... [60%]
Copying... [72%]
Copying... [81%]
Copying... [90%]
Copying... [100%]
Done.