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 FileSmith, reference 0.3.0 (476472), with Swift 6.0 for Linux on 26 Nov 2024 22:21:11 UTC.

Swift 6 data race errors: 11

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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/kareman/FileSmith.git
Reference: 0.3.0
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/kareman/FileSmith
 * tag               0.3.0      -> FETCH_HEAD
HEAD is now at 4764727 Release version 0.3.0.
Cloned https://github.com/kareman/FileSmith.git
Revision (git rev-parse @):
476472740a38c64634b388f2b311ec518bfa3265
SUCCESS checkout https://github.com/kareman/FileSmith.git at 0.3.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/kareman/FileSmith.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.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/kareman/SwiftShell.git
[1/4863] Fetching swiftshell
Fetched https://github.com/kareman/SwiftShell.git from cache (0.38s)
Computing version for https://github.com/kareman/SwiftShell.git
Computed https://github.com/kareman/SwiftShell.git at 5.1.0 (0.47s)
Creating working copy for https://github.com/kareman/SwiftShell.git
Working copy of https://github.com/kareman/SwiftShell.git resolved at 5.1.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/12] Compiling SwiftShell Lazy-split.swift
[5/12] Compiling SwiftShell Process.swift
[6/13] Compiling SwiftShell Array.swift
[7/13] Compiling SwiftShell Files.swift
[8/13] Compiling SwiftShell Bash.swift
[9/13] Compiling SwiftShell Command.swift
[10/13] Emitting module SwiftShell
[11/13] Compiling SwiftShell Context.swift
[12/13] Compiling SwiftShell Stream.swift
[13/13] Compiling SwiftShell String.swift
[15/22] Compiling FileSmith SymbolicLinks.swift
[16/22] Compiling FileSmith File.swift
/host/spi-builder-workspace/Sources/FileSmith/File.swift:88:20: warning: static property 'stdin' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 | 	/// A ReadableStream which reads from standard input.
 88 | 	static public var stdin: ReadableStream = {
    |                    |- warning: static property 'stdin' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'stdin' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'stdin' 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
 89 | 		ReadableFile(path: "/dev/stdin", filehandle: FileHandle.standardInput)
 90 | 	}()
/host/spi-builder-workspace/Sources/FileSmith/File.swift:212:20: warning: static property 'stdout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
210 |
211 | 	/// A WritableStream which writes to standard output.
212 | 	static public var stdout: WritableStream = StdoutStream.default
    |                    |- warning: static property 'stdout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'stdout' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'stdout' 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
213 |
214 | 	/// A WritableStream which writes to standard error.
/host/spi-builder-workspace/Sources/FileSmith/File.swift:215:20: warning: static property 'stderror' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
213 |
214 | 	/// A WritableStream which writes to standard error.
215 | 	static public var stderror: WritableStream = {
    |                    |- warning: static property 'stderror' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'stderror' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'stderror' 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
216 | 		WritableFile(path: "/dev/stderr", filehandle: FileHandle.standardError)
217 | 	}()
[17/22] Compiling FileSmith Errors.swift
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:10:7: warning: associated value 'alreadyExists(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
 8 |
 9 | public enum FileSystemError: Error, Equatable {
10 | 	case alreadyExists(path: Path)
   |       `- warning: associated value 'alreadyExists(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
11 | 	case notFound(path: Path)
12 | 	case isDirectory(path: Path)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:11:7: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
 9 | public enum FileSystemError: Error, Equatable {
10 | 	case alreadyExists(path: Path)
11 | 	case notFound(path: Path)
   |       `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
12 | 	case isDirectory(path: Path)
13 | 	case notDirectory(path: Path)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:12:7: warning: associated value 'isDirectory(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
10 | 	case alreadyExists(path: Path)
11 | 	case notFound(path: Path)
12 | 	case isDirectory(path: Path)
   |       `- warning: associated value 'isDirectory(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
13 | 	case notDirectory(path: Path)
14 | 	case invalidAccess(path: Path, writing: Bool)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:13:7: warning: associated value 'notDirectory(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
11 | 	case notFound(path: Path)
12 | 	case isDirectory(path: Path)
13 | 	case notDirectory(path: Path)
   |       `- warning: associated value 'notDirectory(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
14 | 	case invalidAccess(path: Path, writing: Bool)
15 | 	case couldNotCreate(path: Path)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:14:7: warning: associated value 'invalidAccess(path:writing:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
12 | 	case isDirectory(path: Path)
13 | 	case notDirectory(path: Path)
14 | 	case invalidAccess(path: Path, writing: Bool)
   |       `- warning: associated value 'invalidAccess(path:writing:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
15 | 	case couldNotCreate(path: Path)
16 | 	case outsideSandbox(path: Path)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:15:7: warning: associated value 'couldNotCreate(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
13 | 	case notDirectory(path: Path)
14 | 	case invalidAccess(path: Path, writing: Bool)
15 | 	case couldNotCreate(path: Path)
   |       `- warning: associated value 'couldNotCreate(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
16 | 	case outsideSandbox(path: Path)
17 |
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:16:7: warning: associated value 'outsideSandbox(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
14 | 	case invalidAccess(path: Path, writing: Bool)
15 | 	case couldNotCreate(path: Path)
16 | 	case outsideSandbox(path: Path)
   |       `- warning: associated value 'outsideSandbox(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
17 |
18 | 	/// Determines if two FileSystemErrors are equal.
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
[18/22] Compiling FileSmith Attributes.swift
[19/22] Emitting module FileSmith
/host/spi-builder-workspace/Sources/FileSmith/Directory.swift:89:20: warning: static property 'sandbox' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 87 |
 88 | 	/// If true, then you can only make changes to the file system in the current working directory, or any of its subdirectories.
 89 | 	public static var sandbox = true
    |                    |- warning: static property 'sandbox' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'sandbox' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'sandbox' 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
 90 |
 91 | 	/// The path to this directory.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:10:7: warning: associated value 'alreadyExists(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
 8 |
 9 | public enum FileSystemError: Error, Equatable {
10 | 	case alreadyExists(path: Path)
   |       `- warning: associated value 'alreadyExists(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
11 | 	case notFound(path: Path)
12 | 	case isDirectory(path: Path)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:11:7: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
 9 | public enum FileSystemError: Error, Equatable {
10 | 	case alreadyExists(path: Path)
11 | 	case notFound(path: Path)
   |       `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
12 | 	case isDirectory(path: Path)
13 | 	case notDirectory(path: Path)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:12:7: warning: associated value 'isDirectory(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
10 | 	case alreadyExists(path: Path)
11 | 	case notFound(path: Path)
12 | 	case isDirectory(path: Path)
   |       `- warning: associated value 'isDirectory(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
13 | 	case notDirectory(path: Path)
14 | 	case invalidAccess(path: Path, writing: Bool)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:13:7: warning: associated value 'notDirectory(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
11 | 	case notFound(path: Path)
12 | 	case isDirectory(path: Path)
13 | 	case notDirectory(path: Path)
   |       `- warning: associated value 'notDirectory(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
14 | 	case invalidAccess(path: Path, writing: Bool)
15 | 	case couldNotCreate(path: Path)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:14:7: warning: associated value 'invalidAccess(path:writing:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
12 | 	case isDirectory(path: Path)
13 | 	case notDirectory(path: Path)
14 | 	case invalidAccess(path: Path, writing: Bool)
   |       `- warning: associated value 'invalidAccess(path:writing:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
15 | 	case couldNotCreate(path: Path)
16 | 	case outsideSandbox(path: Path)
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:15:7: warning: associated value 'couldNotCreate(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
13 | 	case notDirectory(path: Path)
14 | 	case invalidAccess(path: Path, writing: Bool)
15 | 	case couldNotCreate(path: Path)
   |       `- warning: associated value 'couldNotCreate(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
16 | 	case outsideSandbox(path: Path)
17 |
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/Errors.swift:16:7: warning: associated value 'outsideSandbox(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
14 | 	case invalidAccess(path: Path, writing: Bool)
15 | 	case couldNotCreate(path: Path)
16 | 	case outsideSandbox(path: Path)
   |       `- warning: associated value 'outsideSandbox(path:)' of 'Sendable'-conforming enum 'FileSystemError' has non-sendable type 'any Path'; this is an error in the Swift 6 language mode
17 |
18 | 	/// Determines if two FileSystemErrors are equal.
/host/spi-builder-workspace/Sources/FileSmith/Paths.swift:16:17: note: protocol 'Path' does not conform to the 'Sendable' protocol
 14 | /// The location of an item _which may or may not exist_ in the local file system.
 15 | /// It is either a DirectoryPath or a FilePath.
 16 | public protocol Path: CustomStringConvertible {
    |                 `- note: protocol 'Path' does not conform to the 'Sendable' protocol
 17 |
 18 | 	/// The individual parts of the absolute version of this path, from (but not including) the root folder.
/host/spi-builder-workspace/Sources/FileSmith/File.swift:88:20: warning: static property 'stdin' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 | 	/// A ReadableStream which reads from standard input.
 88 | 	static public var stdin: ReadableStream = {
    |                    |- warning: static property 'stdin' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'stdin' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'stdin' 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
 89 | 		ReadableFile(path: "/dev/stdin", filehandle: FileHandle.standardInput)
 90 | 	}()
/host/spi-builder-workspace/Sources/FileSmith/File.swift:212:20: warning: static property 'stdout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
210 |
211 | 	/// A WritableStream which writes to standard output.
212 | 	static public var stdout: WritableStream = StdoutStream.default
    |                    |- warning: static property 'stdout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'stdout' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'stdout' 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
213 |
214 | 	/// A WritableStream which writes to standard error.
/host/spi-builder-workspace/Sources/FileSmith/File.swift:215:20: warning: static property 'stderror' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
213 |
214 | 	/// A WritableStream which writes to standard error.
215 | 	static public var stderror: WritableStream = {
    |                    |- warning: static property 'stderror' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'stderror' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'stderror' 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
216 | 		WritableFile(path: "/dev/stderr", filehandle: FileHandle.standardError)
217 | 	}()
/host/spi-builder-workspace/Sources/FileSmith/General.swift:84:12: warning: class 'FixedFileManager' must restate inherited '@unchecked Sendable' conformance
 82 | }
 83 |
 84 | open class FixedFileManager: FileManager {
    |            `- warning: class 'FixedFileManager' must restate inherited '@unchecked Sendable' conformance
 85 | 	#if !(os(macOS) || os(iOS) || os(tvOS) || os(watchOS))
 86 |
[20/22] Compiling FileSmith Directory.swift
/host/spi-builder-workspace/Sources/FileSmith/Directory.swift:89:20: warning: static property 'sandbox' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 87 |
 88 | 	/// If true, then you can only make changes to the file system in the current working directory, or any of its subdirectories.
 89 | 	public static var sandbox = true
    |                    |- warning: static property 'sandbox' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'sandbox' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'sandbox' 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
 90 |
 91 | 	/// The path to this directory.
[21/22] Compiling FileSmith General.swift
/host/spi-builder-workspace/Sources/FileSmith/General.swift:84:12: warning: class 'FixedFileManager' must restate inherited '@unchecked Sendable' conformance
 82 | }
 83 |
 84 | open class FixedFileManager: FileManager {
    |            `- warning: class 'FixedFileManager' must restate inherited '@unchecked Sendable' conformance
 85 | 	#if !(os(macOS) || os(iOS) || os(tvOS) || os(watchOS))
 86 |
[22/22] Compiling FileSmith Paths.swift
Build complete! (12.37s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftshell",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.0.1",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kareman/SwiftShell.git"
    }
  ],
  "manifest_display_name" : "FileSmith",
  "name" : "FileSmith",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "FileSmith",
      "targets" : [
        "FileSmith"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FileSmithTests",
      "module_type" : "SwiftTarget",
      "name" : "FileSmithTests",
      "path" : "Tests/FileSmithTests",
      "sources" : [
        "DirectoryTests.swift",
        "FileTests.swift",
        "PathTests.swift",
        "TestHelpers.swift"
      ],
      "target_dependencies" : [
        "FileSmith"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FileSmith",
      "module_type" : "SwiftTarget",
      "name" : "FileSmith",
      "path" : "Sources/FileSmith",
      "product_dependencies" : [
        "SwiftShell"
      ],
      "product_memberships" : [
        "FileSmith"
      ],
      "sources" : [
        "Attributes.swift",
        "Directory.swift",
        "Errors.swift",
        "File.swift",
        "General.swift",
        "Paths.swift",
        "SymbolicLinks.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
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.