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

Successful build of SundialKit, reference 0.2.1 (58e32d), with Swift 6.0 for Linux on 29 Nov 2024 02:30:56 UTC.

Swift 6 data race errors: 5

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 -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.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brightdigit/SundialKit.git
Reference: 0.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/brightdigit/SundialKit
 * tag               0.2.1      -> FETCH_HEAD
HEAD is now at 58e32d9 Version 0.2.1
Cloned https://github.com/brightdigit/SundialKit.git
Revision (git rev-parse @):
58e32d9b620feb3e02d2fbf6b8569a3349d60182
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/brightdigit/SundialKit.git at 0.2.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/brightdigit/SundialKit.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 -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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/30] Emitting module SundialKit
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:41:23: warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
39 |
40 |     /// The network interface type used for communication over cellular networks.
41 |     public static let cellular: Self = .init(rawValue: 1)
   |                       |- warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'cellular' 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
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:43:23: warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
41 |     public static let cellular: Self = .init(rawValue: 1)
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
   |                       |- warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wifi' 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
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:45:23: warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
43 |     public static let wifi: Self = .init(rawValue: 2)
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
   |                       |- warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wiredEthernet' 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
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:48:23: warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
48 |     public static let other: Self = .init(rawValue: 8)
   |                       |- warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'other' 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
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:50:23: warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
48 |     public static let other: Self = .init(rawValue: 8)
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
   |                       |- warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'loopback' 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
51 |   }
52 | }
[4/33] Compiling SundialKit NWInterface.swift
[5/33] Compiling SundialKit NWPath.swift
[6/33] Compiling SundialKit NWPathMonitor.swift
[7/33] Compiling SundialKit PathStatus.Network.swift
[8/33] Compiling SundialKit ConnectivitySendContext.swift
[9/33] Compiling SundialKit ConnectivitySendResult.swift
[10/33] Compiling SundialKit ConnectivitySession.swift
[11/33] Compiling SundialKit ConnectivitySessionDelegate.swift
[12/33] Compiling SundialKit ConnectivityMessage.swift
[13/33] Compiling SundialKit ConnectivityObserver.swift
[14/33] Compiling SundialKit ConnectivityReceiveContext.swift
[15/33] Compiling SundialKit ConnectivityReceiveResult.swift
[16/33] Compiling SundialKit PathStatus.UnsatisfiedReason.swift
[17/33] Compiling SundialKit Interfaceable.swift
[18/33] Compiling SundialKit NetworkObserver.swift
[19/33] Compiling SundialKit NetworkPath.swift
[20/33] Compiling SundialKit WCSession.swift
[21/33] Compiling SundialKit Messagable.swift
[22/33] Compiling SundialKit MessagableKeys.swift
[23/33] Compiling SundialKit NetworkPing.swift
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:41:23: warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
39 |
40 |     /// The network interface type used for communication over cellular networks.
41 |     public static let cellular: Self = .init(rawValue: 1)
   |                       |- warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'cellular' 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
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:43:23: warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
41 |     public static let cellular: Self = .init(rawValue: 1)
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
   |                       |- warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wifi' 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
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:45:23: warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
43 |     public static let wifi: Self = .init(rawValue: 2)
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
   |                       |- warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wiredEthernet' 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
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:48:23: warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
48 |     public static let other: Self = .init(rawValue: 8)
   |                       |- warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'other' 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
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:50:23: warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
48 |     public static let other: Self = .init(rawValue: 8)
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
   |                       |- warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'loopback' 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
51 |   }
52 | }
[24/33] Compiling SundialKit NeverPing.swift
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:41:23: warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
39 |
40 |     /// The network interface type used for communication over cellular networks.
41 |     public static let cellular: Self = .init(rawValue: 1)
   |                       |- warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'cellular' 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
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:43:23: warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
41 |     public static let cellular: Self = .init(rawValue: 1)
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
   |                       |- warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wifi' 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
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:45:23: warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
43 |     public static let wifi: Self = .init(rawValue: 2)
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
   |                       |- warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wiredEthernet' 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
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:48:23: warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
48 |     public static let other: Self = .init(rawValue: 8)
   |                       |- warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'other' 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
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:50:23: warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
48 |     public static let other: Self = .init(rawValue: 8)
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
   |                       |- warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'loopback' 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
51 |   }
52 | }
[25/33] Compiling SundialKit PathMonitor.swift
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:41:23: warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
39 |
40 |     /// The network interface type used for communication over cellular networks.
41 |     public static let cellular: Self = .init(rawValue: 1)
   |                       |- warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'cellular' 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
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:43:23: warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
41 |     public static let cellular: Self = .init(rawValue: 1)
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
   |                       |- warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wifi' 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
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:45:23: warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
43 |     public static let wifi: Self = .init(rawValue: 2)
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
   |                       |- warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wiredEthernet' 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
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:48:23: warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
48 |     public static let other: Self = .init(rawValue: 8)
   |                       |- warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'other' 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
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:50:23: warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
48 |     public static let other: Self = .init(rawValue: 8)
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
   |                       |- warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'loopback' 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
51 |   }
52 | }
[26/33] Compiling SundialKit PathStatus.swift
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:41:23: warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
39 |
40 |     /// The network interface type used for communication over cellular networks.
41 |     public static let cellular: Self = .init(rawValue: 1)
   |                       |- warning: static property 'cellular' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'cellular' 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
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:43:23: warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
41 |     public static let cellular: Self = .init(rawValue: 1)
42 |     /// The network interface type used for communication over Wi-Fi networks.
43 |     public static let wifi: Self = .init(rawValue: 2)
   |                       |- warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wifi' 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
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:45:23: warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
43 |     public static let wifi: Self = .init(rawValue: 2)
44 |     /// The network interface type used for communication over wired Ethernet networks.
45 |     public static let wiredEthernet: Self = .init(rawValue: 4)
   |                       |- warning: static property 'wiredEthernet' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wiredEthernet' 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
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:48:23: warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
46 |     /// The network interface type used for communication
47 |     /// over virtual networks or networks of unknown types.
48 |     public static let other: Self = .init(rawValue: 8)
   |                       |- warning: static property 'other' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'other' 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
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
/host/spi-builder-workspace/Sources/SundialKit/Network/PathStatus.swift:50:23: warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |   /// Types of network interfaces, based on their link layer media types.
22 |   public struct Interface: OptionSet, Interfaceable {
   |                 `- note: consider making struct 'Interface' conform to the 'Sendable' protocol
23 |     public var typeValue: Int {
24 |       rawValue
   :
48 |     public static let other: Self = .init(rawValue: 8)
49 |     /// The network interface type used for communication over local loopback networks.
50 |     public static let loopback: Self = .init(rawValue: 16)
   |                       |- warning: static property 'loopback' is not concurrency-safe because non-'Sendable' type 'PathStatus.Interface' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'loopback' 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
51 |   }
52 | }
[27/33] Compiling SundialKit MessageDecoder.swift
[28/33] Compiling SundialKit NeverConnectivitySession.swift
[29/33] Compiling SundialKit WatchConnectivitySession.swift
[30/33] Compiling SundialKit PassthroughSubject.swift
[31/33] Compiling SundialKit SundialError.swift
[32/33] Compiling SundialKit ActivationState.swift
[33/33] Compiling SundialKit ConnectivityHandler.swift
Build complete! (9.37s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SundialKit",
  "name" : "SundialKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    }
  ],
  "products" : [
    {
      "name" : "SundialKit",
      "targets" : [
        "SundialKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SundialKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SundialKitTests",
      "path" : "Tests/SundialKitTests",
      "sources" : [
        "MockError.swift",
        "MockMessage.swift",
        "MockNetworkPing.swift",
        "MockPath.swift",
        "MockPathMonitor.swift",
        "MockSession.swift",
        "Network/Extensions/NWInterfaceTests.swift",
        "Network/Extensions/NWPathMonitorTests.swift",
        "Network/Extensions/PathStatusNetworkTests.swift",
        "Network/NetworkObserverTests.swift",
        "PassthroughSubjectTests.swift",
        "WatchConnectivity/ConnectivityObserverInternalTests.swift",
        "WatchConnectivity/ConnectivityObserverMessageTests.swift",
        "WatchConnectivity/ConnectivityObserverPropertyTests.swift",
        "WatchConnectivity/ConnectivityReceiveContextTests.swift",
        "WatchConnectivity/ConnectivitySendContextTests.swift",
        "WatchConnectivity/MessagableTests.swift",
        "WatchConnectivity/MessageDecoderTests.swift",
        "WatchConnectivity/NeverConnectivitySessionTests.swift"
      ],
      "target_dependencies" : [
        "SundialKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SundialKit",
      "module_type" : "SwiftTarget",
      "name" : "SundialKit",
      "path" : "Sources/SundialKit",
      "product_memberships" : [
        "SundialKit"
      ],
      "sources" : [
        "Network/Extensions/NWInterface.swift",
        "Network/Extensions/NWPath.swift",
        "Network/Extensions/NWPathMonitor.swift",
        "Network/Extensions/PathStatus.Network.swift",
        "Network/Extensions/PathStatus.UnsatisfiedReason.swift",
        "Network/Interfaceable.swift",
        "Network/NetworkObserver.swift",
        "Network/NetworkPath.swift",
        "Network/NetworkPing.swift",
        "Network/NeverPing.swift",
        "Network/PathMonitor.swift",
        "Network/PathStatus.swift",
        "PassthroughSubject.swift",
        "SundialError.swift",
        "WatchConnectivity/ActivationState.swift",
        "WatchConnectivity/ConnectivityHandler.swift",
        "WatchConnectivity/ConnectivityMessage.swift",
        "WatchConnectivity/ConnectivityObserver.swift",
        "WatchConnectivity/ConnectivityReceiveContext.swift",
        "WatchConnectivity/ConnectivityReceiveResult.swift",
        "WatchConnectivity/ConnectivitySendContext.swift",
        "WatchConnectivity/ConnectivitySendResult.swift",
        "WatchConnectivity/ConnectivitySession.swift",
        "WatchConnectivity/ConnectivitySessionDelegate.swift",
        "WatchConnectivity/Extensions/WCSession.swift",
        "WatchConnectivity/Messagable.swift",
        "WatchConnectivity/MessagableKeys.swift",
        "WatchConnectivity/MessageDecoder.swift",
        "WatchConnectivity/NeverConnectivitySession.swift",
        "WatchConnectivity/WatchConnectivitySession.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
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.