Build Information
Successful build of llbuild2, reference main (67d125
), with Swift 6.1 for macOS (SPM) on 10 Sep 2025 01:29:01 UTC.
Swift 6 data race errors: 40
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
210 | case .stdout:
211 | async let localWriteResult = stdoutWriter?.write(contentsOf: chunk)
212 | async let streamingWriteResult: () = stdoutStreamer(chunk)
| |- warning: sending 'stdoutStreamer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stdoutStreamer' into async let risks causing data races between nonisolated and task-isolated uses
213 | _ = try await (localWriteResult, streamingWriteResult)
214 | case .stderr:
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:216:79: warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
214 | case .stderr:
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
| |- warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stdoutWriter' into async let risks causing data races between nonisolated and task-isolated uses
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
218 | _ = try await (localWriteResult, streamingWriteResult)
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:216:120: warning: sending 'stderrWriter' risks causing data races; this is an error in the Swift 6 language mode
214 | case .stderr:
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
| |- warning: sending 'stderrWriter' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stderrWriter' into async let risks causing data races between nonisolated and task-isolated uses
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
218 | _ = try await (localWriteResult, streamingWriteResult)
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:217:62: warning: sending 'stderrStreamer' risks causing data races; this is an error in the Swift 6 language mode
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
| |- warning: sending 'stderrStreamer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stderrStreamer' into async let risks causing data races between nonisolated and task-isolated uses
218 | _ = try await (localWriteResult, streamingWriteResult)
219 | }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:211:54: warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
209 | switch source {
210 | case .stdout:
211 | async let localWriteResult = stdoutWriter?.write(contentsOf: chunk)
| |- warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stdoutWriter' into async let risks causing data races between nonisolated and task-isolated uses
212 | async let streamingWriteResult: () = stdoutStreamer(chunk)
213 | _ = try await (localWriteResult, streamingWriteResult)
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:212:62: warning: sending 'stdoutStreamer' risks causing data races; this is an error in the Swift 6 language mode
210 | case .stdout:
211 | async let localWriteResult = stdoutWriter?.write(contentsOf: chunk)
212 | async let streamingWriteResult: () = stdoutStreamer(chunk)
| |- warning: sending 'stdoutStreamer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stdoutStreamer' into async let risks causing data races between nonisolated and task-isolated uses
213 | _ = try await (localWriteResult, streamingWriteResult)
214 | case .stderr:
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:216:79: warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
214 | case .stderr:
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
| |- warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stdoutWriter' into async let risks causing data races between nonisolated and task-isolated uses
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
218 | _ = try await (localWriteResult, streamingWriteResult)
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:216:120: warning: sending 'stderrWriter' risks causing data races; this is an error in the Swift 6 language mode
214 | case .stderr:
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
| |- warning: sending 'stderrWriter' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stderrWriter' into async let risks causing data races between nonisolated and task-isolated uses
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
218 | _ = try await (localWriteResult, streamingWriteResult)
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:217:62: warning: sending 'stderrStreamer' risks causing data races; this is an error in the Swift 6 language mode
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
| |- warning: sending 'stderrStreamer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stderrStreamer' into async let risks causing data races between nonisolated and task-isolated uses
218 | _ = try await (localWriteResult, streamingWriteResult)
219 | }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:211:54: warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
209 | switch source {
210 | case .stdout:
211 | async let localWriteResult = stdoutWriter?.write(contentsOf: chunk)
| |- warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stdoutWriter' into async let risks causing data races between nonisolated and task-isolated uses
212 | async let streamingWriteResult: () = stdoutStreamer(chunk)
213 | _ = try await (localWriteResult, streamingWriteResult)
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:212:62: warning: sending 'stdoutStreamer' risks causing data races; this is an error in the Swift 6 language mode
210 | case .stdout:
211 | async let localWriteResult = stdoutWriter?.write(contentsOf: chunk)
212 | async let streamingWriteResult: () = stdoutStreamer(chunk)
| |- warning: sending 'stdoutStreamer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stdoutStreamer' into async let risks causing data races between nonisolated and task-isolated uses
213 | _ = try await (localWriteResult, streamingWriteResult)
214 | case .stderr:
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:216:79: warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
214 | case .stderr:
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
| |- warning: sending 'stdoutWriter' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stdoutWriter' into async let risks causing data races between nonisolated and task-isolated uses
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
218 | _ = try await (localWriteResult, streamingWriteResult)
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:216:120: warning: sending 'stderrWriter' risks causing data races; this is an error in the Swift 6 language mode
214 | case .stderr:
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
| |- warning: sending 'stderrWriter' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stderrWriter' into async let risks causing data races between nonisolated and task-isolated uses
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
218 | _ = try await (localWriteResult, streamingWriteResult)
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:217:62: warning: sending 'stderrStreamer' risks causing data races; this is an error in the Swift 6 language mode
215 | // I wish Swift let you make references to structs; that would make this a lot cleaner/simpler.
216 | async let localWriteResult = (areLocalOutputsMerged ? stdoutWriter?.write(contentsOf: chunk) : stderrWriter?.write(contentsOf: chunk))
217 | async let streamingWriteResult: () = stderrStreamer(chunk)
| |- warning: sending 'stderrStreamer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'stderrStreamer' into async let risks causing data races between nonisolated and task-isolated uses
218 | _ = try await (localWriteResult, streamingWriteResult)
219 | }
[1546/1650] Compiling GRPC UnaryCall.swift
[1547/1650] Compiling GRPC ClientConnection.swift
[1548/1650] Compiling GRPC ClientConnectionConfiguration+NIOSSL.swift
[1549/1650] Compiling GRPC ClientErrorDelegate.swift
[1550/1650] Compiling GRPC CoalescingLengthPrefixedMessageWriter.swift
[1551/1650] Compiling GRPC CompressionAlgorithm.swift
[1552/1650] Compiling GRPC DecompressionLimit.swift
[1553/1650] Compiling GRPC MessageEncoding.swift
[1554/1650] Compiling GRPC Zlib.swift
[1555/1650] Compiling GRPC ConnectionBackoff.swift
[1556/1650] Compiling GRPC ConnectionKeepalive.swift
[1557/1650] Compiling GRPC ConnectionManager+Delegates.swift
[1558/1650] Compiling GRPC ConnectionManager.swift
[1559/1650] Compiling GRPC ConnectionManagerChannelProvider.swift
[1560/1650] Compiling GRPC BidirectionalStreamingServerHandler.swift
[1561/1650] Compiling GRPC ClientStreamingServerHandler.swift
[1562/1650] Compiling GRPC ServerHandlerProtocol.swift
[1563/1650] Compiling GRPC ServerStreamingServerHandler.swift
[1564/1650] Compiling GRPC UnaryServerHandler.swift
[1565/1650] Compiling GRPC CallOptions.swift
[1566/1650] Compiling GRPC BidirectionalStreamingCall.swift
[1567/1650] Compiling GRPC Call.swift
[1568/1650] Compiling GRPC CallDetails.swift
[1569/1650] Compiling GRPC ClientCall.swift
[1570/1650] Compiling GRPC ClientStreamingCall.swift
[1571/1650] Compiling GRPC LazyEventLoopPromise.swift
[1572/1650] Compiling GRPC ResponseContainers.swift
[1573/1650] Compiling GRPC ResponsePartContainer.swift
[1574/1650] Compiling GRPC ServerStreamingCall.swift
[1575/1650] Compiling GRPC GRPCAsyncClientStreamingCall.swift
[1576/1650] Compiling GRPC GRPCAsyncRequestStream.swift
[1577/1650] Compiling GRPC GRPCAsyncRequestStreamWriter.swift
[1578/1650] Compiling GRPC GRPCAsyncResponseStream.swift
[1579/1650] Compiling GRPC GRPCAsyncResponseStreamWriter.swift
[1580/1650] Compiling GRPC GRPCAsyncSequenceProducerDelegate.swift
[1581/1650] Compiling GRPC GRPCAsyncServerCallContext.swift
[1582/1650] Compiling GRPC GRPCAsyncServerHandler.swift
[1583/1650] Compiling GRPC GRPCAsyncServerStreamingCall.swift
[1584/1650] Compiling GRPC GRPCAsyncUnaryCall.swift
[1585/1650] Compiling GRPC GRPCAsyncWriterSinkDelegate.swift
[1586/1650] Compiling GRPC GRPCChannel+AsyncAwaitSupport.swift
[1587/1650] Compiling GRPC GRPCClient+AsyncAwaitSupport.swift
[1588/1650] Compiling GRPC GRPCSendable.swift
[1589/1650] Compiling GRPC NIOAsyncWrappers.swift
[1590/1650] Emitting module llbuild2
[1591/1650] Compiling llbuild2 Reexport.swift
[1592/1650] Compiling GRPC ConnectionManagerID.swift
[1593/1650] Compiling GRPC ConnectionPool+PerConnectionState.swift
[1594/1650] Compiling GRPC ConnectionPool+Waiter.swift
[1595/1650] Compiling GRPC ConnectionPool.swift
[1596/1650] Compiling GRPC ConnectionPoolIDs.swift
[1597/1650] Compiling GRPC GRPCChannelPool.swift
[1598/1650] Compiling GRPC PoolManager.swift
[1599/1650] Compiling GRPC PoolManagerStateMachine+PerPoolState.swift
[1600/1650] Compiling GRPC PoolManagerStateMachine.swift
[1601/1650] Compiling GRPC PooledChannel.swift
[1602/1650] Compiling GRPC StreamLender.swift
[1603/1650] Compiling GRPC ConnectivityState.swift
[1604/1650] Compiling GRPC DebugOnly.swift
[1605/1650] Compiling GRPC DelegatingErrorHandler.swift
[1613/1650] Compiling GRPC GRPCClient.swift
[1614/1650] Compiling GRPC GRPCClientChannelHandler.swift
[1615/1650] Compiling GRPC GRPCClientStateMachine.swift
[1616/1650] Compiling GRPC GRPCContentType.swift
[1617/1650] Compiling GRPC GRPCError.swift
[1618/1650] Compiling GRPC GRPCHeaderName.swift
[1619/1650] Compiling GRPC GRPCIdleHandler.swift
[1620/1650] Compiling GRPC MessageEncodingHeaderValidator.swift
[1621/1650] Compiling GRPC PlatformSupport.swift
[1622/1650] Compiling GRPC ReadWriteStates.swift
[1623/1650] Compiling GRPC Ref.swift
[1624/1650] Compiling GRPC Serialization.swift
[1625/1650] Compiling GRPC Server+NIOSSL.swift
[1626/1650] Compiling GRPC Server.swift
[1627/1650] Compiling GRPC ServerBuilder+NIOSSL.swift
[1628/1650] Compiling GRPC ServerBuilder.swift
[1629/1650] Compiling GRPC ServerCallContext.swift
[1630/1650] Compiling GRPC StreamingResponseCallContext.swift
[1631/1650] Compiling GRPC UnaryResponseCallContext.swift
[1632/1650] Compiling GRPC ServerChannelErrorHandler.swift
[1633/1650] Compiling GRPC ServerErrorDelegate.swift
[1634/1650] Compiling GRPC GRPCIdleHandlerStateMachine.swift
[1635/1650] Compiling GRPC GRPCKeepaliveHandlers.swift
[1636/1650] Compiling GRPC GRPCPayload.swift
[1637/1650] Compiling GRPC GRPCServerPipelineConfigurator.swift
[1638/1650] Compiling GRPC GRPCServerRequestRoutingHandler.swift
[1639/1650] Compiling GRPC GRPCServiceDescription.swift
[1640/1650] Compiling GRPC GRPCStatus.swift
[1641/1650] Compiling GRPC GRPCStatusAndMetadata.swift
[1642/1650] Compiling GRPC GRPCStatusMessageMarshaller.swift
[1643/1650] Compiling GRPC GRPCTLSConfiguration.swift
[1644/1650] Compiling GRPC GRPCTimeout.swift
[1645/1650] Compiling GRPC GRPCWebToHTTP2ServerCodec.swift
[1646/1650] Compiling GRPC HTTP2ToRawGRPCServerCodec.swift
[1647/1650] Compiling GRPC HTTP2ToRawGRPCStateMachine.swift
[1648/1669] Compiling BazelRemoteAPI bytestream.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:442:80: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
440 | #endif // compiler(>=5.6)
441 |
442 | public protocol Google_Longrunning_OperationsClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
443 |
444 | /// - Returns: Interceptors to use when invoking 'listOperations'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:643:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
641 | /// Lists operations that match the specified filter in the request. If the
642 | /// server doesn't support this method, it returns `UNIMPLEMENTED`.
643 | @Sendable func listOperations(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
644 | request: Google_Longrunning_ListOperationsRequest,
645 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:651:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
649 | /// method to poll the operation result at intervals as recommended by the API
650 | /// service.
651 | @Sendable func getOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
652 | request: Google_Longrunning_GetOperationRequest,
653 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:660:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
658 | /// operation. If the server doesn't support this method, it returns
659 | /// `google.rpc.Code.UNIMPLEMENTED`.
660 | @Sendable func deleteOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
661 | request: Google_Longrunning_DeleteOperationRequest,
662 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:676:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
674 | /// [google.rpc.Status.code][google.rpc.Status.code] of `1`, corresponding to
675 | /// `Code.CANCELLED`.
676 | @Sendable func cancelOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
677 | request: Google_Longrunning_CancelOperationRequest,
678 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:690:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
688 | /// state before the specified timeout (including immediately), meaning even an
689 | /// immediate response is no guarantee that the operation is done.
690 | @Sendable func waitOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
691 | request: Google_Longrunning_WaitOperationRequest,
692 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1649/1669] Compiling BazelRemoteAPI operations.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:442:80: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
440 | #endif // compiler(>=5.6)
441 |
442 | public protocol Google_Longrunning_OperationsClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
443 |
444 | /// - Returns: Interceptors to use when invoking 'listOperations'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:643:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
641 | /// Lists operations that match the specified filter in the request. If the
642 | /// server doesn't support this method, it returns `UNIMPLEMENTED`.
643 | @Sendable func listOperations(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
644 | request: Google_Longrunning_ListOperationsRequest,
645 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:651:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
649 | /// method to poll the operation result at intervals as recommended by the API
650 | /// service.
651 | @Sendable func getOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
652 | request: Google_Longrunning_GetOperationRequest,
653 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:660:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
658 | /// operation. If the server doesn't support this method, it returns
659 | /// `google.rpc.Code.UNIMPLEMENTED`.
660 | @Sendable func deleteOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
661 | request: Google_Longrunning_DeleteOperationRequest,
662 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:676:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
674 | /// [google.rpc.Status.code][google.rpc.Status.code] of `1`, corresponding to
675 | /// `Code.CANCELLED`.
676 | @Sendable func cancelOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
677 | request: Google_Longrunning_CancelOperationRequest,
678 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:690:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
688 | /// state before the specified timeout (including immediately), meaning even an
689 | /// immediate response is no guarantee that the operation is done.
690 | @Sendable func waitOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
691 | request: Google_Longrunning_WaitOperationRequest,
692 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1650/1669] Compiling BazelRemoteAPI launch_stage.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/launch_stage.pb.swift:126:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 | extension Google_Api_LaunchStage: CaseIterable {
125 | // The compiler won't synthesize support with the UNRECOGNIZED case.
126 | public static var allCases: [Google_Api_LaunchStage] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | .unspecified,
128 | .unimplemented,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:390:79: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
388 | #endif // compiler(>=5.6)
389 |
390 | public protocol Google_Bytestream_ByteStreamClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
391 |
392 | /// - Returns: Interceptors to use when invoking 'read'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:588:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
586 | /// of bytes. The bytes are returned in a sequence of responses, and the
587 | /// responses are delivered as the results of a server-side streaming RPC.
588 | @Sendable func read(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
589 | request: Google_Bytestream_ReadRequest,
590 | responseStream: GRPCAsyncResponseStreamWriter<Google_Bytestream_ReadResponse>,
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:616:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
614 | /// service was able to commit and whether the service views the resource as
615 | /// `complete` or not.
616 | @Sendable func write(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
617 | requestStream: GRPCAsyncRequestStream<Google_Bytestream_WriteRequest>,
618 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:635:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
633 | /// resource name, the sequence of returned `committed_size` values will be
634 | /// non-decreasing.
635 | @Sendable func queryWriteStatus(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
636 | request: Google_Bytestream_QueryWriteStatusRequest,
637 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1651/1669] Compiling BazelRemoteAPI bytestream.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/launch_stage.pb.swift:126:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 | extension Google_Api_LaunchStage: CaseIterable {
125 | // The compiler won't synthesize support with the UNRECOGNIZED case.
126 | public static var allCases: [Google_Api_LaunchStage] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | .unspecified,
128 | .unimplemented,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:390:79: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
388 | #endif // compiler(>=5.6)
389 |
390 | public protocol Google_Bytestream_ByteStreamClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
391 |
392 | /// - Returns: Interceptors to use when invoking 'read'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:588:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
586 | /// of bytes. The bytes are returned in a sequence of responses, and the
587 | /// responses are delivered as the results of a server-side streaming RPC.
588 | @Sendable func read(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
589 | request: Google_Bytestream_ReadRequest,
590 | responseStream: GRPCAsyncResponseStreamWriter<Google_Bytestream_ReadResponse>,
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:616:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
614 | /// service was able to commit and whether the service views the resource as
615 | /// `complete` or not.
616 | @Sendable func write(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
617 | requestStream: GRPCAsyncRequestStream<Google_Bytestream_WriteRequest>,
618 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:635:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
633 | /// resource name, the sequence of returned `committed_size` values will be
634 | /// non-decreasing.
635 | @Sendable func queryWriteStatus(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
636 | request: Google_Bytestream_QueryWriteStatusRequest,
637 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1652/1669] Compiling BazelRemoteAPI operations.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/rpc/code.pb.swift:258:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
256 | extension Google_Rpc_Code: CaseIterable {
257 | // The compiler won't synthesize support with the UNRECOGNIZED case.
258 | public static var allCases: [Google_Rpc_Code] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
259 | .ok,
260 | .cancelled,
[1653/1669] Compiling BazelRemoteAPI code.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/rpc/code.pb.swift:258:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
256 | extension Google_Rpc_Code: CaseIterable {
257 | // The compiler won't synthesize support with the UNRECOGNIZED case.
258 | public static var allCases: [Google_Rpc_Code] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
259 | .ok,
260 | .cancelled,
[1654/1669] Compiling BazelRemoteAPI semver.pb.swift
[1655/1669] Compiling BazelRemoteAPI annotations.pb.swift
[1656/1669] Compiling BazelRemoteAPI error_details.pb.swift
[1657/1669] Compiling BazelRemoteAPI http.pb.2.swift
[1658/1671] Compiling BazelRemoteAPI status.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:11:39: warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
9 | // Type aliases to drop the autogenerated prefix which is not really required since we're keeping the generated code in its own target.
10 |
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
| |- warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
| `- note: use 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient' instead
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:13:52: warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
| |- warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
| `- note: use 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient' instead
14 | public typealias ServerCapabilities = Build_Bazel_Remote_Execution_V2_ServerCapabilities
15 |
[1659/1671] Compiling BazelRemoteAPI Typealiases.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:11:39: warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
9 | // Type aliases to drop the autogenerated prefix which is not really required since we're keeping the generated code in its own target.
10 |
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
| |- warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
| `- note: use 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient' instead
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:13:52: warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
| |- warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
| `- note: use 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient' instead
14 | public typealias ServerCapabilities = Build_Bazel_Remote_Execution_V2_ServerCapabilities
15 |
[1660/1671] Emitting module BazelRemoteAPI
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:316:84: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
314 | #endif // compiler(>=5.6)
315 |
316 | public protocol Build_Bazel_Remote_Asset_V1_FetchClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
317 |
318 | /// - Returns: Interceptors to use when invoking 'fetchBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:613:83: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
611 | #endif // compiler(>=5.6)
612 |
613 | public protocol Build_Bazel_Remote_Asset_V1_PushClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
614 |
615 | /// - Returns: Interceptors to use when invoking 'pushBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:832:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
830 | /// `qualifiers.name` and a `description` of `"{qualifier}" not supported`
831 | /// indicating the name of the unsupported qualifier.
832 | @Sendable func fetchBlob(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
833 | request: Build_Bazel_Remote_Asset_V1_FetchBlobRequest,
834 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:837:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
835 | ) async throws -> Build_Bazel_Remote_Asset_V1_FetchBlobResponse
836 |
837 | @Sendable func fetchDirectory(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
838 | request: Build_Bazel_Remote_Asset_V1_FetchDirectoryRequest,
839 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1060:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1058 | /// * `INTERNAL`: An internal error occurred while performing the operation.
1059 | /// The client should retry.
1060 | @Sendable func pushBlob(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1061 | request: Build_Bazel_Remote_Asset_V1_PushBlobRequest,
1062 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1065:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1063 | ) async throws -> Build_Bazel_Remote_Asset_V1_PushBlobResponse
1064 |
1065 | @Sendable func pushDirectory(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1066 | request: Build_Bazel_Remote_Asset_V1_PushDirectoryRequest,
1067 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:353:92: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
351 | #endif // compiler(>=5.6)
352 |
353 | public protocol Build_Bazel_Remote_Execution_V2_ExecutionClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
354 |
355 | /// - Returns: Interceptors to use when invoking 'execute'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:664:94: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
662 | #endif // compiler(>=5.6)
663 |
664 | public protocol Build_Bazel_Remote_Execution_V2_ActionCacheClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
665 |
666 | /// - Returns: Interceptors to use when invoking 'getActionResult'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1398:108: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1396 | #endif // compiler(>=5.6)
1397 |
1398 | public protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
1399 |
1400 | /// - Returns: Interceptors to use when invoking 'findMissingBlobs'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1637:95: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1635 | #endif // compiler(>=5.6)
1636 |
1637 | public protocol Build_Bazel_Remote_Execution_V2_CapabilitiesClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
1638 |
1639 | /// - Returns: Interceptors to use when invoking 'getCapabilities'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1892:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1890 | /// multiple times, potentially in parallel. These redundant executions MAY
1891 | /// continue to run, even if the operation is completed.
1892 | @Sendable func execute(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1893 | request: Build_Bazel_Remote_Execution_V2_ExecuteRequest,
1894 | responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1912:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1910 | /// Operations API DeleteOperation method and it was called for the current
1911 | /// execution. The client should call `Execute` to retry.
1912 | @Sendable func waitExecution(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1913 | request: Build_Bazel_Remote_Execution_V2_WaitExecutionRequest,
1914 | responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2129:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2127 | ///
2128 | /// * `NOT_FOUND`: The requested `ActionResult` is not in the cache.
2129 | @Sendable func getActionResult(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2130 | request: Build_Bazel_Remote_Execution_V2_GetActionResultRequest,
2131 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2153:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2151 | /// * `RESOURCE_EXHAUSTED`: There is insufficient storage space to add the
2152 | /// entry to the cache.
2153 | @Sendable func updateActionResult(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2154 | request: Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest,
2155 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2705:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2703 | ///
2704 | /// There are no method-specific errors.
2705 | @Sendable func findMissingBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2706 | request: Build_Bazel_Remote_Execution_V2_FindMissingBlobsRequest,
2707 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2734:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2732 | /// [Digest][build.bazel.remote.execution.v2.Digest] does not match the
2733 | /// provided data.
2734 | @Sendable func batchUpdateBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2735 | request: Build_Bazel_Remote_Execution_V2_BatchUpdateBlobsRequest,
2736 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2759:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2757 | /// Every error on individual read will be returned in the corresponding digest
2758 | /// status.
2759 | @Sendable func batchReadBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2760 | request: Build_Bazel_Remote_Execution_V2_BatchReadBlobsRequest,
2761 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2787:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2785 | ///
2786 | /// * `NOT_FOUND`: The requested tree root is not present in the CAS.
2787 | @Sendable func getTree(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2788 | request: Build_Bazel_Remote_Execution_V2_GetTreeRequest,
2789 | responseStream: GRPCAsyncResponseStreamWriter<Build_Bazel_Remote_Execution_V2_GetTreeResponse>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2990:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2988 | ///
2989 | /// There are no method-specific errors.
2990 | @Sendable func getCapabilities(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2991 | request: Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest,
2992 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:405:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | extension Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat: CaseIterable {
404 | // The compiler won't synthesize support with the UNRECOGNIZED case.
405 | public static var allCases: [Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 | .treeOnly,
407 | .directoryOnly,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:1668:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1666 | extension Build_Bazel_Remote_Execution_V2_ExecutionStage.Value: CaseIterable {
1667 | // The compiler won't synthesize support with the UNRECOGNIZED case.
1668 | public static var allCases: [Build_Bazel_Remote_Execution_V2_ExecutionStage.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1669 | .unknown,
1670 | .cacheCheck,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2440:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2438 | extension Build_Bazel_Remote_Execution_V2_DigestFunction.Value: CaseIterable {
2439 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2440 | public static var allCases: [Build_Bazel_Remote_Execution_V2_DigestFunction.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2441 | .unknown,
2442 | .sha256,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2560:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2558 | extension Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value: CaseIterable {
2559 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2560 | public static var allCases: [Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2561 | .unknown,
2562 | .disallowed,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2632:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2630 | extension Build_Bazel_Remote_Execution_V2_Compressor.Value: CaseIterable {
2631 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2632 | public static var allCases: [Build_Bazel_Remote_Execution_V2_Compressor.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2633 | .identity,
2634 | .zstd,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:3522:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
3506 | ]
3507 |
3508 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
3509 | var _worker: String = String()
3510 | var _queuedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil
:
3520 | var _auxiliaryMetadata: [SwiftProtobuf.Google_Protobuf_Any] = []
3521 |
3522 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3523 |
3524 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4154:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4145 | ]
4146 |
4147 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4148 | var _result: Build_Bazel_Remote_Execution_V2_ActionResult? = nil
4149 | var _cachedResult: Bool = false
:
4152 | var _message: String = String()
4153 |
4154 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4155 |
4156 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4447:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4438 | ]
4439 |
4440 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4441 | var _instanceName: String = String()
4442 | var _actionDigest: Build_Bazel_Remote_Execution_V2_Digest? = nil
:
4445 | var _digestFunction: Build_Bazel_Remote_Execution_V2_DigestFunction.Value = .unknown
4446 |
4447 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4448 |
4449 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:5055:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
5046 | ]
5047 |
5048 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
5049 | var _cacheCapabilities: Build_Bazel_Remote_Execution_V2_CacheCapabilities? = nil
5050 | var _executionCapabilities: Build_Bazel_Remote_Execution_V2_ExecutionCapabilities? = nil
:
5053 | var _highApiVersion: Build_Bazel_Semver_SemVer? = nil
5054 |
5055 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5056 |
5057 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:321:99: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
319 | #endif // compiler(>=5.6)
320 |
321 | public protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
322 |
323 | /// - Returns: Interceptors to use when invoking 'createLogStream'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:525:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
523 | /// Callers of CreateLogStream are expected to NOT publish the
524 | /// `write_resource_name`.
525 | @Sendable func createLogStream(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
526 | request: Build_Bazel_Remote_Logstream_V1_CreateLogStreamRequest,
527 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:105:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
103 | extension Google_Api_ClientLibraryOrganization: CaseIterable {
104 | // The compiler won't synthesize support with the UNRECOGNIZED case.
105 | public static var allCases: [Google_Api_ClientLibraryOrganization] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | .unspecified,
107 | .cloud,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:163:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 | extension Google_Api_ClientLibraryDestination: CaseIterable {
162 | // The compiler won't synthesize support with the UNRECOGNIZED case.
163 | public static var allCases: [Google_Api_ClientLibraryDestination] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | .unspecified,
165 | .github,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:1200:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
1185 | ]
1186 |
1187 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
1188 | var _version: String = String()
1189 | var _launchStage: Google_Api_LaunchStage = .unspecified
:
1198 | var _goSettings: Google_Api_GoSettings? = nil
1199 |
1200 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1201 |
1202 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/launch_stage.pb.swift:126:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 | extension Google_Api_LaunchStage: CaseIterable {
125 | // The compiler won't synthesize support with the UNRECOGNIZED case.
126 | public static var allCases: [Google_Api_LaunchStage] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 | .unspecified,
128 | .unimplemented,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:390:79: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
388 | #endif // compiler(>=5.6)
389 |
390 | public protocol Google_Bytestream_ByteStreamClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
391 |
392 | /// - Returns: Interceptors to use when invoking 'read'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:588:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
586 | /// of bytes. The bytes are returned in a sequence of responses, and the
587 | /// responses are delivered as the results of a server-side streaming RPC.
588 | @Sendable func read(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
589 | request: Google_Bytestream_ReadRequest,
590 | responseStream: GRPCAsyncResponseStreamWriter<Google_Bytestream_ReadResponse>,
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:616:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
614 | /// service was able to commit and whether the service views the resource as
615 | /// `complete` or not.
616 | @Sendable func write(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
617 | requestStream: GRPCAsyncRequestStream<Google_Bytestream_WriteRequest>,
618 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:635:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
633 | /// resource name, the sequence of returned `committed_size` values will be
634 | /// non-decreasing.
635 | @Sendable func queryWriteStatus(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
636 | request: Google_Bytestream_QueryWriteStatusRequest,
637 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:442:80: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
440 | #endif // compiler(>=5.6)
441 |
442 | public protocol Google_Longrunning_OperationsClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
443 |
444 | /// - Returns: Interceptors to use when invoking 'listOperations'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:643:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
641 | /// Lists operations that match the specified filter in the request. If the
642 | /// server doesn't support this method, it returns `UNIMPLEMENTED`.
643 | @Sendable func listOperations(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
644 | request: Google_Longrunning_ListOperationsRequest,
645 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:651:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
649 | /// method to poll the operation result at intervals as recommended by the API
650 | /// service.
651 | @Sendable func getOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
652 | request: Google_Longrunning_GetOperationRequest,
653 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:660:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
658 | /// operation. If the server doesn't support this method, it returns
659 | /// `google.rpc.Code.UNIMPLEMENTED`.
660 | @Sendable func deleteOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
661 | request: Google_Longrunning_DeleteOperationRequest,
662 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:676:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
674 | /// [google.rpc.Status.code][google.rpc.Status.code] of `1`, corresponding to
675 | /// `Code.CANCELLED`.
676 | @Sendable func cancelOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
677 | request: Google_Longrunning_CancelOperationRequest,
678 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:690:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
688 | /// state before the specified timeout (including immediately), meaning even an
689 | /// immediate response is no guarantee that the operation is done.
690 | @Sendable func waitOperation(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
691 | request: Google_Longrunning_WaitOperationRequest,
692 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/rpc/code.pb.swift:258:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
256 | extension Google_Rpc_Code: CaseIterable {
257 | // The compiler won't synthesize support with the UNRECOGNIZED case.
258 | public static var allCases: [Google_Rpc_Code] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
259 | .ok,
260 | .cancelled,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:11:39: warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
9 | // Type aliases to drop the autogenerated prefix which is not really required since we're keeping the generated code in its own target.
10 |
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
| |- warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
| `- note: use 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient' instead
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:13:52: warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
| |- warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
| `- note: use 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient' instead
14 | public typealias ServerCapabilities = Build_Bazel_Remote_Execution_V2_ServerCapabilities
15 |
[1661/1671] Compiling BazelRemoteAPI client.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:105:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
103 | extension Google_Api_ClientLibraryOrganization: CaseIterable {
104 | // The compiler won't synthesize support with the UNRECOGNIZED case.
105 | public static var allCases: [Google_Api_ClientLibraryOrganization] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | .unspecified,
107 | .cloud,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:163:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 | extension Google_Api_ClientLibraryDestination: CaseIterable {
162 | // The compiler won't synthesize support with the UNRECOGNIZED case.
163 | public static var allCases: [Google_Api_ClientLibraryDestination] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | .unspecified,
165 | .github,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:1200:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
1185 | ]
1186 |
1187 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
1188 | var _version: String = String()
1189 | var _launchStage: Google_Api_LaunchStage = .unspecified
:
1198 | var _goSettings: Google_Api_GoSettings? = nil
1199 |
1200 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1201 |
1202 | private init() {}
[1662/1671] Compiling BazelRemoteAPI http.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:105:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
103 | extension Google_Api_ClientLibraryOrganization: CaseIterable {
104 | // The compiler won't synthesize support with the UNRECOGNIZED case.
105 | public static var allCases: [Google_Api_ClientLibraryOrganization] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | .unspecified,
107 | .cloud,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:163:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 | extension Google_Api_ClientLibraryDestination: CaseIterable {
162 | // The compiler won't synthesize support with the UNRECOGNIZED case.
163 | public static var allCases: [Google_Api_ClientLibraryDestination] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | .unspecified,
165 | .github,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:1200:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
1185 | ]
1186 |
1187 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
1188 | var _version: String = String()
1189 | var _launchStage: Google_Api_LaunchStage = .unspecified
:
1198 | var _goSettings: Google_Api_GoSettings? = nil
1199 |
1200 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1201 |
1202 | private init() {}
[1663/1671] Compiling BazelRemoteAPI remote_logstream.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:321:99: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
319 | #endif // compiler(>=5.6)
320 |
321 | public protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
322 |
323 | /// - Returns: Interceptors to use when invoking 'createLogStream'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:525:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
523 | /// Callers of CreateLogStream are expected to NOT publish the
524 | /// `write_resource_name`.
525 | @Sendable func createLogStream(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
526 | request: Build_Bazel_Remote_Logstream_V1_CreateLogStreamRequest,
527 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1664/1671] Compiling BazelRemoteAPI remote_logstream.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:321:99: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
319 | #endif // compiler(>=5.6)
320 |
321 | public protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
322 |
323 | /// - Returns: Interceptors to use when invoking 'createLogStream'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:525:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
523 | /// Callers of CreateLogStream are expected to NOT publish the
524 | /// `write_resource_name`.
525 | @Sendable func createLogStream(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
526 | request: Build_Bazel_Remote_Logstream_V1_CreateLogStreamRequest,
527 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1665/1671] Compiling BazelRemoteAPI remote_execution.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:353:92: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
351 | #endif // compiler(>=5.6)
352 |
353 | public protocol Build_Bazel_Remote_Execution_V2_ExecutionClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
354 |
355 | /// - Returns: Interceptors to use when invoking 'execute'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:664:94: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
662 | #endif // compiler(>=5.6)
663 |
664 | public protocol Build_Bazel_Remote_Execution_V2_ActionCacheClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
665 |
666 | /// - Returns: Interceptors to use when invoking 'getActionResult'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1398:108: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1396 | #endif // compiler(>=5.6)
1397 |
1398 | public protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
1399 |
1400 | /// - Returns: Interceptors to use when invoking 'findMissingBlobs'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1637:95: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1635 | #endif // compiler(>=5.6)
1636 |
1637 | public protocol Build_Bazel_Remote_Execution_V2_CapabilitiesClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
1638 |
1639 | /// - Returns: Interceptors to use when invoking 'getCapabilities'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1892:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1890 | /// multiple times, potentially in parallel. These redundant executions MAY
1891 | /// continue to run, even if the operation is completed.
1892 | @Sendable func execute(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1893 | request: Build_Bazel_Remote_Execution_V2_ExecuteRequest,
1894 | responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1912:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1910 | /// Operations API DeleteOperation method and it was called for the current
1911 | /// execution. The client should call `Execute` to retry.
1912 | @Sendable func waitExecution(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1913 | request: Build_Bazel_Remote_Execution_V2_WaitExecutionRequest,
1914 | responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2129:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2127 | ///
2128 | /// * `NOT_FOUND`: The requested `ActionResult` is not in the cache.
2129 | @Sendable func getActionResult(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2130 | request: Build_Bazel_Remote_Execution_V2_GetActionResultRequest,
2131 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2153:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2151 | /// * `RESOURCE_EXHAUSTED`: There is insufficient storage space to add the
2152 | /// entry to the cache.
2153 | @Sendable func updateActionResult(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2154 | request: Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest,
2155 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2705:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2703 | ///
2704 | /// There are no method-specific errors.
2705 | @Sendable func findMissingBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2706 | request: Build_Bazel_Remote_Execution_V2_FindMissingBlobsRequest,
2707 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2734:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2732 | /// [Digest][build.bazel.remote.execution.v2.Digest] does not match the
2733 | /// provided data.
2734 | @Sendable func batchUpdateBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2735 | request: Build_Bazel_Remote_Execution_V2_BatchUpdateBlobsRequest,
2736 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2759:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2757 | /// Every error on individual read will be returned in the corresponding digest
2758 | /// status.
2759 | @Sendable func batchReadBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2760 | request: Build_Bazel_Remote_Execution_V2_BatchReadBlobsRequest,
2761 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2787:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2785 | ///
2786 | /// * `NOT_FOUND`: The requested tree root is not present in the CAS.
2787 | @Sendable func getTree(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2788 | request: Build_Bazel_Remote_Execution_V2_GetTreeRequest,
2789 | responseStream: GRPCAsyncResponseStreamWriter<Build_Bazel_Remote_Execution_V2_GetTreeResponse>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2990:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2988 | ///
2989 | /// There are no method-specific errors.
2990 | @Sendable func getCapabilities(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2991 | request: Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest,
2992 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:405:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | extension Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat: CaseIterable {
404 | // The compiler won't synthesize support with the UNRECOGNIZED case.
405 | public static var allCases: [Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 | .treeOnly,
407 | .directoryOnly,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:1668:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1666 | extension Build_Bazel_Remote_Execution_V2_ExecutionStage.Value: CaseIterable {
1667 | // The compiler won't synthesize support with the UNRECOGNIZED case.
1668 | public static var allCases: [Build_Bazel_Remote_Execution_V2_ExecutionStage.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1669 | .unknown,
1670 | .cacheCheck,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2440:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2438 | extension Build_Bazel_Remote_Execution_V2_DigestFunction.Value: CaseIterable {
2439 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2440 | public static var allCases: [Build_Bazel_Remote_Execution_V2_DigestFunction.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2441 | .unknown,
2442 | .sha256,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2560:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2558 | extension Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value: CaseIterable {
2559 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2560 | public static var allCases: [Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2561 | .unknown,
2562 | .disallowed,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2632:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2630 | extension Build_Bazel_Remote_Execution_V2_Compressor.Value: CaseIterable {
2631 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2632 | public static var allCases: [Build_Bazel_Remote_Execution_V2_Compressor.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2633 | .identity,
2634 | .zstd,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:3522:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
3506 | ]
3507 |
3508 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
3509 | var _worker: String = String()
3510 | var _queuedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil
:
3520 | var _auxiliaryMetadata: [SwiftProtobuf.Google_Protobuf_Any] = []
3521 |
3522 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3523 |
3524 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4154:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4145 | ]
4146 |
4147 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4148 | var _result: Build_Bazel_Remote_Execution_V2_ActionResult? = nil
4149 | var _cachedResult: Bool = false
:
4152 | var _message: String = String()
4153 |
4154 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4155 |
4156 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4447:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4438 | ]
4439 |
4440 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4441 | var _instanceName: String = String()
4442 | var _actionDigest: Build_Bazel_Remote_Execution_V2_Digest? = nil
:
4445 | var _digestFunction: Build_Bazel_Remote_Execution_V2_DigestFunction.Value = .unknown
4446 |
4447 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4448 |
4449 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:5055:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
5046 | ]
5047 |
5048 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
5049 | var _cacheCapabilities: Build_Bazel_Remote_Execution_V2_CacheCapabilities? = nil
5050 | var _executionCapabilities: Build_Bazel_Remote_Execution_V2_ExecutionCapabilities? = nil
:
5053 | var _highApiVersion: Build_Bazel_Semver_SemVer? = nil
5054 |
5055 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5056 |
5057 | private init() {}
[1666/1671] Compiling BazelRemoteAPI remote_execution.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:353:92: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
351 | #endif // compiler(>=5.6)
352 |
353 | public protocol Build_Bazel_Remote_Execution_V2_ExecutionClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
354 |
355 | /// - Returns: Interceptors to use when invoking 'execute'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:664:94: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
662 | #endif // compiler(>=5.6)
663 |
664 | public protocol Build_Bazel_Remote_Execution_V2_ActionCacheClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
665 |
666 | /// - Returns: Interceptors to use when invoking 'getActionResult'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1398:108: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1396 | #endif // compiler(>=5.6)
1397 |
1398 | public protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
1399 |
1400 | /// - Returns: Interceptors to use when invoking 'findMissingBlobs'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1637:95: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1635 | #endif // compiler(>=5.6)
1636 |
1637 | public protocol Build_Bazel_Remote_Execution_V2_CapabilitiesClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
1638 |
1639 | /// - Returns: Interceptors to use when invoking 'getCapabilities'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1892:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1890 | /// multiple times, potentially in parallel. These redundant executions MAY
1891 | /// continue to run, even if the operation is completed.
1892 | @Sendable func execute(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1893 | request: Build_Bazel_Remote_Execution_V2_ExecuteRequest,
1894 | responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1912:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1910 | /// Operations API DeleteOperation method and it was called for the current
1911 | /// execution. The client should call `Execute` to retry.
1912 | @Sendable func waitExecution(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1913 | request: Build_Bazel_Remote_Execution_V2_WaitExecutionRequest,
1914 | responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2129:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2127 | ///
2128 | /// * `NOT_FOUND`: The requested `ActionResult` is not in the cache.
2129 | @Sendable func getActionResult(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2130 | request: Build_Bazel_Remote_Execution_V2_GetActionResultRequest,
2131 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2153:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2151 | /// * `RESOURCE_EXHAUSTED`: There is insufficient storage space to add the
2152 | /// entry to the cache.
2153 | @Sendable func updateActionResult(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2154 | request: Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest,
2155 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2705:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2703 | ///
2704 | /// There are no method-specific errors.
2705 | @Sendable func findMissingBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2706 | request: Build_Bazel_Remote_Execution_V2_FindMissingBlobsRequest,
2707 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2734:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2732 | /// [Digest][build.bazel.remote.execution.v2.Digest] does not match the
2733 | /// provided data.
2734 | @Sendable func batchUpdateBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2735 | request: Build_Bazel_Remote_Execution_V2_BatchUpdateBlobsRequest,
2736 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2759:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2757 | /// Every error on individual read will be returned in the corresponding digest
2758 | /// status.
2759 | @Sendable func batchReadBlobs(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2760 | request: Build_Bazel_Remote_Execution_V2_BatchReadBlobsRequest,
2761 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2787:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2785 | ///
2786 | /// * `NOT_FOUND`: The requested tree root is not present in the CAS.
2787 | @Sendable func getTree(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2788 | request: Build_Bazel_Remote_Execution_V2_GetTreeRequest,
2789 | responseStream: GRPCAsyncResponseStreamWriter<Build_Bazel_Remote_Execution_V2_GetTreeResponse>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2990:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2988 | ///
2989 | /// There are no method-specific errors.
2990 | @Sendable func getCapabilities(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2991 | request: Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest,
2992 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:405:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | extension Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat: CaseIterable {
404 | // The compiler won't synthesize support with the UNRECOGNIZED case.
405 | public static var allCases: [Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 | .treeOnly,
407 | .directoryOnly,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:1668:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1666 | extension Build_Bazel_Remote_Execution_V2_ExecutionStage.Value: CaseIterable {
1667 | // The compiler won't synthesize support with the UNRECOGNIZED case.
1668 | public static var allCases: [Build_Bazel_Remote_Execution_V2_ExecutionStage.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1669 | .unknown,
1670 | .cacheCheck,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2440:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2438 | extension Build_Bazel_Remote_Execution_V2_DigestFunction.Value: CaseIterable {
2439 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2440 | public static var allCases: [Build_Bazel_Remote_Execution_V2_DigestFunction.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2441 | .unknown,
2442 | .sha256,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2560:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2558 | extension Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value: CaseIterable {
2559 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2560 | public static var allCases: [Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2561 | .unknown,
2562 | .disallowed,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2632:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2630 | extension Build_Bazel_Remote_Execution_V2_Compressor.Value: CaseIterable {
2631 | // The compiler won't synthesize support with the UNRECOGNIZED case.
2632 | public static var allCases: [Build_Bazel_Remote_Execution_V2_Compressor.Value] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2633 | .identity,
2634 | .zstd,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:3522:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
3506 | ]
3507 |
3508 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
3509 | var _worker: String = String()
3510 | var _queuedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil
:
3520 | var _auxiliaryMetadata: [SwiftProtobuf.Google_Protobuf_Any] = []
3521 |
3522 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3523 |
3524 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4154:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4145 | ]
4146 |
4147 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4148 | var _result: Build_Bazel_Remote_Execution_V2_ActionResult? = nil
4149 | var _cachedResult: Bool = false
:
4152 | var _message: String = String()
4153 |
4154 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4155 |
4156 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4447:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4438 | ]
4439 |
4440 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4441 | var _instanceName: String = String()
4442 | var _actionDigest: Build_Bazel_Remote_Execution_V2_Digest? = nil
:
4445 | var _digestFunction: Build_Bazel_Remote_Execution_V2_DigestFunction.Value = .unknown
4446 |
4447 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4448 |
4449 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:5055:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
5046 | ]
5047 |
5048 | fileprivate class _StorageClass {
| `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
5049 | var _cacheCapabilities: Build_Bazel_Remote_Execution_V2_CacheCapabilities? = nil
5050 | var _executionCapabilities: Build_Bazel_Remote_Execution_V2_ExecutionCapabilities? = nil
:
5053 | var _highApiVersion: Build_Bazel_Semver_SemVer? = nil
5054 |
5055 | static let defaultInstance = _StorageClass()
| |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5056 |
5057 | private init() {}
[1667/1671] Compiling BazelRemoteAPI remote_asset.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:316:84: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
314 | #endif // compiler(>=5.6)
315 |
316 | public protocol Build_Bazel_Remote_Asset_V1_FetchClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
317 |
318 | /// - Returns: Interceptors to use when invoking 'fetchBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:613:83: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
611 | #endif // compiler(>=5.6)
612 |
613 | public protocol Build_Bazel_Remote_Asset_V1_PushClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
614 |
615 | /// - Returns: Interceptors to use when invoking 'pushBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:832:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
830 | /// `qualifiers.name` and a `description` of `"{qualifier}" not supported`
831 | /// indicating the name of the unsupported qualifier.
832 | @Sendable func fetchBlob(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
833 | request: Build_Bazel_Remote_Asset_V1_FetchBlobRequest,
834 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:837:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
835 | ) async throws -> Build_Bazel_Remote_Asset_V1_FetchBlobResponse
836 |
837 | @Sendable func fetchDirectory(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
838 | request: Build_Bazel_Remote_Asset_V1_FetchDirectoryRequest,
839 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1060:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1058 | /// * `INTERNAL`: An internal error occurred while performing the operation.
1059 | /// The client should retry.
1060 | @Sendable func pushBlob(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1061 | request: Build_Bazel_Remote_Asset_V1_PushBlobRequest,
1062 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1065:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1063 | ) async throws -> Build_Bazel_Remote_Asset_V1_PushBlobResponse
1064 |
1065 | @Sendable func pushDirectory(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1066 | request: Build_Bazel_Remote_Asset_V1_PushDirectoryRequest,
1067 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1668/1671] Compiling BazelRemoteAPI remote_asset.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:316:84: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
314 | #endif // compiler(>=5.6)
315 |
316 | public protocol Build_Bazel_Remote_Asset_V1_FetchClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
317 |
318 | /// - Returns: Interceptors to use when invoking 'fetchBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:613:83: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
611 | #endif // compiler(>=5.6)
612 |
613 | public protocol Build_Bazel_Remote_Asset_V1_PushClientInterceptorFactoryProtocol: GRPCSendable {
| |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
| `- note: use 'Swift.Sendable' instead
614 |
615 | /// - Returns: Interceptors to use when invoking 'pushBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:832:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
830 | /// `qualifiers.name` and a `description` of `"{qualifier}" not supported`
831 | /// indicating the name of the unsupported qualifier.
832 | @Sendable func fetchBlob(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
833 | request: Build_Bazel_Remote_Asset_V1_FetchBlobRequest,
834 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:837:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
835 | ) async throws -> Build_Bazel_Remote_Asset_V1_FetchBlobResponse
836 |
837 | @Sendable func fetchDirectory(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
838 | request: Build_Bazel_Remote_Asset_V1_FetchDirectoryRequest,
839 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1060:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1058 | /// * `INTERNAL`: An internal error occurred while performing the operation.
1059 | /// The client should retry.
1060 | @Sendable func pushBlob(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1061 | request: Build_Bazel_Remote_Asset_V1_PushBlobRequest,
1062 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1065:9: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1063 | ) async throws -> Build_Bazel_Remote_Asset_V1_PushBlobResponse
1064 |
1065 | @Sendable func pushDirectory(
| `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1066 | request: Build_Bazel_Remote_Asset_V1_PushDirectoryRequest,
1067 | context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1669/1674] Compiling LLBBazelBackend Digest.swift
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/Digest.swift:45:24: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
43 | func asBazelDigest() throws -> Digest {
44 | return try bytes.dropFirst().withUnsafeBytes {
45 | try Digest.init(serializedData: Data(bytesNoCopy: UnsafeMutableRawPointer(mutating: $0.baseAddress!), count: $0.count, deallocator: .none))
| |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
| `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
46 | }
47 | }
[1670/1674] Compiling LLBBazelBackend BazelCASDatabase.swift
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:27:35: warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
25 | private let connection: ClientConnection
26 | private let headers: [GRPCHeader]
27 | private let bytestreamClient: Google_Bytestream_ByteStreamClient
| |- warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
| `- note: use 'Google_Bytestream_ByteStreamNIOClient' instead
28 | private let bytestreamUUID = UUID()
29 | private let casClient: ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:23:16: warning: stored property 'group' of 'Sendable'-conforming class 'LLBBazelCASDatabase' is mutable; this is an error in the Swift 6 language mode
21 | public final class LLBBazelCASDatabase {
22 | /// Threads capable of running futures.
23 | public var group: LLBFuturesDispatchGroup
| `- warning: stored property 'group' of 'Sendable'-conforming class 'LLBBazelCASDatabase' is mutable; this is an error in the Swift 6 language mode
24 |
25 | private let connection: ClientConnection
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:72:33: warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
70 | )
71 | self.connection = ClientConnection(configuration: configuration)
72 | self.bytestreamClient = Google_Bytestream_ByteStreamClient(channel: connection)
| |- warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
| `- note: use 'Google_Bytestream_ByteStreamNIOClient' instead
73 | self.bytestreamClient.defaultCallOptions.customMetadata.add(contentsOf: headers)
74 | self.casClient = ContentAddressableStorageClient(channel: connection)
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:115:29: warning: type 'LLBCASFeatures' does not conform to the 'Sendable' protocol
113 | extension LLBBazelCASDatabase: LLBCASDatabase {
114 | public func supportedFeatures() -> LLBFuture<LLBCASFeatures> {
115 | return group.next().makeSucceededFuture(LLBCASFeatures(preservesIDs: false))
| `- warning: type 'LLBCASFeatures' does not conform to the 'Sendable' protocol
116 | }
117 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-async/Sources/TSFCAS/Database.swift:27:15: note: struct 'LLBCASFeatures' does not conform to the 'Sendable' protocol
25 |
26 | /// Features supported by a CAS Database
27 | public struct LLBCASFeatures: Codable {
| `- note: struct 'LLBCASFeatures' does not conform to the 'Sendable' protocol
28 |
29 | /// Whether a database is "ID preserving"
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFCAS'
14 | import TSCBasic
15 | import TSCUtility
16 | import TSFCAS
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFCAS'
17 |
18 | public typealias URL = Foundation.URL
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:163:47: warning: reference to captured var 'buffer' in concurrently-executing code
161 | }
162 |
163 | return try LLBCASObject(from: buffer)
| `- warning: reference to captured var 'buffer' in concurrently-executing code
164 | }
165 | } catch {
[1671/1674] Emitting module LLBBazelBackend
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:27:35: warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
25 | private let connection: ClientConnection
26 | private let headers: [GRPCHeader]
27 | private let bytestreamClient: Google_Bytestream_ByteStreamClient
| |- warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
| `- note: use 'Google_Bytestream_ByteStreamNIOClient' instead
28 | private let bytestreamUUID = UUID()
29 | private let casClient: ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:23:16: warning: stored property 'group' of 'Sendable'-conforming class 'LLBBazelCASDatabase' is mutable; this is an error in the Swift 6 language mode
21 | public final class LLBBazelCASDatabase {
22 | /// Threads capable of running futures.
23 | public var group: LLBFuturesDispatchGroup
| `- warning: stored property 'group' of 'Sendable'-conforming class 'LLBBazelCASDatabase' is mutable; this is an error in the Swift 6 language mode
24 |
25 | private let connection: ClientConnection
[1672/1677] Compiling LLBCASTool Options.swift
[1673/1677] Emitting module LLBCASTool
[1674/1677] Compiling LLBCASTool CASTool.swift
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:53:38: warning: 'openFile(path:eventLoop:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
51 | /// Put the given file into the CAS database.
52 | public func casPut(file: AbsolutePath, _ ctx: Context) -> LLBFuture<LLBDataID> {
53 | let handleAndRegion = fileIO.openFile(
| `- warning: 'openFile(path:eventLoop:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
54 | path: file.pathString, eventLoop: group.next()
55 | )
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:59:20: warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
18 |
19 | /// Frontend to the remote execution tool.
20 | public final class LLBCASTool {
| `- note: class 'LLBCASTool' does not conform to the 'Sendable' protocol
21 |
22 | /// The tool options.
:
57 | let buffer: LLBFuture<LLBByteBuffer> = handleAndRegion.flatMap { (handle, region) in
58 | let allocator = ByteBufferAllocator()
59 | return self.fileIO.read(
| `- warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
60 | fileRegion: region,
61 | allocator: allocator,
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:70:13: warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
18 |
19 | /// Frontend to the remote execution tool.
20 | public final class LLBCASTool {
| `- note: class 'LLBCASTool' does not conform to the 'Sendable' protocol
21 |
22 | /// The tool options.
:
68 |
69 | return buffer.flatMap { buf in
70 | self.db.put(refs: [], data: buf, ctx)
| `- warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
71 | }
72 | }
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:89:29: warning: 'openFile(path:mode:flags:eventLoop:)' is deprecated: Avoid using NonBlockingFileIO. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
87 | }
88 |
89 | let handle = fileIO.openFile(
| `- warning: 'openFile(path:mode:flags:eventLoop:)' is deprecated: Avoid using NonBlockingFileIO. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
90 | path: outputFile.pathString,
91 | mode: .write,
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:97:13: warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
18 |
19 | /// Frontend to the remote execution tool.
20 | public final class LLBCASTool {
| `- note: class 'LLBCASTool' does not conform to the 'Sendable' protocol
21 |
22 | /// The tool options.
:
95 |
96 | return handle.and(data).flatMap { (handle, data) in
97 | self.fileIO.write(
| `- warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
98 | fileHandle: handle,
99 | buffer: data,
[1675/1683] Compiling llcastool misc.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/misc.swift:14:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | import TSCBasic
13 |
14 | extension URL: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init?(argument: String) {
16 | if let parsed = URL(string: argument) {
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/misc.swift:24:1: warning: extension declares a conformance of imported type 'AbsolutePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TSCBasic' introduce this conformance in the future
22 | }
23 |
24 | extension AbsolutePath: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'AbsolutePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TSCBasic' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
25 | public init?(argument: String) {
26 | if let path = try? AbsolutePath(validating: argument) {
[1676/1683] Compiling llcastool main.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/main.swift:13:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct llcastoolCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "llcastool",
15 | abstract: "llcastool — cas manipulation tools",
[1677/1683] Compiling llcastool CommonOptions.swift
[1678/1683] Compiling llcastool Capabilities.swift
[1679/1683] Compiling llcastool CASCommands.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/CASCommands.swift:30:22: warning: '<<<' is deprecated: use send(_:) function on WritableByteStream instead
28 | func run() throws {
29 | let fileSize = try localFileSystem.getFileInfo(path).size
30 | stderrStream <<< "importing \(path.basename), \(prettyFileSize(fileSize))\n"
| `- warning: '<<<' is deprecated: use send(_:) function on WritableByteStream instead
31 | stderrStream.flush()
32 |
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/CASCommands.swift:30:9: warning: reference to var 'stderrStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
28 | func run() throws {
29 | let fileSize = try localFileSystem.getFileInfo(path).size
30 | stderrStream <<< "importing \(path.basename), \(prettyFileSize(fileSize))\n"
| `- warning: reference to var 'stderrStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
31 | stderrStream.flush()
32 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCBasic/WritableByteStream.swift:828:12: note: var declared here
826 |
827 | /// Public stderr stream instance.
828 | public var stderrStream: ThreadSafeOutputByteStream = try! ThreadSafeOutputByteStream(LocalFileOutputByteStream(
| `- note: var declared here
829 | filePointer: TSCLibc.stderr,
830 | closeOnDeinit: false))
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/CASCommands.swift:31:9: warning: reference to var 'stderrStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
29 | let fileSize = try localFileSystem.getFileInfo(path).size
30 | stderrStream <<< "importing \(path.basename), \(prettyFileSize(fileSize))\n"
31 | stderrStream.flush()
| `- warning: reference to var 'stderrStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
32 |
33 | let group = LLBMakeDefaultDispatchGroup()
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCBasic/WritableByteStream.swift:828:12: note: var declared here
826 |
827 | /// Public stderr stream instance.
828 | public var stderrStream: ThreadSafeOutputByteStream = try! ThreadSafeOutputByteStream(LocalFileOutputByteStream(
| `- note: var declared here
829 | filePointer: TSCLibc.stderr,
830 | closeOnDeinit: false))
[1680/1683] Emitting module llcastool
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/main.swift:13:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct llcastoolCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "llcastool",
15 | abstract: "llcastool — cas manipulation tools",
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/misc.swift:14:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | import TSCBasic
13 |
14 | extension URL: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init?(argument: String) {
16 | if let parsed = URL(string: argument) {
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/misc.swift:24:1: warning: extension declares a conformance of imported type 'AbsolutePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TSCBasic' introduce this conformance in the future
22 | }
23 |
24 | extension AbsolutePath: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'AbsolutePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TSCBasic' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
25 | public init?(argument: String) {
26 | if let path = try? AbsolutePath(validating: argument) {
[1680/1683] Write Objects.LinkFileList
[1681/1683] Linking llcastool
[1682/1683] Applying llcastool
Build complete! (53.55s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser.git"
},
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.4",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-distributed-tracing",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-distributed-tracing"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.80.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-protobuf",
"requirement" : {
"range" : [
{
"lower_bound" : "1.17.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-protobuf.git"
},
{
"identity" : "swift-tools-support-async",
"requirement" : {
"range" : [
{
"lower_bound" : "0.16.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-tools-support-async.git"
},
{
"identity" : "swift-tools-support-core",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.7",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-tools-support-core.git"
},
{
"identity" : "grpc-swift",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/grpc/grpc-swift.git"
}
],
"manifest_display_name" : "llbuild2",
"name" : "llbuild2",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "llbuild2",
"targets" : [
"llbuild2"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "llbuild2fx",
"targets" : [
"llbuild2fx"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "llcastool",
"targets" : [
"llcastool"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "llcastool",
"module_type" : "SwiftTarget",
"name" : "llcastool",
"path" : "Sources/Tools/llcastool",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"llcastool"
],
"sources" : [
"CASCommands.swift",
"Capabilities.swift",
"CommonOptions.swift",
"main.swift",
"misc.swift"
],
"target_dependencies" : [
"LLBCASTool"
],
"type" : "executable"
},
{
"c99name" : "llbuild2fxTests",
"module_type" : "SwiftTarget",
"name" : "llbuild2fxTests",
"path" : "Tests/llbuild2fxTests",
"sources" : [
"CommandLineArgsCoderTests.swift",
"DeadlineTests.swift",
"EngineTests.swift",
"ExpressionTests.swift",
"FunctionCacheTests.swift",
"KeyDependencyGraphTests.swift",
"KeyTests.swift",
"PredicateTests.swift",
"RequirementTests.swift",
"ResourcesTests.swift",
"SpawnProcessTests.swift",
"VersioningTests.swift"
],
"target_dependencies" : [
"llbuild2fx"
],
"type" : "test"
},
{
"c99name" : "llbuild2fx",
"module_type" : "SwiftTarget",
"name" : "llbuild2fx",
"path" : "Sources/llbuild2fx",
"product_dependencies" : [
"SwiftProtobuf",
"SwiftToolsSupportAsync",
"SwiftToolsSupportCAS",
"Logging",
"Tracing",
"Instrumentation",
"_NIOFileSystem"
],
"product_memberships" : [
"llbuild2",
"llbuild2fx"
],
"sources" : [
"Action.swift",
"ActionCache/FileBackedFunctionCache.swift",
"ActionCache/InMemoryFunctionCache.swift",
"Coding.swift",
"CommandLineArgsCoder.swift",
"Deadline.swift",
"Diagnostics.swift",
"Engine.swift",
"Environment.swift",
"Errors.swift",
"Executor.swift",
"FunctionCache.swift",
"FunctionInterface.swift",
"Generated/EngineProtocol/any_serializable.pb.swift",
"Key.swift",
"KeyConfiguration.swift",
"KeyDependencyGraph.swift",
"LocalExecutor.swift",
"NullExecutor.swift",
"Predicate/Expression.swift",
"Predicate/Predicate.swift",
"Resources.swift",
"Reëxport.swift",
"Ruleset.swift",
"Service.swift",
"SortedSet.swift",
"SpawnProcess.swift",
"Stats.swift",
"Support/AnySerializable.swift",
"Support/CommonCodables.swift",
"Support/Logging.swift",
"Support/Protobuf+Extensions.swift",
"TreeMaterialization.swift",
"Value.swift",
"Versioning.swift",
"WrappedDataID.swift"
],
"type" : "library"
},
{
"c99name" : "llbuild2",
"module_type" : "SwiftTarget",
"name" : "llbuild2",
"path" : "Sources/llbuild2",
"product_memberships" : [
"llbuild2"
],
"sources" : [
"Reexport.swift"
],
"target_dependencies" : [
"llbuild2fx"
],
"type" : "library"
},
{
"c99name" : "LLBCASTool",
"module_type" : "SwiftTarget",
"name" : "LLBCASTool",
"path" : "Sources/LLBCASTool",
"product_dependencies" : [
"GRPC",
"SwiftToolsSupport-auto"
],
"product_memberships" : [
"llcastool"
],
"sources" : [
"CASTool.swift",
"Options.swift"
],
"target_dependencies" : [
"BazelRemoteAPI",
"LLBBazelBackend"
],
"type" : "library"
},
{
"c99name" : "LLBBazelBackend",
"module_type" : "SwiftTarget",
"name" : "LLBBazelBackend",
"path" : "Sources/LLBBazelBackend",
"product_dependencies" : [
"Crypto",
"GRPC",
"SwiftToolsSupportCAS"
],
"product_memberships" : [
"llcastool"
],
"sources" : [
"CAS/BazelCASDatabase.swift",
"CAS/Digest.swift"
],
"target_dependencies" : [
"BazelRemoteAPI"
],
"type" : "library"
},
{
"c99name" : "BazelRemoteAPI",
"module_type" : "SwiftTarget",
"name" : "BazelRemoteAPI",
"path" : "Sources/BazelRemoteAPI",
"product_dependencies" : [
"GRPC",
"SwiftProtobuf",
"SwiftProtobufPluginLibrary"
],
"product_memberships" : [
"llcastool"
],
"sources" : [
"Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift",
"Generated/build/bazel/remote/asset/v1/remote_asset.pb.swift",
"Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift",
"Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift",
"Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift",
"Generated/build/bazel/remote/logstream/v1/remote_logstream.pb.swift",
"Generated/build/bazel/semver/semver.pb.swift",
"Generated/google/api/annotations.pb.swift",
"Generated/google/api/client.pb.swift",
"Generated/google/api/http.pb.swift",
"Generated/google/api/launch_stage.pb.swift",
"Generated/google/bytestream/bytestream.grpc.swift",
"Generated/google/bytestream/bytestream.pb.swift",
"Generated/google/longrunning/operations.grpc.swift",
"Generated/google/longrunning/operations.pb.swift",
"Generated/google/rpc/code.pb.swift",
"Generated/google/rpc/error_details.pb.swift",
"Generated/google/rpc/http.pb.2.swift",
"Generated/google/rpc/status.pb.swift",
"Typealiases.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.