Build Information
Successful build of SwiftBacktrace, reference master (2a865d
), with Swift 6.2 (beta) for Linux on 17 Jun 2025 18:07:57 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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: master
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
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 2a865d3 [GitHub Actions] Update action-swiftlint to 3.0.1
Cloned https://github.com/norio-nomura/swiftbacktrace.git
Revision (git rev-parse @):
2a865d3d54cd36e637badc7a788133b8ddfc9b58
SUCCESS checkout https://github.com/norio-nomura/swiftbacktrace.git at master
========================================
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-4606859-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 (9.00s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (14.64s)
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-collections.git
[45/4428] Fetching swift-system
[179/6225] Fetching swift-system, swift-atomics
[1835/22831] Fetching swift-system, swift-atomics, swift-collections
Fetched https://github.com/apple/swift-atomics.git from cache (2.33s)
Fetched https://github.com/apple/swift-system.git from cache (2.34s)
Fetched https://github.com/apple/swift-collections.git from cache (2.39s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (3.18s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.83s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (1.27s)
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-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
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
Building for debugging...
[0/7] Write sources
[2/7] Compiling Clibunwind Clibunwind.cpp
[3/7] Write swift-version-24593BA9C3E375BF.txt
[4/7] Compiling CSwiftBacktrace CSwiftBacktrace.cpp
[5/7] Compiling c-nioatomics.c
[6/7] Compiling c-atomics.c
[8/13] Emitting module NIOConcurrencyHelpers
[9/13] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[10/13] Compiling NIOConcurrencyHelpers lock.swift
[11/13] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[12/13] Compiling NIOConcurrencyHelpers NIOLock.swift
[13/13] Compiling NIOConcurrencyHelpers atomics.swift
[15/22] Compiling SwiftBacktrace shim.swift
[16/23] Compiling SwiftBacktrace SwiftBacktrace.swift
[17/23] Compiling SwiftBacktrace Unwind.swift
[18/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>
[19/23] Compiling SwiftBacktrace String+extension.swift
[20/23] Compiling SwiftBacktrace Demangle.swift
[21/23] Compiling SwiftBacktrace BacktraceFormatter.swift
[22/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>
[23/23] Compiling SwiftBacktrace DynamicLinkLibrary.swift
Build complete! (59.87s)
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.