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 develop (8ae4ae), with Swift 6.2 (beta) for macOS (SPM) on 17 Jun 2025 13:14:33 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: develop
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/poviolabs/PovioKit
 * branch            develop    -> FETCH_HEAD
 * [new branch]      develop    -> origin/develop
HEAD is now at 8ae4ae6 Chore/Remove image source (#354)
Cloned https://github.com/poviolabs/PovioKit.git
Revision (git rev-parse @):
8ae4ae6390ebb1c563bab3df6ffb00b296407b5a
SUCCESS checkout https://github.com/poviolabs/PovioKit.git at develop
========================================
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
[8/10] Copying PrivacyInfo.xcprivacy
[9/10] Write swift-version-1EA4D86E10B52AF.txt
[11/91] Compiling PovioKitCore SKStoreReviewController+PovioKit.swift
[12/91] Compiling PovioKitCore View+PovioKit.swift
[13/91] Compiling PovioKitCore CGSize+PovioKit.swift
[14/91] Compiling PovioKitCore UIColor+PovioKit.swift
[15/95] Compiling Alamofire RequestCompression.swift
[16/95] Compiling Alamofire RequestInterceptor.swift
[17/95] Compiling Alamofire ResponseSerialization.swift
[18/95] Compiling Alamofire RetryPolicy.swift
[19/95] Emitting module Alamofire
[20/95] Compiling PovioKitPromise Poll.swift
[21/95] Compiling PovioKitPromise Sequence.swift
[22/95] Compiling PovioKitCore Date+PovioKit.swift
[23/96] Compiling PovioKitCore DateFormatter+PovioKit.swift
[24/96] Compiling PovioKitCore DecodableDictionary+PovioKit.swift
[25/96] Compiling PovioKitCore DispatchTimeInterval+PovioKit.swift
[26/96] Compiling PovioKitCore Double+PovioKit.swift
[27/96] Compiling Alamofire HTTPHeaders.swift
[28/96] Compiling Alamofire HTTPMethod.swift
[29/96] Compiling Alamofire Notifications.swift
[30/96] Compiling PovioKitCore Collection+PovioKit.swift
[31/96] Compiling PovioKitCore Data+PovioKit.swift
[32/96] Emitting module PovioKitAsync
[33/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
[34/96] Compiling PovioKitPromise Future.swift
[35/96] Compiling PovioKitPromise Race.swift
[36/96] Compiling Alamofire MultipartFormData.swift
[37/96] Compiling Alamofire MultipartUpload.swift
[38/96] Compiling Alamofire NetworkReachabilityManager.swift
[39/96] Compiling Alamofire RedirectHandler.swift
[40/96] Compiling PovioKitCore MKAnnotationView+PovioKit.swift
[41/96] Compiling PovioKitCore MKCircle+PovioKit.swift
[42/96] Compiling PovioKitCore MKMapView+PovioKit.swift
[43/96] Compiling PovioKitCore MKPolygon+PovioKit.swift
[44/96] Compiling PovioKitPromise Either.swift
[45/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 {
[46/96] Compiling PovioKitPromise ConcurrentDispatch.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 {
/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 {
[49/96] Emitting module PovioKitPromise
[50/96] Compiling PovioKitPromise Promise.swift
[51/96] Compiling PovioKitCore UIDevice+PovioKit.swift
[52/96] Compiling PovioKitCore UIEdgeInsets+PovioKit.swift
[53/96] Compiling PovioKitCore UIImage+Kingfisher.swift
[54/96] Compiling PovioKitCore UIImage+PovioKit.swift
[55/96] Compiling Alamofire CachedResponseHandler.swift
[56/96] Compiling Alamofire Combine.swift
[57/96] Compiling Alamofire Concurrency.swift
[58/96] Compiling Alamofire EventMonitor.swift
[59/96] Compiling PovioKitPromise Wrap.swift
[60/96] Compiling PovioKitCore Encodable+PovioKit.swift
[61/96] Compiling Alamofire Request.swift
[62/96] Compiling PovioKitCore Result+PovioKit.swift
[63/96] Compiling PovioKitCore String+PovioKit.swift
[64/96] Compiling PovioKitCore URL+PovioKit.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)
[75/106] 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 {
[76/106] 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 {
[77/106] 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 {
[78/106] 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 {
[79/106] 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 {
[80/106] 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 {
[81/106] 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 (4.91s)
Computing version for https://github.com/Alamofire/Alamofire
Computed https://github.com/Alamofire/Alamofire at 5.10.2 (5.40s)
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