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.2.1 (b78796), with Swift 6.2 (beta) for Linux on 18 Jun 2025 22:25:33 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apple/swift-distributed-tracing.git
Reference: 1.2.1
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/apple/swift-distributed-tracing
 * tag               1.2.1      -> FETCH_HEAD
HEAD is now at b787967 Adds documentation on manual span propogation (#153)
Cloned https://github.com/apple/swift-distributed-tracing.git
Revision (git rev-parse @):
b78796709d243d5438b36e74ce3c5ec2d2ece4d8
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/apple/swift-distributed-tracing.git at 1.2.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/apple/swift-distributed-tracing.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/apple/swift-service-context.git
[1/1081] Fetching swift-service-context
Fetched https://github.com/apple/swift-service-context.git from cache (0.35s)
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.82s)
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
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/7] Emitting module ServiceContextModule
[6/7] Compiling ServiceContextModule ServiceContextKey.swift
[7/7] Compiling ServiceContextModule ServiceContext.swift
[9/14] Emitting module Instrumentation
[10/14] Compiling Instrumentation Instrument.swift
[11/14] Compiling Instrumentation MultiplexInstrument.swift
[12/14] Compiling Instrumentation NoOpInstrument.swift
[13/14] Compiling Instrumentation InstrumentationSystem.swift
[14/14] Compiling Instrumentation Locks.swift
[16/23] Compiling Tracing NoOpTracer.swift
/host/spi-builder-workspace/Sources/Tracing/NoOpTracer.swift:21:27: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 19 | /// Tracer that ignores all operations, used when no tracing is required.
 20 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 21 | public struct NoOpTracer: LegacyTracer {
    |                           |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |                           `- note: use 'Tracer' instead
 22 |     public typealias Span = NoOpSpan
 23 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[17/23] Compiling Tracing TracerProtocol.swift
/host/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 will be producing/
 27 |     associatedtype Span: Tracing.Span
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:270: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
268 |         file fileID: String = #fileID,
269 |         line: UInt = #line,
270 |         @_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
271 |     ) async rethrows -> T {
272 |         let span = self.startSpan(
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:304: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
302 |         file fileID: String = #fileID,
303 |         line: UInt = #line,
304 |         @_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
305 |     ) async rethrows -> T {
306 |         let span = self.startSpan(
/host/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(
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:395: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
393 |         file fileID: String = #fileID,
394 |         line: UInt = #line,
395 |         @_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
396 |     ) async rethrows -> T {
397 |         let span = self.startSpan(
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[18/23] Compiling Tracing TracingTime.swift
[19/23] Compiling Tracing InstrumentationSystem+Tracing.swift
[20/23] Compiling Tracing TracerProtocol+Legacy.swift
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:84:11: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 82 |
 83 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 84 | extension LegacyTracer {
    |           |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |           `- note: use 'Tracer' instead
 85 |     // ==== startSpan ---------------------------------------------------------
 86 |
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:617: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
615 |         file fileID: String = #fileID,
616 |         line: UInt = #line,
617 |         @_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
618 |     ) async rethrows -> T {
619 |         try await self.withSpan(
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:645: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
643 |         file fileID: String = #fileID,
644 |         line: UInt = #line,
645 |         @_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
646 |     ) async rethrows -> T {
647 |         try await self.withSpan(
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:172:14: warning: 'startAnySpan(_:context:ofKind:at:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
170 |         line: UInt = #line
171 |     ) -> any Tracing.Span {
172 |         self.startAnySpan(
    |              `- warning: 'startAnySpan(_:context:ofKind:at:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
173 |             operationName,
174 |             context: context(),
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:218:25: warning: 'startAnySpan(_:context:ofKind:at:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
216 |         _ operation: (any Tracing.Span) throws -> T
217 |     ) rethrows -> T {
218 |         let span = self.startAnySpan(
    |                         `- warning: 'startAnySpan(_:context:ofKind:at:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
219 |             operationName,
220 |             context: context(),
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:322:25: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
320 |         _ operation: (any Tracing.Span) async throws -> T
321 |     ) async rethrows -> T {
322 |         let span = self.startAnySpan(
    |                         `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
323 |             operationName,
324 |             at: instant(),
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:413:25: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
411 |         _ operation: (any Tracing.Span) async throws -> T
412 |     ) async rethrows -> T {
413 |         let span = self.startAnySpan(
    |                         `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
414 |             operationName,
415 |             at: DefaultTracerClock.now,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[21/23] Compiling Tracing Tracer.swift
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:55:27: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
 53 |     // Effectively these end up calling the same method, however
 54 |     // we try to not use the deprecated methods ourselves anyway
 55 |     InstrumentationSystem.legacyTracer.startAnySpan(
    |                           `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
 56 |         operationName,
 57 |         at: instant(),
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:55:40: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
 53 |     // Effectively these end up calling the same method, however
 54 |     // we try to not use the deprecated methods ourselves anyway
 55 |     InstrumentationSystem.legacyTracer.startAnySpan(
    |                                        `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
 56 |         operationName,
 57 |         at: instant(),
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:100:27: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
 98 |     // Effectively these end up calling the same method, however
 99 |     // we try to not use the deprecated methods ourselves anyway
100 |     InstrumentationSystem.legacyTracer.startAnySpan(
    |                           `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
101 |         operationName,
102 |         at: DefaultTracerClock.now,
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:100:40: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
 98 |     // Effectively these end up calling the same method, however
 99 |     // we try to not use the deprecated methods ourselves anyway
100 |     InstrumentationSystem.legacyTracer.startAnySpan(
    |                                        `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
101 |         operationName,
102 |         at: DefaultTracerClock.now,
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:147:34: warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
145 |     // Effectively these end up calling the same method, however
146 |     // we try to not use the deprecated methods ourselves anyway
147 |     InstrumentationSystem.tracer.startAnySpan(
    |                                  `- warning: 'startAnySpan(_:at:context:ofKind:function:file:line:)' is deprecated: prefer withSpan [#DeprecatedDeclaration]
148 |         operationName,
149 |         at: instant(),
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:194:31: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
192 |     _ operation: (any Span) throws -> T
193 | ) rethrows -> T {
194 |     try InstrumentationSystem.legacyTracer.withAnySpan(
    |                               `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
195 |         operationName,
196 |         at: instant(),
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:239:31: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
237 |     _ operation: (any Span) throws -> T
238 | ) rethrows -> T {
239 |     try InstrumentationSystem.legacyTracer.withAnySpan(
    |                               `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
240 |         operationName,
241 |         at: DefaultTracerClock.now,
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:286:31: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
284 |     _ operation: (any Span) throws -> T
285 | ) rethrows -> T {
286 |     try InstrumentationSystem.legacyTracer.withAnySpan(
    |                               `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
287 |         operationName,
288 |         at: instant(),
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:338:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
336 |     _ operation: (any Span) async throws -> T
337 | ) async rethrows -> T {
338 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
339 |         operationName,
340 |         at: instant(),
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:414:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
412 |     _ operation: (any Span) async throws -> T
413 | ) async rethrows -> T {
414 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
415 |         operationName,
416 |         at: DefaultTracerClock.now,
/host/spi-builder-workspace/Sources/Tracing/Tracer.swift:491:37: warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
489 |     _ operation: (any Span) async throws -> T
490 | ) async rethrows -> T {
491 |     try await InstrumentationSystem.legacyTracer.withAnySpan(
    |                                     `- warning: 'legacyTracer' is deprecated: prefer tracer [#DeprecatedDeclaration]
492 |         operationName,
493 |         at: instant(),
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[22/23] Compiling Tracing SpanProtocol.swift
[23/23] Emitting module Tracing
/host/spi-builder-workspace/Sources/Tracing/NoOpTracer.swift:21:27: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 19 | /// Tracer that ignores all operations, used when no tracing is required.
 20 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 21 | public struct NoOpTracer: LegacyTracer {
    |                           |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |                           `- note: use 'Tracer' instead
 22 |     public typealias Span = NoOpSpan
 23 |
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:84:11: warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
 82 |
 83 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)  // for TaskLocal ServiceContext
 84 | extension LegacyTracer {
    |           |- warning: 'LegacyTracer' is deprecated: renamed to 'Tracer' [#DeprecatedDeclaration]
    |           `- note: use 'Tracer' instead
 85 |     // ==== startSpan ---------------------------------------------------------
 86 |
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:617: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
615 |         file fileID: String = #fileID,
616 |         line: UInt = #line,
617 |         @_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
618 |     ) async rethrows -> T {
619 |         try await self.withSpan(
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol+Legacy.swift:645: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
643 |         file fileID: String = #fileID,
644 |         line: UInt = #line,
645 |         @_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
646 |     ) async rethrows -> T {
647 |         try await self.withSpan(
/host/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 will be producing/
 27 |     associatedtype Span: Tracing.Span
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:270: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
268 |         file fileID: String = #fileID,
269 |         line: UInt = #line,
270 |         @_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
271 |     ) async rethrows -> T {
272 |         let span = self.startSpan(
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:304: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
302 |         file fileID: String = #fileID,
303 |         line: UInt = #line,
304 |         @_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
305 |     ) async rethrows -> T {
306 |         let span = self.startSpan(
/host/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(
/host/spi-builder-workspace/Sources/Tracing/TracerProtocol.swift:395: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
393 |         file fileID: String = #fileID,
394 |         line: UInt = #line,
395 |         @_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
396 |     ) async rethrows -> T {
397 |         let span = self.startSpan(
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (13.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" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Instrumentation",
      "targets" : [
        "Instrumentation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Tracing",
      "targets" : [
        "Tracing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "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"
      ],
      "sources" : [
        "InstrumentationSystem+Tracing.swift",
        "NoOpTracer.swift",
        "SpanProtocol.swift",
        "Tracer.swift",
        "TracerProtocol+Legacy.swift",
        "TracerProtocol.swift",
        "TracingTime.swift"
      ],
      "target_dependencies" : [
        "Instrumentation"
      ],
      "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"
      ],
      "sources" : [
        "Instrument.swift",
        "InstrumentationSystem.swift",
        "Locks.swift",
        "MultiplexInstrument.swift",
        "NoOpInstrument.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.