Build Information
Successful build of CryptomatorCloudAccess, reference develop (273007), with Swift 6.1 for iOS using Xcode 16.3 on 17 Mar 2026 20:44:19 UTC.
Swift 6 data race errors: 18
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CryptomatorCloudAccess-Package -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCapturesBuild Log
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveCredential.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveError.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveIdentifierCache.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveItem.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveSetup.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveSetup.swift:12:20: warning: static property 'constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var constants: GoogleDriveSetup!
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveSetup.swift:12:20: note: convert 'constants' to a 'let' constant to make 'Sendable' shared state immutable
public static var constants: GoogleDriveSetup!
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveSetup.swift:12:20: note: add '@MainActor' to make static property 'constants' part of global actor 'MainActor'
public static var constants: GoogleDriveSetup!
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveSetup.swift:12:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var constants: GoogleDriveSetup!
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:108:70: warning: capture of 'cloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
CloudAccessDDLogDebug("LocalFileSystemProvider: fillCache(for: \(cloudPath.path)) failed coordinated read with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:109:5: warning: capture of 'promise' with non-sendable type 'Promise<Void>' in a '@Sendable' closure
promise.reject(error)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Promises'
import Promises
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:113:9: warning: capture of 'self' with non-sendable type 'LocalFileSystemProvider' in a '@Sendable' closure
try self.evaluateReadingIntentForFetchItemList(readingIntent)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:38:14: note: class 'LocalFileSystemProvider' does not conform to the 'Sendable' protocol
public class LocalFileSystemProvider: CloudProvider {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:108:70: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: fillCache(for: \(cloudPath.path)) failed coordinated read with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:115:70: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: fillCache(for: \(cloudPath.path)) failed readingIntent evaluation with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:120:70: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: fillCache(for: \(cloudPath.path)) failed directoryEnumerator creation")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:125:5: warning: capture of 'self' with non-sendable type 'LocalFileSystemProvider' in a '@Sendable' closure
self.fillCacheAfterCheck(for: cloudPath, url: url, directoryEnumerator: directoryEnumerator, promise: promise)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:38:14: note: class 'LocalFileSystemProvider' does not conform to the 'Sendable' protocol
public class LocalFileSystemProvider: CloudProvider {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:125:35: warning: capture of 'cloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
self.fillCacheAfterCheck(for: cloudPath, url: url, directoryEnumerator: directoryEnumerator, promise: promise)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:125:77: warning: capture of 'directoryEnumerator' with non-sendable type 'FileManager.DirectoryEnumerator' in a '@Sendable' closure
self.fillCacheAfterCheck(for: cloudPath, url: url, directoryEnumerator: directoryEnumerator, promise: promise)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:417:12: note: class 'DirectoryEnumerator' does not conform to the 'Sendable' protocol
@interface NSDirectoryEnumerator<ObjectType> : NSEnumerator<ObjectType>
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:125:107: warning: capture of 'promise' with non-sendable type 'Promise<Void>' in a '@Sendable' closure
self.fillCacheAfterCheck(for: cloudPath, url: url, directoryEnumerator: directoryEnumerator, promise: promise)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:197:74: warning: capture of 'cloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
CloudAccessDDLogDebug("LocalFileSystemProvider: downloadFile(from: \(cloudPath.path) to: \(localURL)) failed coordinated read with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:198:5: warning: capture of 'promise' with non-sendable type 'Promise<Void>' in a '@Sendable' closure
promise.reject(error)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:202:9: warning: capture of 'self' with non-sendable type 'LocalFileSystemProvider' in a '@Sendable' closure
try self.validateAndCopyFile(from: readingIntent.url, to: localURL, replaceExisting: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:38:14: note: class 'LocalFileSystemProvider' does not conform to the 'Sendable' protocol
public class LocalFileSystemProvider: CloudProvider {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:197:74: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: downloadFile(from: \(cloudPath.path) to: \(localURL)) failed coordinated read with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:203:74: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: downloadFile(from: \(cloudPath.path) to: \(localURL)) finished")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:206:74: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: downloadFile(from: \(cloudPath.path) to: \(localURL)) failed with fileReadNoSuchFile")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:209:74: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: downloadFile(from: \(cloudPath.path) to: \(localURL)) failed with fileWriteFileExists")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:212:74: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: downloadFile(from: \(cloudPath.path) to: \(localURL)) failed with fileReadNoPermission")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:215:74: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: downloadFile(from: \(cloudPath.path) to: \(localURL)) failed with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:235:88: warning: capture of 'cloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:236:5: warning: capture of 'promise' with non-sendable type 'Promise<CloudItemMetadata>' in a '@Sendable' closure
promise.reject(error)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:240:9: warning: capture of 'self' with non-sendable type 'LocalFileSystemProvider' in a '@Sendable' closure
try self.validateAndCopyFile(from: localURL, to: writingIntent.url, replaceExisting: replaceExisting)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:38:14: note: class 'LocalFileSystemProvider' does not conform to the 'Sendable' protocol
public class LocalFileSystemProvider: CloudProvider {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:235:88: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:241:88: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) finished, getting metadata…")
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:243:6: warning: capture of 'promise' with non-sendable type 'Promise<CloudItemMetadata>' in an isolated closure; this is an error in the Swift 6 language mode
promise.fulfill(metadata)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:245:6: warning: capture of 'promise' with non-sendable type 'Promise<CloudItemMetadata>' in an isolated closure; this is an error in the Swift 6 language mode
promise.reject(error)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:248:88: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) failed with fileReadNoSuchFile")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:251:88: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) failed with fileWriteFileExists")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:254:88: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) failed with fileNoSuchFile")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:257:88: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) failed with fileWriteOutOfSpace")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:260:88: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) failed with fileReadNoPermission")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:263:88: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: uploadFile(from: \(localURL) to: \(cloudPath.path), replaceExisting: \(replaceExisting)) failed with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:282:72: warning: capture of 'cloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
CloudAccessDDLogDebug("LocalFileSystemProvider: createFolder(at: \(cloudPath.path)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:283:5: warning: capture of 'promise' with non-sendable type 'Promise<Void>' in a '@Sendable' closure
promise.reject(error)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:287:9: warning: capture of 'self' with non-sendable type 'LocalFileSystemProvider' in a '@Sendable' closure
try self.fileManager.createDirectory(at: writingIntent.url, withIntermediateDirectories: false, attributes: nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:38:14: note: class 'LocalFileSystemProvider' does not conform to the 'Sendable' protocol
public class LocalFileSystemProvider: CloudProvider {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:282:72: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: createFolder(at: \(cloudPath.path)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:288:72: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: createFolder(at: \(cloudPath.path)) finished")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:291:72: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: createFolder(at: \(cloudPath.path)) failed with fileWriteFileExists")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:294:72: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: createFolder(at: \(cloudPath.path)) failed with fileNoSuchFile")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:297:72: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: createFolder(at: \(cloudPath.path)) failed with fileWriteOutOfSpace")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:300:72: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: createFolder(at: \(cloudPath.path)) failed with fileReadNoPermission")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:303:72: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: createFolder(at: \(cloudPath.path)) failed with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:330:70: warning: capture of 'cloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
CloudAccessDDLogDebug("LocalFileSystemProvider: deleteItem(at: \(cloudPath.path)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:331:5: warning: capture of 'promise' with non-sendable type 'Promise<Void>' in a '@Sendable' closure
promise.reject(error)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:335:9: warning: capture of 'self' with non-sendable type 'LocalFileSystemProvider' in a '@Sendable' closure
try self.fileManager.removeItem(at: writingIntent.url)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:38:14: note: class 'LocalFileSystemProvider' does not conform to the 'Sendable' protocol
public class LocalFileSystemProvider: CloudProvider {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:330:70: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: deleteItem(at: \(cloudPath.path)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:336:70: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: deleteItem(at: \(cloudPath.path)) finished")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:339:70: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: deleteItem(at: \(cloudPath.path)) failed with fileNoSuchFile")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:342:70: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: deleteItem(at: \(cloudPath.path)) failed with fileReadNoPermission")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:345:70: warning: implicit capture of 'cloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: deleteItem(at: \(cloudPath.path)) failed with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:373:70: warning: capture of 'sourceCloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:373:99: warning: capture of 'targetCloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:374:5: warning: capture of 'promise' with non-sendable type 'Promise<Void>' in a '@Sendable' closure
promise.reject(error)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:378:9: warning: capture of 'self' with non-sendable type 'LocalFileSystemProvider' in a '@Sendable' closure
try self.fileManager.moveItem(at: writingIntent.url, to: targetURL)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:38:14: note: class 'LocalFileSystemProvider' does not conform to the 'Sendable' protocol
public class LocalFileSystemProvider: CloudProvider {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:373:70: warning: implicit capture of 'sourceCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:373:99: warning: implicit capture of 'targetCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed coordinated write with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:379:70: warning: implicit capture of 'sourceCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) finished")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:379:99: warning: implicit capture of 'targetCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) finished")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:382:70: warning: implicit capture of 'sourceCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with fileNoSuchFile")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:382:99: warning: implicit capture of 'targetCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with fileNoSuchFile")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:389:70: warning: implicit capture of 'sourceCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with fileWriteFileExists")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:389:99: warning: implicit capture of 'targetCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with fileWriteFileExists")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:392:70: warning: implicit capture of 'sourceCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with fileWriteOutOfSpace")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:392:99: warning: implicit capture of 'targetCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with fileWriteOutOfSpace")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:395:70: warning: implicit capture of 'sourceCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with fileReadNoPermission")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:395:99: warning: implicit capture of 'targetCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with fileReadNoPermission")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:398:70: warning: implicit capture of 'sourceCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:398:99: warning: implicit capture of 'targetCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: moveItem(from: \(sourceCloudPath.path), to: \(targetCloudPath.path)) failed with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:463:107: warning: capture of 'parentCloudPath' with non-sendable type 'CloudPath' in a '@Sendable' closure
CloudAccessDDLogDebug("LocalFileSystemProvider: getItemMetadata(forItemAt: \(url), parentCloudPath: \(parentCloudPath.path)) failed coordinated read with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:464:5: warning: capture of 'promise' with non-sendable type 'Promise<CloudItemMetadata>' in a '@Sendable' closure
promise.reject(error)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/Promises/Promise.swift:18:20: note: generic class 'Promise' does not conform to the 'Sendable' protocol
public final class Promise<Value> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:473:20: warning: capture of 'self' with non-sendable type 'LocalFileSystemProvider' in a '@Sendable' closure
let itemType = self.getItemType(from: attributes.fileResourceType)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:38:14: note: class 'LocalFileSystemProvider' does not conform to the 'Sendable' protocol
public class LocalFileSystemProvider: CloudProvider {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:463:107: warning: implicit capture of 'parentCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: getItemMetadata(forItemAt: \(url), parentCloudPath: \(parentCloudPath.path)) failed coordinated read with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:469:107: warning: implicit capture of 'parentCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: getItemMetadata(forItemAt: \(url), parentCloudPath: \(parentCloudPath.path)) read attributes: \(attributes.allValues.reduce(into: [:]) { $0[$1.key.rawValue] = $1.value })")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:476:107: warning: implicit capture of 'parentCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: getItemMetadata(forItemAt: \(url), parentCloudPath: \(parentCloudPath.path)) failed with fileReadNoSuchFile")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:479:107: warning: implicit capture of 'parentCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: getItemMetadata(forItemAt: \(url), parentCloudPath: \(parentCloudPath.path)) failed with fileReadNoPermission")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/LocalFileSystem/LocalFileSystemProvider.swift:482:107: warning: implicit capture of 'parentCloudPath' requires that 'CloudPath' conforms to 'Sendable'; this is an error in the Swift 6 language mode
CloudAccessDDLogDebug("LocalFileSystemProvider: getItemMetadata(forItemAt: \(url), parentCloudPath: \(parentCloudPath.path)) failed with error: \(error)")
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/API/CloudPath.swift:80:15: note: consider making struct 'CloudPath' conform to the 'Sendable' protocol
public struct CloudPath: Equatable, Codable {
^
, Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Logging/CloudAccessDDLog.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Logging/CloudAccessDDLog.swift:13:12: warning: var 'dynamicCloudAccessLogLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var dynamicCloudAccessLogLevel = DDLogLevel.all
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Logging/CloudAccessDDLog.swift:13:12: note: convert 'dynamicCloudAccessLogLevel' to a 'let' constant to make 'Sendable' shared state immutable
public var dynamicCloudAccessLogLevel = DDLogLevel.all
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Logging/CloudAccessDDLog.swift:13:12: note: add '@MainActor' to make var 'dynamicCloudAccessLogLevel' part of global actor 'MainActor'
public var dynamicCloudAccessLogLevel = DDLogLevel.all
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Logging/CloudAccessDDLog.swift:13:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var dynamicCloudAccessLogLevel = DDLogLevel.all
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Logging/CloudAccessDDLog.swift:85:14: warning: class 'CloudAccessDDLog' must restate inherited '@unchecked Sendable' conformance
public class CloudAccessDDLog: DDLog {
^
, @unchecked Sendable
SwiftDriverJobDiscovery normal arm64 Emitting module for CryptomatorCloudAccessCore (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftDriver\ Compilation\ Requirements CryptomatorCloudAccessCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptomatorCloudAccessCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjackSwiftSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjack.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/scrypt.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForRESTCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForREST_Drive.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/GRDB.swift/Sources/GRDBSQLite/module.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/AppAuthCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherFull.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherCore.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios16.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/aws-sdk-ios-spm/DependantTargets/AWSS3-Target/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjackSwiftSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjack/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/cryptolib-swift/Sources/scrypt/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/GeneratedServices/Drive/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS/Sources/AppAuthCore -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Full/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/FBLPromises/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CloudItemList.swift, CloudItemMetadata.swift, CloudItemType.swift, CloudPath+DatabaseValueConvertible.swift, CloudPath.swift, CloudProvider+Convenience.swift, CloudProvider.swift, CloudProviderError.swift, NetworkConnectionError.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CryptomatorCloudAccessCore-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore-Swift.h (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CryptomatorCloudAccessCore-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftmodule (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftdoc (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.abi.json (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftsourceinfo (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCryptoLib.o normal (in target 'CryptomatorCryptoLib' from project 'CryptomatorCryptoLib')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/cryptolib-swift
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/Objects-normal/arm64/CryptomatorCryptoLib.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/Objects-normal/arm64/CryptomatorCryptoLib_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/Objects-normal/arm64/CryptomatorCryptoLib_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/Objects-normal/arm64/CryptomatorCryptoLib.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCryptoLib.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/AppAuth.o (in target 'AppAuth' from project 'AppAuth')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/AppAuth.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CocoaLumberjackSwift.o normal (in target 'CocoaLumberjackSwift' from project 'CocoaLumberjack')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/Objects-normal/arm64/CocoaLumberjackSwift.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/Objects-normal/arm64/CocoaLumberjackSwift_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/Objects-normal/arm64/CocoaLumberjackSwift_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/Objects-normal/arm64/CocoaLumberjackSwift.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CocoaLumberjackSwift.o
ExtractAppIntentsMetadata (in target 'CryptomatorCryptoLib' from project 'CryptomatorCryptoLib')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/cryptolib-swift
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CryptomatorCryptoLib --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier cryptolib-swift.CryptomatorCryptoLib --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCryptoLib.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCryptoLib.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/Objects-normal/arm64/CryptomatorCryptoLib_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/Objects-normal/arm64/CryptomatorCryptoLib.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/CryptomatorCryptoLib.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/CryptomatorCryptoLib.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCryptoLib.build/Debug-iphoneos/CryptomatorCryptoLib.build/Objects-normal/arm64/CryptomatorCryptoLib.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-03-17 13:44:15.418 appintentsmetadataprocessor[2523:12455] Starting appintentsmetadataprocessor export
2026-03-17 13:44:15.455 appintentsmetadataprocessor[2523:12455] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'CocoaLumberjackSwift' from project 'CocoaLumberjack')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CocoaLumberjackSwift --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier cocoalumberjack.CocoaLumberjackSwift --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CocoaLumberjackSwift.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CocoaLumberjackSwift.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/Objects-normal/arm64/CocoaLumberjackSwift_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/Objects-normal/arm64/CocoaLumberjackSwift.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/CocoaLumberjackSwift.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/CocoaLumberjackSwift.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CocoaLumberjack.build/Debug-iphoneos/CocoaLumberjackSwift.build/Objects-normal/arm64/CocoaLumberjackSwift.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-03-17 13:44:15.475 appintentsmetadataprocessor[2524:12465] Starting appintentsmetadataprocessor export
2026-03-17 13:44:15.511 appintentsmetadataprocessor[2524:12465] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Promises.o (in target 'Promises' from project 'Promises')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Promises.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BoxSdkGen.o (in target 'BoxSdkGen' from project 'BoxSdkGen')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/box-swift-sdk-gen
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BoxSdkGen.o
SwiftDriver CryptomatorCloudAccess normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptomatorCloudAccess -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjackSwiftSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjack.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/scrypt.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForRESTCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForREST_Drive.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/GRDB.swift/Sources/GRDBSQLite/module.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherFull.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/AppAuthCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/AppAuth.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios16.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/aws-sdk-ios-spm/DependantTargets/AWSS3-Target/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjackSwiftSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjack/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/cryptolib-swift/Sources/scrypt/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/GeneratedServices/Drive/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Full/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/FBLPromises/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS/Sources/AppAuthCore -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS/Sources/AppAuth -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GTMAppAuth.o (in target 'GTMAppAuth' from project 'GTMAppAuth')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/GTMAppAuth
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GTMAppAuth.o
SwiftEmitModule normal arm64 Emitting\ module\ for\ CryptomatorCloudAccess (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
EmitSwiftModule normal arm64 (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:22:20: warning: static property 'pendingAuthentication' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var pendingAuthentication: Promise<DropboxCredential>?
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:22:20: note: convert 'pendingAuthentication' to a 'let' constant to make 'Sendable' shared state immutable
public static var pendingAuthentication: Promise<DropboxCredential>?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:22:20: note: add '@MainActor' to make static property 'pendingAuthentication' part of global actor 'MainActor'
public static var pendingAuthentication: Promise<DropboxCredential>?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:22:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var pendingAuthentication: Promise<DropboxCredential>?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:24:21: warning: static property 'scopeRequest' is not concurrency-safe because non-'Sendable' type 'DBScopeRequest' may have shared mutable state; this is an error in the Swift 6 language mode
private static let scopeRequest = DBScopeRequest(scopeType: DBScopeType.user, scopes: scopes, includeGrantedScopes: false)
^
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ObjectiveDropboxOfficial.framework/Headers/DBScopeRequest.h:15:12: note: class 'DBScopeRequest' does not conform to the 'Sendable' protocol
@interface DBScopeRequest : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:13:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ObjectiveDropboxOfficial'
import ObjectiveDropboxOfficial
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:24:21: note: add '@MainActor' to make static property 'scopeRequest' part of global actor 'MainActor'
private static let scopeRequest = DBScopeRequest(scopeType: DBScopeType.user, scopes: scopes, includeGrantedScopes: false)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:24:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let scopeRequest = DBScopeRequest(scopeType: DBScopeType.user, scopes: scopes, includeGrantedScopes: false)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:19:20: warning: static property 'currentAuthorizationFlow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var currentAuthorizationFlow: OIDExternalUserAgentSession?
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:19:20: note: convert 'currentAuthorizationFlow' to a 'let' constant to make 'Sendable' shared state immutable
public static var currentAuthorizationFlow: OIDExternalUserAgentSession?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:19:20: note: add '@MainActor' to make static property 'currentAuthorizationFlow' part of global actor 'MainActor'
public static var currentAuthorizationFlow: OIDExternalUserAgentSession?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:19:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var currentAuthorizationFlow: OIDExternalUserAgentSession?
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ MicrosoftGraphAuthenticator.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/MicrosoftGraph/MicrosoftGraphAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/MicrosoftGraph/MicrosoftGraphAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/MicrosoftGraph/MicrosoftGraphAuthenticator.swift:26:30: warning: reference to class property 'constants' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
return MicrosoftGraphSetup.constants.clientApplication.acquireToken(with: interactiveParameters).then { result -> MicrosoftGraphCredential in
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/MicrosoftGraph/MicrosoftGraphSetup.swift:13:20: note: class property declared here
public static var constants: MicrosoftGraphSetup!
^
SwiftDriverJobDiscovery normal arm64 Compiling TLSCertificate.swift, TLSCertificateValidator.swift, URLSession+Promises.swift, WebDAVAuthenticator.swift, WebDAVClient.swift, WebDAVCredential.swift, WebDAVProvider.swift, WebDAVSession.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftCompile normal arm64 Compiling\ BoxAuthenticator.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxAuthenticator.swift:30:49: warning: reference to class property 'constants' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
let config = OAuthConfig(clientId: BoxSetup.constants.clientId, clientSecret: BoxSetup.constants.clientSecret, tokenStorage: tokenStorage)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxSetup.swift:12:20: note: class property declared here
public static var constants: BoxSetup!
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxAuthenticator.swift:30:92: warning: reference to class property 'constants' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
let config = OAuthConfig(clientId: BoxSetup.constants.clientId, clientSecret: BoxSetup.constants.clientSecret, tokenStorage: tokenStorage)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxSetup.swift:12:20: note: class property declared here
public static var constants: BoxSetup!
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxAuthenticator.swift:25:21: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
_Concurrency.Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxAuthenticator.swift:30:130: note: closure captures non-Sendable 'tokenStorage'
let config = OAuthConfig(clientId: BoxSetup.constants.clientId, clientSecret: BoxSetup.constants.clientSecret, tokenStorage: tokenStorage)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Box/BoxAuthenticator.swift:33:5: note: closure captures non-Sendable 'pendingPromise'
pendingPromise.fulfill(BoxCredential(tokenStorage: tokenStorage))
^
SwiftDriverJobDiscovery normal arm64 Compiling MicrosoftGraphError.swift, MicrosoftGraphIdentifierCache.swift, MicrosoftGraphItem.swift, MicrosoftGraphSetup.swift, MicrosoftGraphSite.swift, MicrosoftGraphType.swift, URL+SharePointValidation.swift, PCloudCloudProvider.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftCompile normal arm64 Compiling\ PCloudAuthenticator.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudAuthenticator.swift:25:43: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let window = viewController.view.window else {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow *window;
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudAuthenticator.swift:22:21: note: add '@MainActor' to make static method 'authenticate(from:)' part of global actor 'MainActor'
public static func authenticate(from viewController: UIViewController) -> Promise<PCloudCredential> {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudAuthenticator.swift:25:38: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let window = viewController.view.window else {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudAuthenticator.swift:22:21: note: add '@MainActor' to make static method 'authenticate(from:)' part of global actor 'MainActor'
public static func authenticate(from viewController: UIViewController) -> Promise<PCloudCredential> {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudAuthenticator.swift:29:79: warning: reference to class property 'constants' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
promise = OAuth.performAuthorizationFlow(with: window, appKey: PCloudSetup.constants.appKey)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudSetup.swift:12:20: note: class property declared here
public static var constants: PCloudSetup!
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudAuthenticator.swift:31:147: warning: reference to class property 'constants' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
promise = OAuth.performAuthorizationFlow(with: WebViewControllerPresenterMobile(presentingViewController: viewController), appKey: PCloudSetup.constants.appKey)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/PCloud/PCloudSetup.swift:12:20: note: class property declared here
public static var constants: PCloudSetup!
^
SwiftCompile normal arm64 Compiling\ DropboxAuthenticator.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:22:20: warning: static property 'pendingAuthentication' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var pendingAuthentication: Promise<DropboxCredential>?
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:22:20: note: convert 'pendingAuthentication' to a 'let' constant to make 'Sendable' shared state immutable
public static var pendingAuthentication: Promise<DropboxCredential>?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:22:20: note: add '@MainActor' to make static property 'pendingAuthentication' part of global actor 'MainActor'
public static var pendingAuthentication: Promise<DropboxCredential>?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:22:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var pendingAuthentication: Promise<DropboxCredential>?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:24:21: warning: static property 'scopeRequest' is not concurrency-safe because non-'Sendable' type 'DBScopeRequest' may have shared mutable state; this is an error in the Swift 6 language mode
private static let scopeRequest = DBScopeRequest(scopeType: DBScopeType.user, scopes: scopes, includeGrantedScopes: false)
^
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ObjectiveDropboxOfficial.framework/Headers/DBScopeRequest.h:15:12: note: class 'DBScopeRequest' does not conform to the 'Sendable' protocol
@interface DBScopeRequest : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:13:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ObjectiveDropboxOfficial'
import ObjectiveDropboxOfficial
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:24:21: note: add '@MainActor' to make static property 'scopeRequest' part of global actor 'MainActor'
private static let scopeRequest = DBScopeRequest(scopeType: DBScopeType.user, scopes: scopes, includeGrantedScopes: false)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:24:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let scopeRequest = DBScopeRequest(scopeType: DBScopeType.user, scopes: scopes, includeGrantedScopes: false)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:26:22: warning: reference to static property 'oneTimeSetup' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
DropboxClientSetup.oneTimeSetup()
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxClientSetup.swift:13:20: note: static property declared here
public static var oneTimeSetup: () -> Void = {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:34:49: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
DBClientsManager.authorize(fromControllerV2: .shared, controller: viewController, loadingStatusDelegate: nil, openURL: { url in
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:87:54: note: class property declared here
@property(class, nonatomic, readonly) UIApplication *sharedApplication NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.");
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:30:14: note: add '@MainActor' to make instance method 'authenticate(from:)' part of global actor 'MainActor'
public func authenticate(from viewController: UIViewController) -> Promise<DropboxCredential> {
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:35:25: warning: call to main actor-isolated instance method 'open(_:options:completionHandler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIApplication.shared.open(url, options: [:], completionHandler: nil)
^
UIKit.UIApplication.open:3:24: note: calls to instance method 'open(_:options:completionHandler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func open(_ url: URL, options: [UIApplication.OpenExternalURLOptionsKey : Any] = [:], completionHandler completion: (@MainActor @Sendable (Bool) -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/Dropbox/DropboxAuthenticator.swift:35:18: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIApplication.shared.open(url, options: [:], completionHandler: nil)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:87:54: note: class property declared here
@property(class, nonatomic, readonly) UIApplication *sharedApplication NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.");
^
SwiftDriverJobDiscovery normal arm64 Compiling BoxCloudProvider.swift, BoxCredential.swift, BoxError.swift, BoxIdentifierCache.swift, BoxItem.swift, BoxSetup.swift, DirectoryContentCache.swift, Promise+Async.swift, DirectoryIdCache.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftCompile normal arm64 Compiling\ GoogleDriveAuthenticator.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:19:20: warning: static property 'currentAuthorizationFlow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var currentAuthorizationFlow: OIDExternalUserAgentSession?
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:19:20: note: convert 'currentAuthorizationFlow' to a 'let' constant to make 'Sendable' shared state immutable
public static var currentAuthorizationFlow: OIDExternalUserAgentSession?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:19:20: note: add '@MainActor' to make static property 'currentAuthorizationFlow' part of global actor 'MainActor'
public static var currentAuthorizationFlow: OIDExternalUserAgentSession?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:19:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var currentAuthorizationFlow: OIDExternalUserAgentSession?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:49:98: warning: reference to class property 'constants' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
let request = OIDAuthorizationRequest(configuration: configuration, clientId: GoogleDriveSetup.constants.clientId, scopes: scopes, redirectURL: GoogleDriveSetup.constants.redirectURL, responseType: OIDResponseTypeCode, additionalParameters: nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveSetup.swift:12:20: note: class property declared here
public static var constants: GoogleDriveSetup!
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveAuthenticator.swift:49:164: warning: reference to class property 'constants' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
let request = OIDAuthorizationRequest(configuration: configuration, clientId: GoogleDriveSetup.constants.clientId, scopes: scopes, redirectURL: GoogleDriveSetup.constants.redirectURL, responseType: OIDResponseTypeCode, additionalParameters: nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptomatorCloudAccess/GoogleDrive/GoogleDriveSetup.swift:12:20: note: class property declared here
public static var constants: GoogleDriveSetup!
^
SwiftDriverJobDiscovery normal arm64 Emitting module for CryptomatorCloudAccess (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftDriver\ Compilation\ Requirements CryptomatorCloudAccess normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptomatorCloudAccess -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjackSwiftSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjack.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/scrypt.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForRESTCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForREST_Drive.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/GRDB.swift/Sources/GRDBSQLite/module.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherFull.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/AppAuthCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/AppAuth.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios16.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/aws-sdk-ios-spm/DependantTargets/AWSS3-Target/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjackSwiftSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjack/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/cryptolib-swift/Sources/scrypt/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/GeneratedServices/Drive/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Full/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/FBLPromises/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS/Sources/AppAuthCore -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS/Sources/AppAuth -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling PCloudCredential.swift, PCloudError.swift, PCloudIdentifierCache.swift, PCloudItem.swift, PCloudSetup.swift, Task+Promises.swift, AWSEndpoint+CustomRegionName.swift, AWSS3+Promises.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPDebugLogger.swift, MSClientFactory+UnauthenticatedClient.swift, MSGraphDriveItem+CloudItemType.swift, MicrosoftGraphAuthenticationProvider.swift, MicrosoftGraphCloudProvider.swift, MicrosoftGraphCredential.swift, MicrosoftGraphDiscovery.swift, MicrosoftGraphDrive.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftDriverJobDiscovery normal arm64 Compiling AWSS3TransferUtility+ForegroundSession.swift, CustomAWSEndpointRegionNameStorage.swift, S3Authenticator.swift, S3CloudProvider.swift, S3CopyTaskUtility.swift, S3Credential.swift, Date+RFC822.swift, PropfindResponseParser.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GoogleAPIClientForRESTCore.o (in target 'GoogleAPIClientForRESTCore' from project 'GoogleAPIClientForREST')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GoogleAPIClientForRESTCore.o
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CryptomatorCloudAccess-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess-Swift.h (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CryptomatorCloudAccess-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftmodule (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftdoc (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.abi.json (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftsourceinfo (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCryptoLib.o (in target 'CryptomatorCryptoLib' from project 'CryptomatorCryptoLib')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/cryptolib-swift
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCryptoLib.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GoogleAPIClientForREST_Drive.o normal (in target 'GoogleAPIClientForREST_Drive' from project 'GoogleAPIClientForREST')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GoogleAPIClientForREST.build/Debug-iphoneos/GoogleAPIClientForREST_Drive.build/Objects-normal/arm64/GoogleAPIClientForREST_Drive.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GoogleAPIClientForREST.build/Debug-iphoneos/GoogleAPIClientForREST_Drive.build/Objects-normal/arm64/GoogleAPIClientForREST_Drive_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GoogleAPIClientForREST.build/Debug-iphoneos/GoogleAPIClientForREST_Drive.build/Objects-normal/arm64/GoogleAPIClientForREST_Drive_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GoogleAPIClientForREST_Drive.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CocoaLumberjackSwift.o (in target 'CocoaLumberjackSwift' from project 'CocoaLumberjack')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CocoaLumberjackSwift.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GoogleAPIClientForREST_Drive.o (in target 'GoogleAPIClientForREST_Drive' from project 'GoogleAPIClientForREST')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/GoogleAPIClientForREST_Drive.o
SwiftDriverJobDiscovery normal arm64 Compiling MicrosoftGraphAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftDriverJobDiscovery normal arm64 Compiling PCloudAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftDriverJobDiscovery normal arm64 Compiling BoxAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftDriverJobDiscovery normal arm64 Compiling GoogleDriveAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftDriverJobDiscovery normal arm64 Compiling VaultConfig.swift, VaultConfigHelper.swift, VaultFormat6ProviderDecorator.swift, VaultFormat6ShortenedNameCache.swift, VaultFormat6ShorteningProviderDecorator.swift, VaultFormat7ProviderDecorator.swift, VaultFormat7ShortenedNameCache.swift, VaultFormat7ShorteningProviderDecorator.swift, VaultFormat8ProviderDecorator.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftDriverJobDiscovery normal arm64 Compiling GoogleDriveCloudProvider.swift, GoogleDriveCredential.swift, GoogleDriveError.swift, GoogleDriveIdentifierCache.swift, GoogleDriveItem.swift, GoogleDriveSetup.swift, LocalFileSystemProvider.swift, CloudAccessDDLog.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftDriverJobDiscovery normal arm64 Compiling DropboxAuthenticator.swift (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
SwiftDriver\ Compilation CryptomatorCloudAccess normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptomatorCloudAccess -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjackSwiftSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjack.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/scrypt.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForRESTCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForREST_Drive.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/GRDB.swift/Sources/GRDBSQLite/module.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherFull.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/AppAuthCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/AppAuth.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios16.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/aws-sdk-ios-spm/DependantTargets/AWSS3-Target/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjackSwiftSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjack/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/cryptolib-swift/Sources/scrypt/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/GeneratedServices/Drive/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Full/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/FBLPromises/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS/Sources/AppAuthCore -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS/Sources/AppAuth -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling VaultFormat8ShorteningProviderDecorator.swift, VaultFormatError.swift, VaultProviderFactory.swift, DropboxClientSetup.swift, DropboxCloudProvider.swift, DropboxCredential.swift, DropboxError.swift, DropboxSetup.swift, GTLRDrive_File+CloudItemType.swift (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
SwiftDriver\ Compilation CryptomatorCloudAccessCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptomatorCloudAccessCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjackSwiftSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CocoaLumberjack.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/scrypt.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForRESTCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GoogleAPIClientForREST_Drive.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/GRDB.swift/Sources/GRDBSQLite/module.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/AppAuthCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherFull.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/GTMSessionFetcherCore.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios16.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/aws-sdk-ios-spm/DependantTargets/AWSS3-Target/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjackSwiftSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CocoaLumberjack/Sources/CocoaLumberjack/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/cryptolib-swift/Sources/scrypt/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/google-api-objectivec-client-for-rest/Sources/GeneratedServices/Drive/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/AppAuth-iOS/Sources/AppAuthCore -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Full/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/gtm-session-fetcher/Sources/Core/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/promises/Sources/FBLPromises/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.o normal (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios16.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.o
ExtractAppIntentsMetadata (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CryptomatorCloudAccessCore --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 16.0 --bundle-identifier spi-builder-workspace.CryptomatorCloudAccessCore --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.appintents --target-triple arm64-apple-ios16.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/CryptomatorCloudAccessCore.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/CryptomatorCloudAccessCore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccessCore.build/Objects-normal/arm64/CryptomatorCloudAccessCore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-03-17 13:44:17.242 appintentsmetadataprocessor[2542:12607] Starting appintentsmetadataprocessor export
2026-03-17 13:44:17.276 appintentsmetadataprocessor[2542:12607] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.o (in target 'CryptomatorCloudAccessCore' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccessCore.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.o normal (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios16.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.o
ExtractAppIntentsMetadata (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CryptomatorCloudAccess --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 16.0 --bundle-identifier spi-builder-workspace.CryptomatorCloudAccess --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.appintents --target-triple arm64-apple-ios16.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/CryptomatorCloudAccess.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/CryptomatorCloudAccess.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptomatorCloudAccess.build/Debug-iphoneos/CryptomatorCloudAccess.build/Objects-normal/arm64/CryptomatorCloudAccess.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-03-17 13:44:17.327 appintentsmetadataprocessor[2545:12622] Starting appintentsmetadataprocessor export
2026-03-17 13:44:17.360 appintentsmetadataprocessor[2545:12622] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.o (in target 'CryptomatorCloudAccess' from project 'CryptomatorCloudAccess')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptomatorCloudAccess.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "microsoft-authentication-library-for-objc",
"requirement" : {
"range" : [
{
"lower_bound" : "2.9.0",
"upper_bound" : "2.10.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/AzureAD/microsoft-authentication-library-for-objc.git"
},
{
"identity" : "aws-sdk-ios-spm",
"requirement" : {
"range" : [
{
"lower_bound" : "2.41.0",
"upper_bound" : "2.42.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/aws-amplify/aws-sdk-ios-spm.git"
},
{
"identity" : "cryptolib-swift",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "1.2.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/cryptomator/cryptolib-swift.git"
},
{
"identity" : "cocoalumberjack",
"requirement" : {
"range" : [
{
"lower_bound" : "3.9.0",
"upper_bound" : "3.10.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/CocoaLumberjack/CocoaLumberjack.git"
},
{
"identity" : "google-api-objectivec-client-for-rest",
"requirement" : {
"range" : [
{
"lower_bound" : "5.2.0",
"upper_bound" : "5.3.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/google/google-api-objectivec-client-for-rest.git"
},
{
"identity" : "gtmappauth",
"requirement" : {
"range" : [
{
"lower_bound" : "5.0.0",
"upper_bound" : "5.1.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/google/GTMAppAuth.git"
},
{
"identity" : "gtm-session-fetcher",
"requirement" : {
"range" : [
{
"lower_bound" : "3.5.0",
"upper_bound" : "3.6.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/google/gtm-session-fetcher.git"
},
{
"identity" : "promises",
"requirement" : {
"range" : [
{
"lower_bound" : "2.3.0",
"upper_bound" : "2.4.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/google/promises.git"
},
{
"identity" : "grdb.swift",
"requirement" : {
"range" : [
{
"lower_bound" : "7.10.0",
"upper_bound" : "7.11.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/groue/GRDB.swift.git"
},
{
"identity" : "appauth-ios",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "2.1.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/openid/AppAuth-iOS.git"
},
{
"identity" : "pcloud-sdk-swift",
"requirement" : {
"range" : [
{
"lower_bound" : "3.2.0",
"upper_bound" : "3.3.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pCloud/pcloud-sdk-swift.git"
},
{
"identity" : "dropbox-sdk-obj-c-spm",
"requirement" : {
"range" : [
{
"lower_bound" : "7.2.0",
"upper_bound" : "7.3.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/phil1995/dropbox-sdk-obj-c-spm.git"
},
{
"identity" : "msgraph-sdk-objc-spm",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "1.1.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/phil1995/msgraph-sdk-objc-spm.git"
},
{
"identity" : "msgraph-sdk-objc-models-spm",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "1.4.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/phil1995/msgraph-sdk-objc-models-spm.git"
},
{
"identity" : "box-swift-sdk-gen",
"requirement" : {
"exact" : [
"0.5.0-cryptomator"
]
},
"type" : "sourceControl",
"url" : "https://github.com/tobihagemann/box-swift-sdk-gen.git"
},
{
"identity" : "joseswift",
"requirement" : {
"exact" : [
"2.4.1-cryptomator"
]
},
"type" : "sourceControl",
"url" : "https://github.com/tobihagemann/JOSESwift.git"
}
],
"manifest_display_name" : "CryptomatorCloudAccess",
"name" : "CryptomatorCloudAccess",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
}
],
"products" : [
{
"name" : "CryptomatorCloudAccess",
"targets" : [
"CryptomatorCloudAccess"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "CryptomatorCloudAccessCore",
"targets" : [
"CryptomatorCloudAccessCore"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "CryptomatorCloudAccessTests",
"module_type" : "SwiftTarget",
"name" : "CryptomatorCloudAccessTests",
"path" : "Tests/CryptomatorCloudAccessTests",
"sources" : [
"API/CloudPathTests.swift",
"API/CloudProvider+ConvenienceTests.swift",
"API/NetworkConnectionErrorTests.swift",
"Common/DirectoryContentCacheMock.swift",
"Common/DirectoryContentCacheTests.swift",
"Crypto/CloudProviderMock.swift",
"Crypto/CryptorMock.swift",
"Crypto/DirectoryIdCacheTests.swift",
"Crypto/VaultConfigTests.swift",
"Crypto/VaultFormat6/VaultFormat6CloudProviderMock.swift",
"Crypto/VaultFormat6/VaultFormat6CloudProviderMockTests.swift",
"Crypto/VaultFormat6/VaultFormat6CryptorMock.swift",
"Crypto/VaultFormat6/VaultFormat6ProviderDecoratorTests.swift",
"Crypto/VaultFormat6/VaultFormat6ShortenedNameCacheTests.swift",
"Crypto/VaultFormat6/VaultFormat6ShorteningProviderDecoratorTests.swift",
"Crypto/VaultFormat7/VaultFormat7CloudProviderMock.swift",
"Crypto/VaultFormat7/VaultFormat7CloudProviderMockTests.swift",
"Crypto/VaultFormat7/VaultFormat7CryptorMock.swift",
"Crypto/VaultFormat7/VaultFormat7ProviderDecoratorTests.swift",
"Crypto/VaultFormat7/VaultFormat7ShortenedNameCacheTests.swift",
"Crypto/VaultFormat7/VaultFormat7ShorteningProviderDecoratorTests.swift",
"Crypto/VaultFormat8/VaultFormat8CryptorMock.swift",
"Crypto/VaultFormat8/VaultFormat8ProviderDecoratorTests.swift",
"Crypto/VaultProviderFactoryTests.swift",
"Dropbox/DropboxExponentialBackOffTests.swift",
"GoogleDrive/GoogleDriveCloudProviderTests.swift",
"GoogleDrive/GoogleDriveIdentifierCacheTests.swift",
"LocalFileSystem/LocalFileSystemTests.swift",
"MicrosoftGraph/MicrosoftGraphCloudProviderTests.swift",
"MicrosoftGraph/MicrosoftGraphIdentifierCacheTests.swift",
"PCloud/PCloudIdentifierCacheTests.swift",
"S3/S3CloudProviderTests.swift",
"WebDAV/CachedPropfindResponseParserTests.swift",
"WebDAV/PropfindResponseParserTests.swift",
"WebDAV/URLProtocolMock.swift",
"WebDAV/WebDAVAuthenticatorTests.swift",
"WebDAV/WebDAVClientMock.swift",
"WebDAV/WebDAVClientTests.swift",
"WebDAV/WebDAVProviderTests.swift",
"XCTAssertThrowsError+Async.swift"
],
"target_dependencies" : [
"CryptomatorCloudAccess"
],
"type" : "test"
},
{
"c99name" : "CryptomatorCloudAccessCore",
"module_type" : "SwiftTarget",
"name" : "CryptomatorCloudAccessCore",
"path" : "Sources/CryptomatorCloudAccess",
"product_dependencies" : [
"AWSCore",
"AWSS3",
"BoxSdkGen",
"CocoaLumberjackSwift",
"CryptomatorCryptoLib",
"GoogleAPIClientForREST_Drive",
"GRDB",
"GTMAppAuth",
"GTMSessionFetcher",
"JOSESwift",
"MSAL",
"MSGraphClientModels",
"MSGraphClientSDK",
"ObjectiveDropboxOfficial",
"PCloudSDKSwift",
"Promises"
],
"product_memberships" : [
"CryptomatorCloudAccess",
"CryptomatorCloudAccessCore"
],
"sources" : [
"API/CloudItemList.swift",
"API/CloudItemMetadata.swift",
"API/CloudItemType.swift",
"API/CloudPath+DatabaseValueConvertible.swift",
"API/CloudPath.swift",
"API/CloudProvider+Convenience.swift",
"API/CloudProvider.swift",
"API/CloudProviderError.swift",
"API/NetworkConnectionError.swift",
"Box/BoxCloudProvider.swift",
"Box/BoxCredential.swift",
"Box/BoxError.swift",
"Box/BoxIdentifierCache.swift",
"Box/BoxItem.swift",
"Box/BoxSetup.swift",
"Common/DirectoryContentCache.swift",
"Common/Promise+Async.swift",
"Crypto/DirectoryIdCache.swift",
"Crypto/VaultConfig.swift",
"Crypto/VaultConfigHelper.swift",
"Crypto/VaultFormat6/VaultFormat6ProviderDecorator.swift",
"Crypto/VaultFormat6/VaultFormat6ShortenedNameCache.swift",
"Crypto/VaultFormat6/VaultFormat6ShorteningProviderDecorator.swift",
"Crypto/VaultFormat7/VaultFormat7ProviderDecorator.swift",
"Crypto/VaultFormat7/VaultFormat7ShortenedNameCache.swift",
"Crypto/VaultFormat7/VaultFormat7ShorteningProviderDecorator.swift",
"Crypto/VaultFormat8/VaultFormat8ProviderDecorator.swift",
"Crypto/VaultFormat8/VaultFormat8ShorteningProviderDecorator.swift",
"Crypto/VaultFormatError.swift",
"Crypto/VaultProviderFactory.swift",
"Dropbox/DropboxClientSetup.swift",
"Dropbox/DropboxCloudProvider.swift",
"Dropbox/DropboxCredential.swift",
"Dropbox/DropboxError.swift",
"Dropbox/DropboxSetup.swift",
"GoogleDrive/GTLRDrive_File+CloudItemType.swift",
"GoogleDrive/GoogleDriveCloudProvider.swift",
"GoogleDrive/GoogleDriveCredential.swift",
"GoogleDrive/GoogleDriveError.swift",
"GoogleDrive/GoogleDriveIdentifierCache.swift",
"GoogleDrive/GoogleDriveItem.swift",
"GoogleDrive/GoogleDriveSetup.swift",
"LocalFileSystem/LocalFileSystemProvider.swift",
"Logging/CloudAccessDDLog.swift",
"Logging/HTTPDebugLogger.swift",
"MicrosoftGraph/MSClientFactory+UnauthenticatedClient.swift",
"MicrosoftGraph/MSGraphDriveItem+CloudItemType.swift",
"MicrosoftGraph/MicrosoftGraphAuthenticationProvider.swift",
"MicrosoftGraph/MicrosoftGraphCloudProvider.swift",
"MicrosoftGraph/MicrosoftGraphCredential.swift",
"MicrosoftGraph/MicrosoftGraphDiscovery.swift",
"MicrosoftGraph/MicrosoftGraphDrive.swift",
"MicrosoftGraph/MicrosoftGraphError.swift",
"MicrosoftGraph/MicrosoftGraphIdentifierCache.swift",
"MicrosoftGraph/MicrosoftGraphItem.swift",
"MicrosoftGraph/MicrosoftGraphSetup.swift",
"MicrosoftGraph/MicrosoftGraphSite.swift",
"MicrosoftGraph/MicrosoftGraphType.swift",
"MicrosoftGraph/URL+SharePointValidation.swift",
"PCloud/PCloudCloudProvider.swift",
"PCloud/PCloudCredential.swift",
"PCloud/PCloudError.swift",
"PCloud/PCloudIdentifierCache.swift",
"PCloud/PCloudItem.swift",
"PCloud/PCloudSetup.swift",
"PCloud/Task+Promises.swift",
"S3/AWSEndpoint+CustomRegionName.swift",
"S3/AWSS3+Promises.swift",
"S3/AWSS3TransferUtility+ForegroundSession.swift",
"S3/CustomAWSEndpointRegionNameStorage.swift",
"S3/S3Authenticator.swift",
"S3/S3CloudProvider.swift",
"S3/S3CopyTaskUtility.swift",
"S3/S3Credential.swift",
"WebDAV/Date+RFC822.swift",
"WebDAV/PropfindResponseParser.swift",
"WebDAV/TLSCertificate.swift",
"WebDAV/TLSCertificateValidator.swift",
"WebDAV/URLSession+Promises.swift",
"WebDAV/WebDAVAuthenticator.swift",
"WebDAV/WebDAVClient.swift",
"WebDAV/WebDAVCredential.swift",
"WebDAV/WebDAVProvider.swift",
"WebDAV/WebDAVSession.swift"
],
"type" : "library"
},
{
"c99name" : "CryptomatorCloudAccess",
"module_type" : "SwiftTarget",
"name" : "CryptomatorCloudAccess",
"path" : "Sources/CryptomatorCloudAccess",
"product_dependencies" : [
"AppAuth"
],
"product_memberships" : [
"CryptomatorCloudAccess"
],
"sources" : [
"Box/BoxAuthenticator.swift",
"Dropbox/DropboxAuthenticator.swift",
"GoogleDrive/GoogleDriveAuthenticator.swift",
"MicrosoftGraph/MicrosoftGraphAuthenticator.swift",
"PCloud/PCloudAuthenticator.swift"
],
"target_dependencies" : [
"CryptomatorCloudAccessCore"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.