The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build SWCompression, reference develop (e71c7d), with Swift 6.1 for Wasm on 29 May 2025 08:17:45 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[64/122] Compiling SWCompression Container.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[65/122] Compiling SWCompression ContainerEntry.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[66/122] Compiling SWCompression ContainerEntryInfo.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[67/122] Compiling SWCompression ContainerEntryType.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[68/122] Compiling SWCompression DosAttributes.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[69/122] Compiling SWCompression Permissions.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[70/122] Compiling SWCompression DataError.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[71/122] Compiling SWCompression DecompressionAlgorithm.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[72/122] Compiling SWCompression TarWriter.swift
[73/122] Compiling SWCompression ByteReader+XZ.swift
[74/122] Compiling SWCompression Sha256.swift
[75/122] Compiling SWCompression XZArchive.swift
[76/122] Compiling SWCompression XZBlock.swift
[77/122] Compiling SWCompression XZError.swift
[78/122] Compiling SWCompression XZStreamHeader.swift
[79/122] Compiling SWCompression BuiltinExtraFields.swift
[80/122] Compiling SWCompression CompressionMethod+Zip.swift
[81/122] Compiling SWCompression FileSystemType+Zip.swift
[82/122] Compiling SWCompression LittleEndianByteReader+Zip.swift
[83/122] Compiling SWCompression ZipCentralDirectoryEntry.swift
[84/122] Compiling SWCompression DeltaFilter.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[85/122] Compiling SWCompression Extensions.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[86/122] Compiling SWCompression FileSystemType.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[87/122] Compiling SWCompression Deflate+Compress.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[88/122] Compiling SWCompression Deflate+Constants.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[89/122] Compiling SWCompression Deflate+Lengths.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[90/122] Compiling SWCompression Deflate.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[91/122] Compiling SWCompression DeflateError.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[92/122] Compiling SWCompression FileSystemType+Gzip.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[93/122] Compiling SWCompression GzipArchive.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[94/122] Compiling SWCompression GzipError.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[95/122] Compiling SWCompression GzipHeader+ExtraField.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[96/122] Compiling SWCompression GzipHeader.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[97/122] Compiling SWCompression LZ4+Compress.swift
[98/122] Compiling SWCompression LZ4.swift
[99/122] Compiling SWCompression XxHash32.swift
[100/122] Compiling SWCompression LZMA.swift
[101/122] Compiling SWCompression LZMABitTreeDecoder.swift
[102/122] Compiling SWCompression LZMAConstants.swift
[103/122] Compiling SWCompression LZMADecoder.swift
[104/122] Compiling SWCompression LZMAError.swift
[105/122] Compiling SWCompression LZMALenDecoder.swift
[106/122] Compiling SWCompression LZMAProperties.swift
[107/122] Compiling SWCompression LZMARangeDecoder.swift
[108/122] Compiling SWCompression LZMA2.swift
[109/122] Compiling SWCompression LZMA2Decoder.swift
[110/122] Compiling SWCompression LZMA2Error.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[111/122] Compiling SWCompression ContainerEntryType+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[112/122] Compiling SWCompression Data+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[113/122] Compiling SWCompression LittleEndianByteReader+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[114/122] Compiling SWCompression TarContainer.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[115/122] Compiling SWCompression TarCreateError.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[116/122] Compiling SWCompression TarEntry.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[117/122] Compiling SWCompression TarEntryInfo.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[118/122] Compiling SWCompression TarError.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[119/122] Compiling SWCompression TarExtendedHeader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[120/122] Compiling SWCompression TarHeader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[121/122] Compiling SWCompression TarParser.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[122/122] Compiling SWCompression TarReader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/13] Compiling BitByteData MsbBitWriter.swift
[3/13] Compiling BitByteData SignedNumberRepresentation.swift
[4/14] Compiling BitByteData MsbBitReader.swift
[5/14] Compiling BitByteData resource_bundle_accessor.swift
[6/14] Compiling BitByteData Extensions.swift
[7/14] Compiling BitByteData LittleEndianByteReader.swift
[8/14] Compiling BitByteData BitWriter.swift
[9/14] Compiling BitByteData ByteReader.swift
[10/14] Emitting module BitByteData
[11/14] Compiling BitByteData BigEndianByteReader.swift
[12/14] Compiling BitByteData BitReader.swift
[13/14] Compiling BitByteData LsbBitReader.swift
[14/14] Compiling BitByteData LsbBitWriter.swift
[16/106] Compiling SWCompression LZMA2Error.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[17/106] Compiling SWCompression ContainerEntryType+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[18/106] Compiling SWCompression Data+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[19/106] Compiling SWCompression LittleEndianByteReader+Tar.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[20/106] Compiling SWCompression TarContainer.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[21/106] Compiling SWCompression TarCreateError.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[22/106] Compiling SWCompression TarEntry.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[23/106] Compiling SWCompression TarEntryInfo.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[24/106] Compiling SWCompression TarError.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[25/106] Compiling SWCompression TarExtendedHeader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[26/106] Compiling SWCompression TarHeader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[27/106] Compiling SWCompression TarParser.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[28/106] Compiling SWCompression TarReader.swift
/host/spi-builder-workspace/Sources/TAR/TarReader.swift:60:20: error: cannot find 'autoreleasepool' in scope
 58 |      */
 59 |     public mutating func process<T>(_ transform: (TarEntry?) throws -> T) throws -> T {
 60 |         return try autoreleasepool {
    |                    `- error: cannot find 'autoreleasepool' in scope
 61 |             let entry = try read()
 62 |             return try transform(entry)
[29/118] Emitting module SWCompression
[30/118] Compiling SWCompression 7zCoder+Equatable.swift
[31/118] Compiling SWCompression 7zCoder.swift
[32/118] Compiling SWCompression 7zCoderInfo.swift
[33/118] Compiling SWCompression 7zContainer.swift
[34/118] Compiling SWCompression 7zEntry.swift
[35/118] Compiling SWCompression 7zEntryInfo.swift
[36/118] Compiling SWCompression 7zError.swift
[37/118] Compiling SWCompression 7zFileInfo.swift
[38/118] Compiling SWCompression 7zFolder.swift
[39/118] Compiling SWCompression 7zHeader.swift
[40/118] Compiling SWCompression 7zPackInfo.swift
[41/118] Compiling SWCompression 7zProperty.swift
[42/118] Compiling SWCompression 7zStreamInfo.swift
[43/118] Compiling SWCompression ZipContainer.swift
[44/118] Compiling SWCompression ZipEndOfCentralDirectory.swift
[45/118] Compiling SWCompression ZipEntry.swift
[46/118] Compiling SWCompression ZipEntryInfo.swift
[47/118] Compiling SWCompression ZipEntryInfoHelper.swift
[48/118] Compiling SWCompression ZipError.swift
[49/118] Compiling SWCompression ZipExtraField.swift
[50/118] Compiling SWCompression ZipLocalHeader.swift
[51/118] Compiling SWCompression ZlibArchive.swift
[52/118] Compiling SWCompression ZlibError.swift
[53/118] Compiling SWCompression ZlibHeader.swift
[54/118] Compiling SWCompression resource_bundle_accessor.swift
[55/118] Compiling SWCompression TarWriter.swift
[56/118] Compiling SWCompression ByteReader+XZ.swift
[57/118] Compiling SWCompression Sha256.swift
[58/118] Compiling SWCompression XZArchive.swift
[59/118] Compiling SWCompression XZBlock.swift
[60/118] Compiling SWCompression XZError.swift
[61/118] Compiling SWCompression XZStreamHeader.swift
[62/118] Compiling SWCompression BuiltinExtraFields.swift
[63/118] Compiling SWCompression CompressionMethod+Zip.swift
[64/118] Compiling SWCompression FileSystemType+Zip.swift
[65/118] Compiling SWCompression LittleEndianByteReader+Zip.swift
[66/118] Compiling SWCompression ZipCentralDirectoryEntry.swift
[67/118] Compiling SWCompression 7zSubstreamInfo.swift
[68/118] Compiling SWCompression CompressionMethod+7z.swift
[69/118] Compiling SWCompression MsbBitReader+7z.swift
[70/118] Compiling SWCompression BZip2+BlockSize.swift
[71/118] Compiling SWCompression BZip2+Compress.swift
[72/118] Compiling SWCompression BZip2+Lengths.swift
[73/118] Compiling SWCompression BZip2.swift
[74/118] Compiling SWCompression BZip2Error.swift
[75/118] Compiling SWCompression BurrowsWheeler.swift
[76/118] Compiling SWCompression SuffixArray.swift
[77/118] Compiling SWCompression Archive.swift
[78/118] Compiling SWCompression CheckSums.swift
[79/118] Compiling SWCompression Code.swift
[80/118] Compiling SWCompression CodeLength.swift
[81/118] Compiling SWCompression DecodingTree.swift
[82/118] Compiling SWCompression EncodingTree.swift
[83/118] Compiling SWCompression CompressionAlgorithm.swift
[84/118] Compiling SWCompression CompressionMethod.swift
[85/118] Compiling SWCompression Container.swift
[86/118] Compiling SWCompression ContainerEntry.swift
[87/118] Compiling SWCompression ContainerEntryInfo.swift
[88/118] Compiling SWCompression ContainerEntryType.swift
[89/118] Compiling SWCompression DosAttributes.swift
[90/118] Compiling SWCompression Permissions.swift
[91/118] Compiling SWCompression DataError.swift
[92/118] Compiling SWCompression DecompressionAlgorithm.swift
[93/118] Compiling SWCompression DeltaFilter.swift
[94/118] Compiling SWCompression Extensions.swift
[95/118] Compiling SWCompression FileSystemType.swift
[96/118] Compiling SWCompression Deflate+Compress.swift
[97/118] Compiling SWCompression Deflate+Constants.swift
[98/118] Compiling SWCompression Deflate+Lengths.swift
[99/118] Compiling SWCompression Deflate.swift
[100/118] Compiling SWCompression DeflateError.swift
[101/118] Compiling SWCompression FileSystemType+Gzip.swift
[102/118] Compiling SWCompression GzipArchive.swift
[103/118] Compiling SWCompression GzipError.swift
[104/118] Compiling SWCompression GzipHeader+ExtraField.swift
[105/118] Compiling SWCompression GzipHeader.swift
[106/118] Compiling SWCompression LZ4+Compress.swift
[107/118] Compiling SWCompression LZ4.swift
[108/118] Compiling SWCompression XxHash32.swift
[109/118] Compiling SWCompression LZMA.swift
[110/118] Compiling SWCompression LZMABitTreeDecoder.swift
[111/118] Compiling SWCompression LZMAConstants.swift
[112/118] Compiling SWCompression LZMADecoder.swift
[113/118] Compiling SWCompression LZMAError.swift
[114/118] Compiling SWCompression LZMALenDecoder.swift
[115/118] Compiling SWCompression LZMAProperties.swift
[116/118] Compiling SWCompression LZMARangeDecoder.swift
[117/118] Compiling SWCompression LZMA2.swift
[118/118] Compiling SWCompression LZMA2Decoder.swift
BUILD FAILURE 6.1 wasm