The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build PropertyTracer, reference main (3703d7), with Swift 6.0 for Linux on 1 Dec 2024 13:44:01 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/p-x9/swift-property-tracer.git
Reference: main
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/p-x9/swift-property-tracer
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 3703d7d Merge pull request #3 from p-x9/feature/update-swift-syntax-url
Cloned https://github.com/p-x9/swift-property-tracer.git
Revision (git rev-parse @):
3703d7da09f512d0bf73922424730b56912cfa1f
SUCCESS checkout https://github.com/p-x9/swift-property-tracer.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/p-x9/swift-property-tracer.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/swiftlang/swift-syntax.git
[1/66770] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax.git from cache (4.81s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 510.0.3 (2.20s)
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 510.0.3
Building for debugging...
[0/35] Write sources
[17/35] Write swift-version-24593BA9C3E375BF.txt
[19/51] Emitting module SwiftSyntax510
[20/51] Compiling SwiftSyntax510 Empty.swift
[22/52] Emitting module SwiftSyntax509
[23/52] Compiling SwiftSyntax509 Empty.swift
[23/53] Wrapping AST for SwiftSyntax510 for debugging
[25/53] Wrapping AST for SwiftSyntax509 for debugging
[27/113] Compiling PropertyTracerSupport PropertyAccess.swift
[28/113] Compiling PropertyTracerSupport demangle.swift
[29/113] Compiling PropertyTracerSupport symbolInfo.swift
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:11:39: error: cannot find type 'Dl_info' in scope
 9 | import Foundation
10 |
11 | func symbolInfo(for address: UInt) -> Dl_info? {
   |                                       `- error: cannot find type 'Dl_info' in scope
12 |     var info = Dl_info()
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:12:16: error: cannot find 'Dl_info' in scope
10 |
11 | func symbolInfo(for address: UInt) -> Dl_info? {
12 |     var info = Dl_info()
   |                `- error: cannot find 'Dl_info' in scope
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
14 |     let result = dladdr(ptr, &info)
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:14:18: error: cannot find 'dladdr' in scope
12 |     var info = Dl_info()
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
14 |     let result = dladdr(ptr, &info)
   |                  `- error: cannot find 'dladdr' in scope
15 |     return result == 0 ? nil : info
16 | }
[30/113] Compiling PropertyTracerSupport PropertyAccess.swift
[31/113] Compiling PropertyTracerSupport demangle.swift
[32/113] Compiling PropertyTracerSupport symbolInfo.swift
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:11:39: error: cannot find type 'Dl_info' in scope
 9 | import Foundation
10 |
11 | func symbolInfo(for address: UInt) -> Dl_info? {
   |                                       `- error: cannot find type 'Dl_info' in scope
12 |     var info = Dl_info()
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:12:16: error: cannot find 'Dl_info' in scope
10 |
11 | func symbolInfo(for address: UInt) -> Dl_info? {
12 |     var info = Dl_info()
   |                `- error: cannot find 'Dl_info' in scope
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
14 |     let result = dladdr(ptr, &info)
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:14:18: error: cannot find 'dladdr' in scope
12 |     var info = Dl_info()
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
14 |     let result = dladdr(ptr, &info)
   |                  `- error: cannot find 'dladdr' in scope
15 |     return result == 0 ? nil : info
16 | }
[33/113] Compiling PropertyTracerSupport CallStackInfo.swift
[35/113] Compiling SwiftSyntax RawSyntax.swift
[36/113] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[37/113] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[38/113] Compiling SwiftSyntax RawSyntaxTokenView.swift
[39/113] Compiling SwiftSyntax SourceLength.swift
[40/113] Compiling SwiftSyntax SourceLocation.swift
[41/113] Compiling SwiftSyntax SourcePresence.swift
[42/113] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[43/113] Compiling SwiftSyntax Syntax.swift
[44/113] Compiling SwiftSyntax AbsolutePosition.swift
[45/113] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[46/113] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[47/113] Compiling SwiftSyntax Assert.swift
[48/113] Compiling SwiftSyntax BumpPtrAllocator.swift
[49/113] Compiling SwiftSyntax CommonAncestor.swift
[50/113] Compiling SwiftSyntax Convenience.swift
[51/113] Compiling SwiftSyntax MemoryLayout.swift
[52/113] Compiling SwiftSyntax MissingNodeInitializers.swift
[53/121] Emitting module SwiftSyntax
[54/121] Compiling SwiftSyntax SyntaxArena.swift
[55/121] Compiling SwiftSyntax SyntaxChildren.swift
[56/121] Compiling SwiftSyntax SyntaxCollection.swift
[57/121] Compiling SwiftSyntax SyntaxHashable.swift
[58/121] Compiling SwiftSyntax SyntaxIdentifier.swift
[59/121] Compiling SwiftSyntax SyntaxNodeStructure.swift
[60/121] Compiling SwiftSyntax SyntaxProtocol.swift
[61/121] Compiling SwiftSyntax SyntaxText.swift
[62/121] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[63/121] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[64/121] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[65/121] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[66/121] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[67/121] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[68/121] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[69/121] Compiling SwiftSyntax RawSyntaxValidation.swift
[70/121] Compiling SwiftSyntax SyntaxNodesAB.swift
[71/121] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[72/121] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[73/121] Compiling SwiftSyntax SyntaxBaseNodes.swift
[74/121] Compiling SwiftSyntax SyntaxCollections.swift
[75/121] Compiling SwiftSyntax SyntaxEnum.swift
[76/121] Compiling SwiftSyntax SyntaxKind.swift
[77/121] Compiling SwiftSyntax SyntaxRewriter.swift
[78/121] Compiling SwiftSyntax SyntaxTraits.swift
[79/121] Compiling SwiftSyntax TokenDiagnostic.swift
[80/121] Compiling SwiftSyntax TokenSequence.swift
[81/121] Compiling SwiftSyntax TokenSyntax.swift
[82/121] Compiling SwiftSyntax Trivia.swift
[83/121] Compiling SwiftSyntax Utils.swift
[84/121] Compiling SwiftSyntax ChildNameForKeyPath.swift
[85/121] Compiling SwiftSyntax Keyword.swift
[86/121] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[87/121] Compiling SwiftSyntax SyntaxTransform.swift
[88/121] Compiling SwiftSyntax SyntaxVisitor.swift
[89/121] Compiling SwiftSyntax TokenKind.swift
[90/121] Compiling SwiftSyntax Tokens.swift
[91/121] Compiling SwiftSyntax TriviaPieces.swift
[92/121] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[93/121] Compiling SwiftSyntax RawSyntaxNodesC.swift
[94/121] Compiling SwiftSyntax RawSyntaxNodesD.swift
[95/121] Compiling SwiftSyntax SyntaxNodesC.swift
[96/121] Compiling SwiftSyntax SyntaxNodesD.swift
[97/121] Compiling SwiftSyntax SyntaxNodesEF.swift
[98/121] Compiling SwiftSyntax SyntaxNodesGHI.swift
[99/121] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[100/121] Compiling SwiftSyntax SyntaxNodesOP.swift
[101/121] Compiling SwiftSyntax SyntaxNodesQRS.swift
[102/121] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[103/122] Wrapping AST for SwiftSyntax for debugging
[105/173] Compiling SwiftDiagnostics FixIt.swift
[106/173] Compiling SwiftDiagnostics Note.swift
[107/173] Compiling SwiftDiagnostics Message.swift
[108/173] Emitting module SwiftDiagnostics
[109/173] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[110/173] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[111/173] Compiling SwiftBasicFormat Syntax+Extensions.swift
[112/173] Compiling SwiftDiagnostics Convenience.swift
[113/173] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[114/173] Emitting module SwiftBasicFormat
[115/173] Compiling SwiftBasicFormat BasicFormat.swift
[117/174] Compiling SwiftDiagnostics Diagnostic.swift
[118/174] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[118/175] Wrapping AST for SwiftBasicFormat for debugging
[121/175] Compiling SwiftParser Modifiers.swift
[122/175] Compiling SwiftParser Names.swift
[123/175] Compiling SwiftParser Nominals.swift
[124/175] Compiling SwiftParser Parameters.swift
[125/175] Compiling SwiftParser ParseSourceFile.swift
[125/180] Wrapping AST for SwiftDiagnostics for debugging
[127/180] Compiling SwiftParser Lexer.swift
[128/180] Compiling SwiftParser RegexLiteralLexer.swift
[129/180] Compiling SwiftParser UnicodeScalarExtensions.swift
[130/180] Compiling SwiftParser Lookahead.swift
[131/180] Compiling SwiftParser LoopProgressCondition.swift
[132/180] Compiling SwiftParser Attributes.swift
[133/180] Compiling SwiftParser Availability.swift
[134/180] Compiling SwiftParser CharacterInfo.swift
[135/180] Compiling SwiftParser CollectionNodes+Parsable.swift
[136/180] Compiling SwiftParser Declarations.swift
[137/180] Compiling SwiftParser Directives.swift
[138/180] Compiling SwiftParser TokenPrecedence.swift
[139/180] Compiling SwiftParser TokenSpec.swift
[140/180] Compiling SwiftParser TokenSpecSet.swift
[141/180] Compiling SwiftParser TopLevel.swift
[142/180] Compiling SwiftParser TriviaParser.swift
[143/180] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[144/180] Compiling SwiftParser StringLiterals.swift
[145/180] Compiling SwiftParser SwiftParserCompatibility.swift
[146/180] Compiling SwiftParser SyntaxUtils.swift
[147/180] Compiling SwiftParser TokenConsumer.swift
[148/180] Compiling SwiftParser Parser.swift
[149/180] Compiling SwiftParser Patterns.swift
[150/180] Compiling SwiftParser Recovery.swift
[151/180] Compiling SwiftParser Specifiers.swift
[152/180] Compiling SwiftParser Statements.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[153/180] Emitting module PropertyTracerSupport
/host/spi-builder-workspace/Sources/PropertyTracerSupport/Extension/Thread+.swift:16:68: error: cannot find type 'Dl_info' in scope
14 |     /// - Parameter addresses: An array of addresses for which to retrieve dynamic linking information.
15 |     /// - Returns: An array of `Dl_info` structures containing the dynamic linking informat
16 |     package class func callStackDLInfos(addresses: [NSNumber]) -> [Dl_info] {
   |                                                                    `- error: cannot find type 'Dl_info' in scope
17 |         addresses.compactMap { symbolInfo(for: $0.uintValue) }
18 |     }
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:11:39: error: cannot find type 'Dl_info' in scope
 9 | import Foundation
10 |
11 | func symbolInfo(for address: UInt) -> Dl_info? {
   |                                       `- error: cannot find type 'Dl_info' in scope
12 |     var info = Dl_info()
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
[154/180] Compiling PropertyTracerSupport Thread+.swift
/host/spi-builder-workspace/Sources/PropertyTracerSupport/Extension/Thread+.swift:16:68: error: cannot find type 'Dl_info' in scope
14 |     /// - Parameter addresses: An array of addresses for which to retrieve dynamic linking information.
15 |     /// - Returns: An array of `Dl_info` structures containing the dynamic linking informat
16 |     package class func callStackDLInfos(addresses: [NSNumber]) -> [Dl_info] {
   |                                                                    `- error: cannot find type 'Dl_info' in scope
17 |         addresses.compactMap { symbolInfo(for: $0.uintValue) }
18 |     }
/host/spi-builder-workspace/Sources/PropertyTracerSupport/Extension/Thread+.swift:27:49: error: cannot find type 'Dl_info' in scope
25 |         addresses
26 |             .lazy
27 |             .compactMap { address -> (NSNumber, Dl_info)? in
   |                                                 `- error: cannot find type 'Dl_info' in scope
28 |                 guard let info = symbolInfo(for: address.uintValue) else {
29 |                     return nil
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:11:39: error: cannot find type 'Dl_info' in scope
 9 | import Foundation
10 |
11 | func symbolInfo(for address: UInt) -> Dl_info? {
   |                                       `- error: cannot find type 'Dl_info' in scope
12 |     var info = Dl_info()
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
/host/spi-builder-workspace/Sources/PropertyTracerSupport/Extension/Thread+.swift:25:9: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
23 |     /// - Returns: An array of `CallStackInfo` structures containing the call stack information for each address.
24 |     package class func callStackInfos(addresses: [NSNumber]) -> [CallStackInfo] {
25 |         addresses
   |         `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
26 |             .lazy
27 |             .compactMap { address -> (NSNumber, Dl_info)? in
[155/180] Emitting module SwiftParser
error: emit-module command failed with exit code 1 (use -v to see invocation)
[156/180] Emitting module PropertyTracerSupport
/host/spi-builder-workspace/Sources/PropertyTracerSupport/Extension/Thread+.swift:16:68: error: cannot find type 'Dl_info' in scope
14 |     /// - Parameter addresses: An array of addresses for which to retrieve dynamic linking information.
15 |     /// - Returns: An array of `Dl_info` structures containing the dynamic linking informat
16 |     package class func callStackDLInfos(addresses: [NSNumber]) -> [Dl_info] {
   |                                                                    `- error: cannot find type 'Dl_info' in scope
17 |         addresses.compactMap { symbolInfo(for: $0.uintValue) }
18 |     }
/host/spi-builder-workspace/Sources/PropertyTracerSupport/util/symbolInfo.swift:11:39: error: cannot find type 'Dl_info' in scope
 9 | import Foundation
10 |
11 | func symbolInfo(for address: UInt) -> Dl_info? {
   |                                       `- error: cannot find type 'Dl_info' in scope
12 |     var info = Dl_info()
13 |     let ptr: UnsafeRawPointer = UnsafeRawPointer(bitPattern: address)!
/host/spi-builder-workspace/Sources/PropertyTracerSupport/Extension/Thread+.swift:16:68: error: cannot find type 'Dl_info' in scope
14 |     /// - Parameter addresses: An array of addresses for which to retrieve dynamic linking information.
15 |     /// - Returns: An array of `Dl_info` structures containing the dynamic linking informat
16 |     package class func callStackDLInfos(addresses: [NSNumber]) -> [Dl_info] {
   |                                                                    `- error: cannot find type 'Dl_info' in scope
17 |         addresses.compactMap { symbolInfo(for: $0.uintValue) }
18 |     }
/host/spi-builder-workspace/Sources/PropertyTracerSupport/Extension/Thread+.swift:27:49: error: cannot find type 'Dl_info' in scope
25 |         addresses
26 |             .lazy
27 |             .compactMap { address -> (NSNumber, Dl_info)? in
   |                                                 `- error: cannot find type 'Dl_info' in scope
28 |                 guard let info = symbolInfo(for: address.uintValue) else {
29 |                     return nil
BUILD FAILURE 6.0 linux