Build Information
Successful build of swift-distributed-tracing, reference main (3feb98), with Swift 6.2 for macOS (SPM) on 11 Nov 2025 02:13:16 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.68.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 3feb981 fixing docs (#198)
Cloned https://github.com/apple/swift-distributed-tracing.git
Revision (git rev-parse @):
3feb981d391a31ff913fe3bc95ef88882b9dcf7b
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/1162] Fetching swift-service-context
Fetched https://github.com/apple/swift-service-context.git from cache (0.91s)
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.46s)
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/5566] 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.48s)
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.54s)
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
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 (3feb981)
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] Emitting module ServiceContextModule
[8/8] Compiling ServiceContextModule ServiceContext.swift
[9/14] Compiling Instrumentation MultiplexInstrument.swift
[10/14] Compiling Instrumentation NoOpInstrument.swift
[11/14] Compiling Instrumentation InstrumentationSystem.swift
[12/14] Compiling Instrumentation Instrument.swift
[13/14] Emitting module Instrumentation
[14/14] Compiling Instrumentation Locks.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:269: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
267 | file fileID: String = #fileID,
268 | line: UInt = #line,
269 | @_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
270 | ) async rethrows -> T {
271 | let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:306: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
304 | file fileID: String = #fileID,
305 | line: UInt = #line,
306 | @_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
307 | ) async rethrows -> T {
308 | 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:410: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
408 | file fileID: String = #fileID,
409 | line: UInt = #line,
410 | @_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
411 | ) async rethrows -> T {
412 | 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: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:641: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
639 | file fileID: String = #fileID,
640 | line: UInt = #line,
641 | @_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
642 | ) async rethrows -> T {
643 | 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:424:25: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
422 | _ operation: (any Tracing.Span) async throws -> T
423 | ) async rethrows -> T {
424 | let span = self.startAnySpan(
| `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
425 | operationName,
426 | 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] Compiling Tracing SpanProtocol.swift
[22/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:641: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
639 | file fileID: String = #fileID,
640 | line: UInt = #line,
641 | @_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
642 | ) async rethrows -> T {
643 | 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:269: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
267 | file fileID: String = #fileID,
268 | line: UInt = #line,
269 | @_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
270 | ) async rethrows -> T {
271 | let span = self.startSpan(
/Users/admin/builder/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:306: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
304 | file fileID: String = #fileID,
305 | line: UInt = #line,
306 | @_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
307 | ) async rethrows -> T {
308 | 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:410: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
408 | file fileID: String = #fileID,
409 | line: UInt = #line,
410 | @_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
411 | ) async rethrows -> T {
412 | let span = self.startSpan(
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[23/26] Compiling InMemoryTracing InMemorySpan.swift
[24/26] Emitting module InMemoryTracing
[25/26] Compiling InMemoryTracing InMemorySpanContext.swift
[26/26] Compiling InMemoryTracing InMemoryTracer.swift
Build complete! (3.56s)
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.0"
}
✅ 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.2
Target: Tracing
Extracting symbol information for 'Tracing'...
Finished extracting symbol information for 'Tracing'. (0.80s)
Building documentation for 'Tracing'...
Finished building documentation for 'Tracing' (0.28s)
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/2160] Fetching swift-docc-plugin
Updating https://github.com/apple/swift-service-context.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.24s)
Updated https://github.com/apple/swift-service-context.git (0.42s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (2.20s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (2.47s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3573] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.23s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.90s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[2/8] Write sources
[4/8] Write swift-version-49B95AFC49DCD68C.txt
[6/53] Compiling SymbolKit Names.swift
[7/53] Compiling SymbolKit SPI.swift
[8/53] Compiling SymbolKit Snippet.swift
[9/53] Compiling SymbolKit Extension.swift
[10/57] Compiling SymbolKit SourceRange.swift
[11/57] Compiling SymbolKit Metadata.swift
[12/57] Compiling SymbolKit Module.swift
[13/57] Compiling SymbolKit OperatingSystem.swift
[14/57] Compiling SymbolKit Platform.swift
[15/57] Compiling SymbolKit Identifier.swift
[16/57] Compiling SymbolKit KindIdentifier.swift
[17/57] Compiling SymbolKit Location.swift
[18/57] Compiling SymbolKit Mutability.swift
[19/57] Compiling SymbolKit GenericConstraint.swift
[20/57] Compiling SymbolKit GenericParameter.swift
[21/57] Compiling SymbolKit Generics.swift
[22/57] Compiling SymbolKit Namespace.swift
[23/57] Compiling SymbolKit Mixin+Equals.swift
[24/57] Compiling SymbolKit Mixin+Hash.swift
[25/57] Compiling SymbolKit Mixin.swift
[26/57] Compiling SymbolKit LineList.swift
[27/57] Compiling SymbolKit Position.swift
[28/57] Emitting module SymbolKit
[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 Relationship.swift
[35/57] Compiling SymbolKit RelationshipKind.swift
[36/57] Compiling SymbolKit SourceOrigin.swift
[37/57] Compiling SymbolKit GenericConstraints.swift
[38/57] Compiling SymbolKit Swift.swift
[39/57] Compiling SymbolKit SemanticVersion.swift
[40/57] Compiling SymbolKit AccessControl.swift
[41/57] Compiling SymbolKit Availability.swift
[42/57] Compiling SymbolKit AvailabilityItem.swift
[43/57] Compiling SymbolKit Domain.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 Snippets Snippet.swift
[49/57] Compiling Snippets SnippetParser.swift
[50/57] Emitting module Snippets
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.91s)
Building for debugging...
[0/1] Write swift-version-49B95AFC49DCD68C.txt
Build of target: 'Tracing' complete! (0.23s)
Target: Instrumentation
Extracting symbol information for 'Instrumentation'...
Finished extracting symbol information for 'Instrumentation'. (0.28s)
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/main
Building for debugging...
[0/3] Write swift-version-49B95AFC49DCD68C.txt
Build of product 'snippet-extract' complete! (0.17s)
Building for debugging...
[0/1] Write swift-version-49B95AFC49DCD68C.txt
Build of target: 'Instrumentation' complete! (0.22s)
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
666
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: 666
Doc size: 8.0MB
Preparing doc bundle ...
Uploading prod-apple-swift-distributed-tracing-main-e286e19b.zip to s3://spi-docs-inbox/prod-apple-swift-distributed-tracing-main-e286e19b.zip
Copying... [12%]
Copying... [21%]
Copying... [33%]
Copying... [42%]
Copying... [50%]
Copying... [62%]
Copying... [71%]
Copying... [80%]
Copying... [92%]
Copying... [100%]
Done.