The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build PovioKit, reference 5.1.1 (ad42b2), with Swift 6.2 (beta) for macOS (SPM) on 6 Sep 2025 06:52:32 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/povio/PovioKit.git
Reference: 5.1.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/povio/PovioKit
 * tag               5.1.1      -> FETCH_HEAD
HEAD is now at ad42b26 Release/5.1.1 (#353)
Cloned https://github.com/povio/PovioKit.git
Revision (git rev-parse @):
ad42b2651ae20a00eef2e0a3746c6661c5e5e4ed
SUCCESS checkout https://github.com/povio/PovioKit.git at 5.1.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/povio/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
[8/10] Copying PrivacyInfo.xcprivacy
[9/10] Write swift-version-1EA4D86E10B52AF.txt
[11/91] Emitting module Alamofire
[12/95] Compiling Alamofire URLRequest+Alamofire.swift
[13/95] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[14/95] Compiling Alamofire AlamofireExtended.swift
[15/95] Compiling Alamofire AuthenticationInterceptor.swift
[16/95] Compiling Alamofire SessionDelegate.swift
[17/95] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[18/95] Compiling Alamofire UploadRequest.swift
[19/95] Compiling Alamofire WebSocketRequest.swift
[20/95] Compiling Alamofire DispatchQueue+Alamofire.swift
[21/95] Compiling Alamofire OperationQueue+Alamofire.swift
[22/95] Compiling Alamofire Result+Alamofire.swift
[23/95] Compiling Alamofire StringEncoding+Alamofire.swift
[24/95] Compiling Alamofire RequestCompression.swift
[25/95] Compiling Alamofire RequestInterceptor.swift
[26/95] Compiling Alamofire ResponseSerialization.swift
[27/95] Compiling Alamofire RetryPolicy.swift
[28/95] Compiling Alamofire MultipartFormData.swift
[29/95] Compiling Alamofire MultipartUpload.swift
[30/95] Compiling PovioKitPromise Sequence.swift
[31/95] Compiling Alamofire NetworkReachabilityManager.swift
[32/95] Compiling Alamofire RedirectHandler.swift
[33/95] Compiling Alamofire CachedResponseHandler.swift
[34/95] Compiling Alamofire Combine.swift
[35/95] Compiling Alamofire Concurrency.swift
[36/95] Compiling Alamofire EventMonitor.swift
[37/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
[38/96] Emitting module PovioKitAsync
[39/96] Compiling PovioKitPromise Race.swift
[40/96] Compiling PovioKitPromise Poll.swift
[41/96] Compiling PovioKitPromise Future.swift
[42/96] Compiling PovioKitPromise Either.swift
[43/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 {
[44/96] Compiling PovioKitPromise ConcurrentDispatch.swift
[45/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 {
[46/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 {
[47/96] Emitting module PovioKitPromise
[48/96] Compiling PovioKitPromise Promise.swift
[49/96] Compiling Alamofire HTTPHeaders.swift
[50/96] Compiling Alamofire HTTPMethod.swift
[51/96] Compiling Alamofire Notifications.swift
[52/96] Compiling Alamofire ParameterEncoder.swift
[53/96] Compiling Alamofire ParameterEncoding.swift
[54/96] Compiling Alamofire Protected.swift
[55/96] Compiling Alamofire Request.swift
[56/96] Compiling Alamofire RequestTaskMap.swift
[57/96] Compiling Alamofire Response.swift
[58/96] Compiling Alamofire Session.swift
[59/96] Compiling PovioKitPromise Wrap.swift
[62/96] Compiling Alamofire DataRequest.swift
[63/96] Compiling Alamofire DataStreamRequest.swift
[64/96] Compiling Alamofire DownloadRequest.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
[69/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 {
[70/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 {
[71/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 {
[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 {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[73/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 {
[74/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 {
[75/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 {
Fetching https://github.com/Alamofire/Alamofire
[1/30258] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire from cache (2.48s)
Computing version for https://github.com/Alamofire/Alamofire
Computed https://github.com/Alamofire/Alamofire at 5.10.2 (2.94s)
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