Build Information
Failed to build PovioKit, reference 5.1.1 (ad42b2
), with Swift 6.2 (beta) for macOS (SPM) on 17 Jun 2025 13:14:21 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/poviolabs/PovioKit.git
Reference: 5.1.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/poviolabs/PovioKit
* tag 5.1.1 -> FETCH_HEAD
HEAD is now at ad42b26 Release/5.1.1 (#353)
Cloned https://github.com/poviolabs/PovioKit.git
Revision (git rev-parse @):
ad42b2651ae20a00eef2e0a3746c6661c5e5e4ed
SUCCESS checkout https://github.com/poviolabs/PovioKit.git at 5.1.1
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/poviolabs/PovioKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/10] Write sources
[1/10] Copying PrivacyInfo.xcprivacy
[2/10] Write sources
[9/10] Write swift-version-1EA4D86E10B52AF.txt
[11/91] Emitting module Alamofire
[12/95] Compiling PovioKitPromise Sequence.swift
[13/95] Compiling PovioKitPromise Race.swift
[14/96] Compiling Alamofire RequestCompression.swift
[15/96] Compiling Alamofire RequestInterceptor.swift
[16/96] Compiling Alamofire ResponseSerialization.swift
[17/96] Compiling Alamofire RetryPolicy.swift
[18/96] Compiling PovioKitPromise Future.swift
[19/96] Compiling Alamofire Alamofire.swift
/Users/admin/builder/spi-builder-workspace/Sources/PromiseKit/All.swift:33:16: warning: capture of non-sendable type 'C.Type' in an isolated closure
31 | case .success:
32 | barrier.async(flags: .barrier) {
33 | if promises.allSatisfy({ $0.isFulfilled }) {
| `- warning: capture of non-sendable type 'C.Type' in an isolated closure
34 | seal.resolve(with: promises.compactMap { $0.value }, on: dispatchQueue)
35 | }
/Users/admin/builder/spi-builder-workspace/Sources/PromiseKit/All.swift:20:3: warning: capture of non-sendable type 'C.Type' in an isolated closure
18 | public func all<T, C: Collection>(
19 | on dispatchQueue: DispatchQueue? = .main,
20 | promises: C
| `- warning: capture of non-sendable type 'C.Type' in an isolated closure
21 | ) -> Promise<[T]> where C.Element == Promise<T> {
22 | guard !promises.isEmpty else {
[20/96] Compiling Alamofire AFError.swift
/Users/admin/builder/spi-builder-workspace/Sources/PromiseKit/All.swift:33:16: warning: capture of non-sendable type 'C.Type' in an isolated closure
31 | case .success:
32 | barrier.async(flags: .barrier) {
33 | if promises.allSatisfy({ $0.isFulfilled }) {
| `- warning: capture of non-sendable type 'C.Type' in an isolated closure
34 | seal.resolve(with: promises.compactMap { $0.value }, on: dispatchQueue)
35 | }
/Users/admin/builder/spi-builder-workspace/Sources/PromiseKit/All.swift:20:3: warning: capture of non-sendable type 'C.Type' in an isolated closure
18 | public func all<T, C: Collection>(
19 | on dispatchQueue: DispatchQueue? = .main,
20 | promises: C
| `- warning: capture of non-sendable type 'C.Type' in an isolated closure
21 | ) -> Promise<[T]> where C.Element == Promise<T> {
22 | guard !promises.isEmpty else {
[21/96] Compiling PovioKitPromise Any.swift
/Users/admin/builder/spi-builder-workspace/Sources/PromiseKit/Any.swift:31:17: warning: capture of non-sendable type 'C.Type' in an isolated closure
29 | promise.finally { result in
30 | barrier.async(flags: .barrier) {
31 | guard promises.allSatisfy({ $0.isResolved }) else { return }
| `- warning: capture of non-sendable type 'C.Type' in an isolated closure
32 | if promises.contains(where: { $0.isFulfilled }) {
33 | seal.resolve(with: promises.map { $0.value }, on: dispatchQueue)
/Users/admin/builder/spi-builder-workspace/Sources/PromiseKit/Any.swift:20:3: warning: capture of non-sendable type 'C.Type' in an isolated closure
18 | public func any<T, C: Collection>(
19 | on dispatchQueue: DispatchQueue? = .main,
20 | promises: C
| `- warning: capture of non-sendable type 'C.Type' in an isolated closure
21 | ) -> Promise<[T?]> where C.Element == Promise<T> {
22 | guard !promises.isEmpty else {
[22/96] Compiling PovioKitAsync AsyncThrottleSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Async/AsyncThrottleSequence.swift:126:20: warning: capture of non-sendable type 'BaseSequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
124 | let task = Task {
125 | try await Task.sleep(
126 | until: clock.now.advanced(by: delayBetweenTasks),
| `- warning: capture of non-sendable type 'BaseSequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
127 | clock: clock
128 | )
/Users/admin/builder/spi-builder-workspace/Sources/Async/AsyncThrottleSequence.swift:120:17: warning: capture of non-sendable type 'BaseSequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | /// - Throws: An error if the underlying `AsyncSequence` throws an error.
119 | /// - Returns: The next element in the sequence, or `nil` if there are no more elements.
120 | public func next() async throws -> Element? {
| `- warning: capture of non-sendable type 'BaseSequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | let task = lock.withLock {
122 | taskInExecution?.cancel()
/Users/admin/builder/spi-builder-workspace/Sources/Async/AsyncThrottleSequence.swift:129:34: warning: capture of non-sendable type 'BaseSequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
127 | clock: clock
128 | )
129 | let result = try await baseIterator.next()
| `- warning: capture of non-sendable type 'BaseSequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
130 | try Task.checkCancellation()
131 | return result
[23/96] Emitting module PovioKitAsync
[24/96] Compiling Alamofire SessionDelegate.swift
[25/96] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[26/96] Compiling Alamofire UploadRequest.swift
[27/96] Compiling Alamofire WebSocketRequest.swift
[28/96] Compiling Alamofire MultipartFormData.swift
[29/96] Compiling Alamofire MultipartUpload.swift
[30/96] Compiling Alamofire NetworkReachabilityManager.swift
[31/96] Compiling Alamofire RedirectHandler.swift
[32/96] Compiling PovioKitPromise Poll.swift
[33/96] Compiling PovioKitPromise ConcurrentDispatch.swift
[34/96] Compiling PovioKitPromise Either.swift
[35/96] Compiling PovioKitPromise Promise.swift
[36/96] Emitting module PovioKitPromise
[37/96] Compiling Alamofire Protected.swift
[38/96] Compiling Alamofire Request.swift
[39/96] Compiling Alamofire RequestTaskMap.swift
[40/96] Compiling Alamofire Response.swift
[41/96] Compiling Alamofire Session.swift
[42/96] Compiling Alamofire HTTPHeaders.swift
[43/96] Compiling Alamofire HTTPMethod.swift
[44/96] Compiling Alamofire Notifications.swift
[45/96] Compiling Alamofire ParameterEncoder.swift
[46/96] Compiling Alamofire ParameterEncoding.swift
[49/96] Compiling Alamofire DataRequest.swift
[50/96] Compiling Alamofire DataStreamRequest.swift
[51/96] Compiling Alamofire DownloadRequest.swift
[52/96] Compiling PovioKitPromise Wrap.swift
[53/96] Compiling Alamofire DispatchQueue+Alamofire.swift
[54/96] Compiling Alamofire OperationQueue+Alamofire.swift
[55/96] Compiling Alamofire Result+Alamofire.swift
[56/96] Compiling Alamofire StringEncoding+Alamofire.swift
[57/96] Compiling Alamofire URLRequest+Alamofire.swift
[58/96] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[59/96] Compiling Alamofire AlamofireExtended.swift
[60/96] Compiling Alamofire AuthenticationInterceptor.swift
[61/96] Compiling Alamofire CachedResponseHandler.swift
[62/96] Compiling Alamofire Combine.swift
[63/96] Compiling Alamofire Concurrency.swift
[64/96] Compiling Alamofire EventMonitor.swift
[65/96] Compiling Alamofire ServerTrustEvaluation.swift
[66/96] Compiling Alamofire URLEncodedFormEncoder.swift
[67/96] Compiling Alamofire Validation.swift
[68/96] Compiling Alamofire resource_bundle_accessor.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[69/103] Emitting module PovioKitNetworking
/Users/admin/builder/spi-builder-workspace/Sources/Networking/AlamofireNetworkClient/AlamofireConsoleLogger.swift:11:8: error: no such module 'PovioKitCore'
9 | import Alamofire
10 | import Foundation
11 | import PovioKitCore
| `- error: no such module 'PovioKitCore'
12 |
13 | public final class AlamofireConsoleLogger: EventMonitor {
[70/103] Compiling PovioKitNetworking AlamofireConsoleLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/AlamofireNetworkClient/AlamofireConsoleLogger.swift:11:8: error: no such module 'PovioKitCore'
9 | import Alamofire
10 | import Foundation
11 | import PovioKitCore
| `- error: no such module 'PovioKitCore'
12 |
13 | public final class AlamofireConsoleLogger: EventMonitor {
[71/103] Compiling PovioKitNetworking URLEncodedFormParameterEncoder+PovioKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/AlamofireNetworkClient/AlamofireConsoleLogger.swift:11:8: error: no such module 'PovioKitCore'
9 | import Alamofire
10 | import Foundation
11 | import PovioKitCore
| `- error: no such module 'PovioKitCore'
12 |
13 | public final class AlamofireConsoleLogger: EventMonitor {
[72/103] Compiling PovioKitNetworking DomainConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/AlamofireNetworkClient/AlamofireConsoleLogger.swift:11:8: error: no such module 'PovioKitCore'
9 | import Alamofire
10 | import Foundation
11 | import PovioKitCore
| `- error: no such module 'PovioKitCore'
12 |
13 | public final class AlamofireConsoleLogger: EventMonitor {
[73/103] Compiling PovioKitNetworking AlamofireNetworkClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/AlamofireNetworkClient/AlamofireConsoleLogger.swift:11:8: error: no such module 'PovioKitCore'
9 | import Alamofire
10 | import Foundation
11 | import PovioKitCore
| `- error: no such module 'PovioKitCore'
12 |
13 | public final class AlamofireConsoleLogger: EventMonitor {
[74/103] Compiling PovioKitNetworking OAuthCredentials.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/AlamofireNetworkClient/AlamofireConsoleLogger.swift:11:8: error: no such module 'PovioKitCore'
9 | import Alamofire
10 | import Foundation
11 | import PovioKitCore
| `- error: no such module 'PovioKitCore'
12 |
13 | public final class AlamofireConsoleLogger: EventMonitor {
[75/103] Compiling PovioKitNetworking ParameterEncoder+PovioKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/Networking/AlamofireNetworkClient/AlamofireConsoleLogger.swift:11:8: error: no such module 'PovioKitCore'
9 | import Alamofire
10 | import Foundation
11 | import PovioKitCore
| `- error: no such module 'PovioKitCore'
12 |
13 | public final class AlamofireConsoleLogger: EventMonitor {
Fetching https://github.com/Alamofire/Alamofire
[1/30141] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire from cache (2.75s)
Computing version for https://github.com/Alamofire/Alamofire
Computed https://github.com/Alamofire/Alamofire at 5.10.2 (3.25s)
Creating working copy for https://github.com/Alamofire/Alamofire
Working copy of https://github.com/Alamofire/Alamofire resolved at 5.10.2
BUILD FAILURE 6.2 macosSpm