Build Information
Successful build of NetworkLinux, reference 1.0.1 (8e7089
), with Swift 6.0 for Linux on 2 Nov 2024 06:26:54 UTC.
Swift 6 data race errors: 6
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/OperatorFoundation/NetworkLinux.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/OperatorFoundation/NetworkLinux
* tag 1.0.1 -> FETCH_HEAD
HEAD is now at 8e70896 Change state update handler type to NWState
Cloned https://github.com/OperatorFoundation/NetworkLinux.git
Revision (git rev-parse @):
8e7089630b573ac0d6c3264d6e211c0ebf5433c0
SUCCESS checkout https://github.com/OperatorFoundation/NetworkLinux.git at 1.0.1
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/OperatorFoundation/NetworkLinux.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.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 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/OperatorFoundation/BlueSocket
Fetching https://github.com/OperatorFoundation/SwiftHexTools
[1/2764] Fetching bluesocket
[112/2860] Fetching bluesocket, swifthextools
Fetched https://github.com/OperatorFoundation/SwiftHexTools from cache (0.25s)
Fetched https://github.com/OperatorFoundation/BlueSocket from cache (0.25s)
Computing version for https://github.com/OperatorFoundation/BlueSocket
Computed https://github.com/OperatorFoundation/BlueSocket at 1.1.2 (0.40s)
Fetching https://github.com/apple/swift-argument-parser
[1/12353] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (0.68s)
Computing version for https://github.com/OperatorFoundation/SwiftHexTools
Computed https://github.com/OperatorFoundation/SwiftHexTools at 1.2.6 (0.41s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.0 (0.40s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.5.0
Creating working copy for https://github.com/OperatorFoundation/SwiftHexTools
Working copy of https://github.com/OperatorFoundation/SwiftHexTools resolved at 1.2.6
Creating working copy for https://github.com/OperatorFoundation/BlueSocket
Working copy of https://github.com/OperatorFoundation/BlueSocket resolved at 1.1.2
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/5] Write sources
[4/5] Write swift-version-24593BA9C3E375BF.txt
[6/13] Emitting module SwiftHexTools
[7/13] Compiling SwiftHexTools SwiftHexTools.swift
[9/14] Compiling Socket SocketUtils.swift
[10/14] Compiling Socket SocketProtocols.swift
[11/14] Compiling Socket Socket.swift
[12/14] Compiling Socket Socket+Equatable.swift
[13/14] Compiling Socket Socket+Hashable.swift
[14/14] Emitting module Socket
[16/30] Compiling NetworkLinux NWProtocol.swift
[17/30] Compiling NetworkLinux NWProtocolDefinition.swift
[18/31] Compiling NetworkLinux NWProtocolMetadata.swift
[19/31] Compiling NetworkLinux NWProtocolOptions.swift
[20/31] Compiling NetworkLinux NWProtocolTCP.swift
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolTCP.swift:22:23: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
20 | }
21 |
22 | public static let definition: NWProtocolDefinition = NWProtocolDefinition(name: "tcp")
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'definition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolDefinition.swift:10:14: note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | public class NWProtocolDefinition
| `- note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
11 | {
12 | public var debugDescription: String
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolTLS.swift:22:23: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
20 | }
21 |
22 | public static let definition: NWProtocolDefinition = NWProtocolDefinition(name: "tls")
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'definition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolDefinition.swift:10:14: note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | public class NWProtocolDefinition
| `- note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
11 | {
12 | public var debugDescription: String
[21/31] Compiling NetworkLinux NWProtocolTLS.swift
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolTCP.swift:22:23: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
20 | }
21 |
22 | public static let definition: NWProtocolDefinition = NWProtocolDefinition(name: "tcp")
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'definition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolDefinition.swift:10:14: note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | public class NWProtocolDefinition
| `- note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
11 | {
12 | public var debugDescription: String
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolTLS.swift:22:23: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
20 | }
21 |
22 | public static let definition: NWProtocolDefinition = NWProtocolDefinition(name: "tls")
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'definition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolDefinition.swift:10:14: note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | public class NWProtocolDefinition
| `- note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
11 | {
12 | public var debugDescription: String
[22/31] Compiling NetworkLinux NWProtocolUDP.swift
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolUDP.swift:22:23: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
20 | }
21 |
22 | public static let definition: NWProtocolDefinition = NWProtocolDefinition(name: "udp")
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'definition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolDefinition.swift:10:14: note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | public class NWProtocolDefinition
| `- note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
11 | {
12 | public var debugDescription: String
[23/31] Compiling NetworkLinux NWListener.swift
[24/31] Compiling NetworkLinux NWParameters.swift
[25/31] Compiling NetworkLinux NWError.swift
[26/31] Compiling NetworkLinux NWInterface.swift
[27/31] Compiling NetworkLinux IPv4Address.swift
[28/31] Compiling NetworkLinux IPv6Address.swift
[29/31] Compiling NetworkLinux NWConnection.swift
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:33:27: warning: static property 'defaultMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
| |- warning: static property 'defaultMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultMessage' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:35:27: warning: static property 'finalMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
34 |
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
| |- warning: static property 'finalMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'finalMessage' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | public static let defaultStream = NWConnection.ContentContext(identifier: "defaultStream")
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:37:27: warning: static property 'defaultStream' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
:
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
36 |
37 | public static let defaultStream = NWConnection.ContentContext(identifier: "defaultStream")
| |- warning: static property 'defaultStream' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultStream' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | public init(identifier: String, expiration: UInt64 = 0, priority: Double = 0.5, isFinal: Bool = false, antecedent: NWConnection.ContentContext? = nil, metadata: [NWProtocolMetadata]? = [])
[30/31] Compiling NetworkLinux NWEndpoint.swift
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:33:27: warning: static property 'defaultMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
| |- warning: static property 'defaultMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultMessage' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:35:27: warning: static property 'finalMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
34 |
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
| |- warning: static property 'finalMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'finalMessage' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | public static let defaultStream = NWConnection.ContentContext(identifier: "defaultStream")
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:37:27: warning: static property 'defaultStream' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
:
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
36 |
37 | public static let defaultStream = NWConnection.ContentContext(identifier: "defaultStream")
| |- warning: static property 'defaultStream' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultStream' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | public init(identifier: String, expiration: UInt64 = 0, priority: Double = 0.5, isFinal: Bool = false, antecedent: NWConnection.ContentContext? = nil, metadata: [NWProtocolMetadata]? = [])
[31/31] Emitting module NetworkLinux
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:33:27: warning: static property 'defaultMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
| |- warning: static property 'defaultMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultMessage' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:35:27: warning: static property 'finalMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
34 |
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
| |- warning: static property 'finalMessage' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'finalMessage' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | public static let defaultStream = NWConnection.ContentContext(identifier: "defaultStream")
/host/spi-builder-workspace/Sources/NetworkLinux/NWConnection.swift:37:27: warning: static property 'defaultStream' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | public class ContentContext
| `- note: class 'ContentContext' does not conform to the 'Sendable' protocol
32 | {
33 | public static let defaultMessage = NWConnection.ContentContext(identifier: "defaultMessage")
:
35 | public static let finalMessage = NWConnection.ContentContext(identifier: "finalMessage")
36 |
37 | public static let defaultStream = NWConnection.ContentContext(identifier: "defaultStream")
| |- warning: static property 'defaultStream' is not concurrency-safe because non-'Sendable' type 'NWConnection.ContentContext' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'defaultStream' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | public init(identifier: String, expiration: UInt64 = 0, priority: Double = 0.5, isFinal: Bool = false, antecedent: NWConnection.ContentContext? = nil, metadata: [NWProtocolMetadata]? = [])
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolTCP.swift:22:23: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
20 | }
21 |
22 | public static let definition: NWProtocolDefinition = NWProtocolDefinition(name: "tcp")
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'definition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolDefinition.swift:10:14: note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | public class NWProtocolDefinition
| `- note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
11 | {
12 | public var debugDescription: String
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolTLS.swift:22:23: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
20 | }
21 |
22 | public static let definition: NWProtocolDefinition = NWProtocolDefinition(name: "tls")
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'definition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolDefinition.swift:10:14: note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | public class NWProtocolDefinition
| `- note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
11 | {
12 | public var debugDescription: String
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolUDP.swift:22:23: warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
20 | }
21 |
22 | public static let definition: NWProtocolDefinition = NWProtocolDefinition(name: "udp")
| |- warning: static property 'definition' is not concurrency-safe because non-'Sendable' type 'NWProtocolDefinition' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'definition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/host/spi-builder-workspace/Sources/NetworkLinux/NWProtocolDefinition.swift:10:14: note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
8 | import Foundation
9 |
10 | public class NWProtocolDefinition
| `- note: class 'NWProtocolDefinition' does not conform to the 'Sendable' protocol
11 | {
12 | public var debugDescription: String
Build complete! (13.16s)
Build complete.
{
"dependencies" : [
{
"identity" : "bluesocket",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/OperatorFoundation/BlueSocket"
},
{
"identity" : "swifthextools",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/OperatorFoundation/SwiftHexTools"
}
],
"manifest_display_name" : "NetworkLinux",
"name" : "NetworkLinux",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
}
],
"products" : [
{
"name" : "NetworkLinux",
"targets" : [
"NetworkLinux"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "NetworkLinuxTests",
"module_type" : "SwiftTarget",
"name" : "NetworkLinuxTests",
"path" : "Tests/NetworkLinuxTests",
"sources" : [
"NetworkLinuxTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"NetworkLinux"
],
"type" : "test"
},
{
"c99name" : "NetworkLinux",
"module_type" : "SwiftTarget",
"name" : "NetworkLinux",
"path" : "Sources/NetworkLinux",
"product_dependencies" : [
"Socket",
"SwiftHexTools"
],
"product_memberships" : [
"NetworkLinux"
],
"sources" : [
"IPv4Address.swift",
"IPv6Address.swift",
"NWConnection.swift",
"NWEndpoint.swift",
"NWError.swift",
"NWInterface.swift",
"NWListener.swift",
"NWParameters.swift",
"NWProtocol.swift",
"NWProtocolDefinition.swift",
"NWProtocolMetadata.swift",
"NWProtocolOptions.swift",
"NWProtocolTCP.swift",
"NWProtocolTLS.swift",
"NWProtocolUDP.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
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
Done.