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 SwiftBacktrace, reference 1.0.1 (1b4bbe), with Swift 6.2 (beta) for Linux on 17 Jun 2025 18:07:31 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/norio-nomura/swiftbacktrace.git
Reference: 1.0.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/norio-nomura/swiftbacktrace
 * tag               1.0.1      -> FETCH_HEAD
HEAD is now at 1b4bbe8 Merge pull request #19 from norio-nomura/revert-#18
Cloned https://github.com/norio-nomura/swiftbacktrace.git
Revision (git rev-parse @):
1b4bbe87c19d5e2e04786d8140ab36fec4b7881b
SUCCESS checkout https://github.com/norio-nomura/swiftbacktrace.git at 1.0.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/norio-nomura/swiftbacktrace.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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-nio.git
[1/76327] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (4.90s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (7.90s)
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-collections.git
[1/4428] Fetching swift-system
[2038/6225] Fetching swift-system, swift-atomics
[5023/22831] Fetching swift-system, swift-atomics, swift-collections
Fetched https://github.com/apple/swift-atomics.git from cache (1.05s)
Fetched https://github.com/apple/swift-system.git from cache (1.06s)
Fetched https://github.com/apple/swift-collections.git from cache (1.08s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.43s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (1.41s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (0.60s)
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
Building for debugging...
[0/7] Write sources
[2/7] Compiling CSwiftBacktrace CSwiftBacktrace.cpp
[3/7] Compiling Clibunwind Clibunwind.cpp
[4/7] Write swift-version-24593BA9C3E375BF.txt
[5/7] Compiling c-nioatomics.c
[6/7] Compiling c-atomics.c
[8/13] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[9/13] Compiling NIOConcurrencyHelpers lock.swift
[10/13] Compiling NIOConcurrencyHelpers NIOLock.swift
[11/13] Emitting module NIOConcurrencyHelpers
[12/13] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[13/13] Compiling NIOConcurrencyHelpers atomics.swift
[15/22] Compiling SwiftBacktrace shim.swift
[16/23] Compiling SwiftBacktrace Unwind.swift
[17/23] Compiling SwiftBacktrace SwiftBacktrace.swift
[18/23] Compiling SwiftBacktrace String+extension.swift
[19/23] Compiling SwiftBacktrace Demangle.swift
[20/23] Emitting module SwiftBacktrace
/host/spi-builder-workspace/Sources/SwiftBacktrace/sigaction.swift:163:17: warning: 'Atomic' is deprecated: please use ManagedAtomic from https://github.com/apple/swift-atomics instead [#DeprecatedDeclaration]
161 | final class Callback {
162 |     enum State: Int { case empty, initializing, initialized, executing }
163 |     var state = Atomic(value: State.empty.rawValue)
    |                 `- warning: 'Atomic' is deprecated: please use ManagedAtomic from https://github.com/apple/swift-atomics instead [#DeprecatedDeclaration]
164 |     var callback: (() -> Void)?
165 |
/host/spi-builder-workspace/Sources/SwiftBacktrace/sigaction.swift:213:28: warning: 'Atomic' is deprecated: please use ManagedAtomic from https://github.com/apple/swift-atomics instead [#DeprecatedDeclaration]
211 | //// Interrupt Function
212 | public typealias InterruptFunction = @convention(c) (Int32) -> Void
213 | var interruptFunctionPtr = Atomic(value: 0)
    |                            `- warning: 'Atomic' is deprecated: please use ManagedAtomic from https://github.com/apple/swift-atomics instead [#DeprecatedDeclaration]
214 |
215 | public func setInterruptFunction(_ desired: InterruptFunction?) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[21/23] Compiling SwiftBacktrace BacktraceFormatter.swift
[22/23] Compiling SwiftBacktrace DynamicLinkLibrary.swift
[23/23] Compiling SwiftBacktrace sigaction.swift
/host/spi-builder-workspace/Sources/SwiftBacktrace/sigaction.swift:163:17: warning: 'Atomic' is deprecated: please use ManagedAtomic from https://github.com/apple/swift-atomics instead [#DeprecatedDeclaration]
161 | final class Callback {
162 |     enum State: Int { case empty, initializing, initialized, executing }
163 |     var state = Atomic(value: State.empty.rawValue)
    |                 `- warning: 'Atomic' is deprecated: please use ManagedAtomic from https://github.com/apple/swift-atomics instead [#DeprecatedDeclaration]
164 |     var callback: (() -> Void)?
165 |
/host/spi-builder-workspace/Sources/SwiftBacktrace/sigaction.swift:213:28: warning: 'Atomic' is deprecated: please use ManagedAtomic from https://github.com/apple/swift-atomics instead [#DeprecatedDeclaration]
211 | //// Interrupt Function
212 | public typealias InterruptFunction = @convention(c) (Int32) -> Void
213 | var interruptFunctionPtr = Atomic(value: 0)
    |                            `- warning: 'Atomic' is deprecated: please use ManagedAtomic from https://github.com/apple/swift-atomics instead [#DeprecatedDeclaration]
214 |
215 | public func setInterruptFunction(_ desired: InterruptFunction?) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (32.29s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    }
  ],
  "manifest_display_name" : "SwiftBacktrace",
  "name" : "SwiftBacktrace",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftBacktrace",
      "targets" : [
        "Clibunwind",
        "CSwiftBacktrace",
        "SwiftBacktrace"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftBacktraceTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftBacktraceTests",
      "path" : "Tests/SwiftBacktraceTests",
      "sources" : [
        "SwiftBacktraceTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "SwiftBacktrace"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftBacktrace",
      "module_type" : "SwiftTarget",
      "name" : "SwiftBacktrace",
      "path" : "Sources/SwiftBacktrace",
      "product_dependencies" : [
        "NIOConcurrencyHelpers"
      ],
      "product_memberships" : [
        "SwiftBacktrace"
      ],
      "sources" : [
        "BacktraceFormatter.swift",
        "Demangle.swift",
        "DynamicLinkLibrary.swift",
        "String+extension.swift",
        "SwiftBacktrace.swift",
        "Unwind.swift",
        "shim.swift",
        "sigaction.swift"
      ],
      "target_dependencies" : [
        "Clibunwind",
        "CSwiftBacktrace"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Clibunwind",
      "module_type" : "ClangTarget",
      "name" : "Clibunwind",
      "path" : "Sources/Clibunwind",
      "product_memberships" : [
        "SwiftBacktrace"
      ],
      "sources" : [
        "Clibunwind.cpp"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSwiftBacktrace",
      "module_type" : "ClangTarget",
      "name" : "CSwiftBacktrace",
      "path" : "Sources/CSwiftBacktrace",
      "product_memberships" : [
        "SwiftBacktrace"
      ],
      "sources" : [
        "CSwiftBacktrace.cpp"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
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.