The Swift Package Index logo.Swift Package Index

Build Information

Successful build of swift-distributed-tracing, reference main (d20842), with Swift 6.3 for macOS (SPM) on 1 May 2026 17:14:17 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apple/swift-distributed-tracing.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/apple/swift-distributed-tracing
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d208422 Disable nightly 6.3 WASM builds (#226)
Cloned https://github.com/apple/swift-distributed-tracing.git
Revision (git rev-parse @):
d208422dc9281d7b5b67786f6f4b915ae81639f7
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/apple/swift-distributed-tracing.git at main
Fetching https://github.com/apple/swift-service-context.git
[1/1287] Fetching swift-service-context
Fetched https://github.com/apple/swift-service-context.git from cache (0.85s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.3.0 (1.42s)
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.3.0
========================================
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",
  "traits": [
    "default"
  ],
  "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",
      "traits": [
        "default"
      ],
      "dependencies": [
        {
          "identity": "swift-service-context",
          "name": "swift-service-context",
          "url": "https://github.com/apple/swift-service-context.git",
          "version": "1.3.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-service-context",
          "traits": [
            "default"
          ],
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/apple/swift-distributed-tracing.git
[1/5794] Fetching swift-distributed-tracing
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.14s)
Fetching https://github.com/apple/swift-service-context.git from cache
Fetched https://github.com/apple/swift-service-context.git from cache (0.45s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.3.0 (0.53s)
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.3.0
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 main (d208422)
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.3
Building package at path:  $PWD
https://github.com/apple/swift-distributed-tracing.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version--6988338F2F200930.txt
[6/8] Compiling ServiceContextModule ServiceContext.swift
[7/8] Compiling ServiceContextModule ServiceContextKey.swift
[8/8] Emitting module ServiceContextModule
[9/14] Compiling Instrumentation MultiplexInstrument.swift
[10/14] Compiling Instrumentation NoOpInstrument.swift
[11/14] Emitting module Instrumentation
[12/14] Compiling Instrumentation Instrument.swift
[13/14] Compiling Instrumentation Locks.swift
[14/14] Compiling Instrumentation InstrumentationSystem.swift
[15/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:309: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
307 |         file fileID: String = #fileID,
308 |         line: UInt = #line,
309 |         @_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
310 |     ) async rethrows -> T {
311 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:364: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
362 |         file fileID: String = #fileID,
363 |         line: UInt = #line,
364 |         @_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
365 |     ) async rethrows -> T {
366 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:415: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
413 |         file fileID: String = #fileID,
414 |         line: UInt = #line,
415 |         @_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
416 |     ) async rethrows -> T {
417 |         let span = self.startSpan(
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[16/22] Compiling Tracing TracingTime.swift
[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:336:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
334 |     _ operation: (any Span) async throws -> T
335 | ) async rethrows -> T {
336 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
337 |         operationName,
338 |         at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:426:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
424 |     _ operation: (any Span) async throws -> T
425 | ) async rethrows -> T {
426 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
427 |         operationName,
428 |         at: DefaultTracerClock.now,
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/Tracer.swift:516:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
514 |     _ operation: (any Span) async throws -> T
515 | ) async rethrows -> T {
516 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
517 |         operationName,
518 |         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:646: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
644 |         file fileID: String = #fileID,
645 |         line: UInt = #line,
646 |         @_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
647 |     ) async rethrows -> T {
648 |         try await self.withSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:689: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
687 |         file fileID: String = #fileID,
688 |         line: UInt = #line,
689 |         @_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
690 |     ) async rethrows -> T {
691 |         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:321:25: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
319 |         _ operation: (any Tracing.Span) async throws -> T
320 |     ) async rethrows -> T {
321 |         let span = self.startAnySpan(
    |                         `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
322 |             operationName,
323 |             at: instant(),
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:427:25: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
425 |         _ operation: (any Tracing.Span) async throws -> T
426 |     ) async rethrows -> T {
427 |         let span = self.startAnySpan(
    |                         `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
428 |             operationName,
429 |             at: DefaultTracerClock.now,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[19/22] Compiling Tracing InstrumentationSystem+Tracing.swift
[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] 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:646: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
644 |         file fileID: String = #fileID,
645 |         line: UInt = #line,
646 |         @_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
647 |     ) async rethrows -> T {
648 |         try await self.withSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:689: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
687 |         file fileID: String = #fileID,
688 |         line: UInt = #line,
689 |         @_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
690 |     ) async rethrows -> T {
691 |         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:309: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
307 |         file fileID: String = #fileID,
308 |         line: UInt = #line,
309 |         @_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
310 |     ) async rethrows -> T {
311 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:364: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
362 |         file fileID: String = #fileID,
363 |         line: UInt = #line,
364 |         @_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
365 |     ) async rethrows -> T {
366 |         let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:415: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
413 |         file fileID: String = #fileID,
414 |         line: UInt = #line,
415 |         @_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
416 |     ) async rethrows -> T {
417 |         let span = self.startSpan(
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[22/22] Compiling Tracing SpanProtocol.swift
[23/26] Compiling InMemoryTracing InMemoryTracer.swift
[24/26] Compiling InMemoryTracing InMemorySpan.swift
[25/26] Compiling InMemoryTracing InMemorySpanContext.swift
[26/26] Emitting module InMemoryTracing
Build complete! (3.74s)
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.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"
      ],
      "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" : "6.1"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/apple/swift-distributed-tracing/main
Repository:               apple/swift-distributed-tracing
Swift version used:       6.3
Target:                   Tracing
Extracting symbol information for 'Tracing'...
Finished extracting symbol information for 'Tracing'. (20.84s)
Building documentation for 'Tracing'...
Finished building documentation for 'Tracing' (0.48s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-tracing/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2287] Fetching swift-docc-plugin
Updating https://github.com/apple/swift-service-context.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.12s)
Updated https://github.com/apple/swift-service-context.git (0.45s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.3.0 (2.03s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.5.0 (2.88s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3709] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.14s)
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/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.5.0
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--6988338F2F200930.txt
[6/54] Emitting module SymbolKit
[7/58] Compiling SymbolKit SourceRange.swift
[8/58] Compiling SymbolKit Metadata.swift
[9/58] Compiling SymbolKit Module.swift
[10/58] Compiling SymbolKit OperatingSystem.swift
[11/58] Compiling SymbolKit Platform.swift
[12/58] Compiling SymbolKit Relationship.swift
[13/58] Compiling SymbolKit RelationshipKind.swift
[14/58] Compiling SymbolKit SourceOrigin.swift
[15/58] Compiling SymbolKit GenericConstraints.swift
[16/58] Compiling SymbolKit Swift.swift
[17/58] Compiling SymbolKit Identifier.swift
[18/58] Compiling SymbolKit KindIdentifier.swift
[19/58] Compiling SymbolKit Location.swift
[20/58] Compiling SymbolKit Mutability.swift
[21/58] Compiling SymbolKit Mixin+Equals.swift
[22/58] Compiling SymbolKit Mixin+Hash.swift
[23/58] Compiling SymbolKit Mixin.swift
[24/58] Compiling SymbolKit LineList.swift
[25/58] Compiling SymbolKit Position.swift
[26/58] Compiling SymbolKit DeclarationFragments.swift
[27/58] Compiling SymbolKit Fragment.swift
[28/58] Compiling SymbolKit FragmentKind.swift
[29/58] Compiling SymbolKit FunctionParameter.swift
[30/58] Compiling SymbolKit FunctionSignature.swift
[31/58] Compiling Snippets SnippetLanguage.swift
[32/58] Compiling Snippets Snippet.swift
[33/58] Compiling SymbolKit SemanticVersion.swift
[34/58] Compiling SymbolKit AccessControl.swift
[35/58] Compiling SymbolKit Availability.swift
[36/58] Compiling SymbolKit AvailabilityItem.swift
[37/58] Compiling SymbolKit Domain.swift
[38/58] Compiling SymbolKit Symbol.swift
[39/58] Compiling SymbolKit SymbolKind.swift
[40/58] Compiling SymbolKit SymbolGraph.swift
[41/58] Compiling SymbolKit GraphCollector.swift
[42/58] Compiling SymbolKit GenericConstraint.swift
[43/58] Compiling SymbolKit GenericParameter.swift
[44/58] Compiling SymbolKit Generics.swift
[45/58] Compiling SymbolKit Namespace.swift
[46/58] Compiling SymbolKit Names.swift
[47/58] Compiling SymbolKit SPI.swift
[48/58] Compiling SymbolKit Snippet.swift
[49/58] Compiling SymbolKit Extension.swift
[50/58] Emitting module Snippets
[51/58] Compiling Snippets SnippetParser.swift
[52/58] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[53/58] Compiling SymbolKit UnifiedSymbol.swift
[54/58] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[55/58] Compiling SymbolKit UnifiedSymbolGraph.swift
[56/62] Compiling snippet_extract URL+Status.swift
[57/62] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/62] Emitting module snippet_extract
[59/62] Compiling snippet_extract SnippetBuildCommand.swift
[59/62] Write Objects.LinkFileList
[60/62] Linking snippet-extract-tool
[61/62] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (6.31s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'Tracing' complete! (0.26s)
Target:                   Instrumentation
Extracting symbol information for 'Instrumentation'...
Finished extracting symbol information for 'Instrumentation'. (0.34s)
Building documentation for 'Instrumentation'...
Finished building documentation for 'Instrumentation' (0.07s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-tracing/main
Building for debugging...
[0/3] Write swift-version--6988338F2F200930.txt
Build of product 'snippet-extract' complete! (0.22s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'Instrumentation' complete! (0.26s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/apple/swift-distributed-tracing/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/apple/swift-distributed-tracing/main/linkable-paths.json
     674
8	/Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-tracing/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/apple/swift-distributed-tracing/main
File count: 674
Doc size:   8.0MB
Preparing doc bundle ...
Uploading prod-apple-swift-distributed-tracing-main-2f6b644c.zip to s3://spi-docs-inbox/prod-apple-swift-distributed-tracing-main-2f6b644c.zip
Copying... [12%]
Copying... [21%]
Copying... [32%]
Copying... [41%]
Copying... [53%]
Copying... [62%]
Copying... [71%]
Copying... [82%]
Copying... [91%]
Copying... [100%]
Done.