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 iONess, reference 2.0.2 (39e7b9), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 13:21:51 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/oss-homecredit-id/iONess.git
Reference: 2.0.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/oss-homecredit-id/iONess
 * tag               2.0.2      -> FETCH_HEAD
HEAD is now at 39e7b96 Update iONess.podspec
Cloned https://github.com/oss-homecredit-id/iONess.git
Revision (git rev-parse @):
39e7b96ac685e122f847e9fc5f19d43721ed2ea7
SUCCESS checkout https://github.com/oss-homecredit-id/iONess.git at 2.0.2
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/oss-homecredit-id/iONess.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/7] Compiling Chary DispatchQueue+Extensions.swift
[6/7] Compiling Chary Atomic.swift
[7/7] Emitting module Chary
[8/16] Compiling Ergo NestedPromise.swift
[9/16] Compiling Ergo Thenable.swift
[10/16] Compiling Ergo Task+Extensions.swift
[11/16] Compiling Ergo GlobalFunction.swift
[12/16] Compiling Ergo ChainAnimator.swift
[13/16] Compiling Ergo ClosurePromise.swift
[14/16] Compiling Ergo Promise.swift
[15/16] Emitting module Ergo
[16/16] Compiling Ergo ErgoError.swift
[17/35] Emitting module iONess
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Model/NetworkSessionError.swift:21:20: warning: class 'NetworkSessionError' must restate inherited '@unchecked Sendable' conformance
 19 |
 20 | /// Network Session Error Object
 21 | public final class NetworkSessionError: NSError, NetworkSessionErrorProtocol {
    |                    `- warning: class 'NetworkSessionError' must restate inherited '@unchecked Sendable' conformance
 22 |
 23 |     /// List of HTTP Error Code Error
[18/37] Compiling iONess RequestBodyEncoder.swift
[19/37] Compiling iONess ResponseDecoder.swift
[20/37] Compiling iONess NetworkSessionError.swift
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Model/NetworkSessionError.swift:21:20: warning: class 'NetworkSessionError' must restate inherited '@unchecked Sendable' conformance
 19 |
 20 | /// Network Session Error Object
 21 | public final class NetworkSessionError: NSError, NetworkSessionErrorProtocol {
    |                    `- warning: class 'NetworkSessionError' must restate inherited '@unchecked Sendable' conformance
 22 |
 23 |     /// List of HTTP Error Code Error
[21/37] Compiling iONess RequestMessage.swift
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Model/NetworkSessionError.swift:21:20: warning: class 'NetworkSessionError' must restate inherited '@unchecked Sendable' conformance
 19 |
 20 | /// Network Session Error Object
 21 | public final class NetworkSessionError: NSError, NetworkSessionErrorProtocol {
    |                    `- warning: class 'NetworkSessionError' must restate inherited '@unchecked Sendable' conformance
 22 |
 23 |     /// List of HTTP Error Code Error
[22/37] Compiling iONess HTTPRequestMessage.swift
[23/37] Compiling iONess HTTPResponseMessage.swift
[24/37] Compiling iONess NetworkSessionManager+Extensions.swift
[25/37] Compiling iONess NetworkSessionManager.swift
[26/37] Compiling iONess DuplicatedHandler.swift
[27/37] Compiling iONess HTTPValidator.swift
[28/37] Compiling iONess LockRunner.swift
[29/37] Compiling iONess URLCompatible.swift
[30/37] Compiling iONess RequestBuilder.swift
[31/37] Compiling iONess RequestHandler.swift
[32/37] Compiling iONess NetworkRequest.swift
[33/37] Compiling iONess NetworkResult.swift
[34/37] Compiling iONess ResponseValidator.swift
[35/37] Compiling iONess RetryControl.swift
[36/37] Compiling iONess RequestPromise.swift
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Request/RequestPromise.swift:39:17: error: cannot call value of non-function type 'PromiseConsumer<Handler.Result>'
 37 |         guard let handler = requestHandler else {
 38 |             super.init(currentQueue: .current) { done in
 39 |                 done(nil, NessError(description: "iONess Error: Failed to create request handler"))
    |                 `- error: cannot call value of non-function type 'PromiseConsumer<Handler.Result>'
 40 |             }
 41 |             return
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Request/RequestPromise.swift:39:22: error: 'nil' requires a contextual type
 37 |         guard let handler = requestHandler else {
 38 |             super.init(currentQueue: .current) { done in
 39 |                 done(nil, NessError(description: "iONess Error: Failed to create request handler"))
    |                      `- error: 'nil' requires a contextual type
 40 |             }
 41 |             return
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Request/RequestPromise.swift:45:17: error: cannot call value of non-function type 'PromiseConsumer<Handler.Result>'
 43 |         super.init(currentQueue: .main) { done in
 44 |             handler.doRequest { result in
 45 |                 done(result, result.error)
    |                 `- error: cannot call value of non-function type 'PromiseConsumer<Handler.Result>'
 46 |             }
 47 |         }
[37/37] Compiling iONess Resumable.swift
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Request/RequestPromise.swift:39:17: error: cannot call value of non-function type 'PromiseConsumer<Handler.Result>'
 37 |         guard let handler = requestHandler else {
 38 |             super.init(currentQueue: .current) { done in
 39 |                 done(nil, NessError(description: "iONess Error: Failed to create request handler"))
    |                 `- error: cannot call value of non-function type 'PromiseConsumer<Handler.Result>'
 40 |             }
 41 |             return
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Request/RequestPromise.swift:39:22: error: 'nil' requires a contextual type
 37 |         guard let handler = requestHandler else {
 38 |             super.init(currentQueue: .current) { done in
 39 |                 done(nil, NessError(description: "iONess Error: Failed to create request handler"))
    |                      `- error: 'nil' requires a contextual type
 40 |             }
 41 |             return
/Users/admin/builder/spi-builder-workspace/iONess/Classes/Request/RequestPromise.swift:45:17: error: cannot call value of non-function type 'PromiseConsumer<Handler.Result>'
 43 |         super.init(currentQueue: .main) { done in
 44 |             handler.doRequest { result in
 45 |                 done(result, result.error)
    |                 `- error: cannot call value of non-function type 'PromiseConsumer<Handler.Result>'
 46 |             }
 47 |         }
Fetching https://github.com/Quick/Quick.git
Fetching https://github.com/Quick/Nimble.git
Fetching https://github.com/nayanda1/Ergo.git
[1/673] Fetching ergo
[22/15432] Fetching ergo, quick
[1560/35016] Fetching ergo, quick, nimble
Fetched https://github.com/Quick/Quick.git from cache (1.78s)
Fetched https://github.com/Quick/Nimble.git from cache (1.78s)
Fetched https://github.com/nayanda1/Ergo.git from cache (1.78s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 9.2.1 (2.32s)
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
[1/1257] Fetching cwlpreconditiontesting
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (0.77s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 4.0.0 (1.28s)
Computing version for https://github.com/nayanda1/Ergo.git
Computed https://github.com/nayanda1/Ergo.git at 1.4.0 (0.50s)
Fetching https://github.com/hainayanda/Chary.git
[1/514] Fetching chary
Fetched https://github.com/hainayanda/Chary.git from cache (0.86s)
Computing version for https://github.com/hainayanda/Chary.git
Computed https://github.com/hainayanda/Chary.git at 1.0.7 (1.39s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.2.2 (0.48s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
[1/455] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.69s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.1 (1.19s)
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 4.0.0
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.2.1
Creating working copy for https://github.com/hainayanda/Chary.git
Working copy of https://github.com/hainayanda/Chary.git resolved at 1.0.7
Creating working copy for https://github.com/nayanda1/Ergo.git
Working copy of https://github.com/nayanda1/Ergo.git resolved at 1.4.0
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 9.2.1
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.2
BUILD FAILURE 6.2 macosSpm