The Swift Package Index logo.Swift Package Index

Build Information

Failed to build AlamoFuzi, reference 3.0.0 (841609), with Swift 6.2 for macOS (SPM) on 18 Jun 2025 15:35:47 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/thebluepotato/AlamoFuzi.git
Reference: 3.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/thebluepotato/AlamoFuzi
 * tag               3.0.0      -> FETCH_HEAD
HEAD is now at 841609f Update Package.swift
Cloned https://github.com/thebluepotato/AlamoFuzi.git
Revision (git rev-parse @):
841609f2d93e460f009cc8770e23400f0e3f5160
SUCCESS checkout https://github.com/thebluepotato/AlamoFuzi.git at 3.0.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/thebluepotato/AlamoFuzi.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[1/5] Copying PrivacyInfo.xcprivacy
[1/5] Write sources
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/53] Emitting module Alamofire
[7/57] Compiling Alamofire ServerTrustEvaluation.swift
[8/57] Compiling Alamofire URLEncodedFormEncoder.swift
[9/57] Compiling Alamofire Validation.swift
[10/57] Compiling Alamofire resource_bundle_accessor.swift
[11/57] Compiling Alamofire DispatchQueue+Alamofire.swift
[12/57] Compiling Alamofire OperationQueue+Alamofire.swift
[13/57] Compiling Alamofire Result+Alamofire.swift
[14/57] Compiling Alamofire StringEncoding+Alamofire.swift
[15/57] Compiling Alamofire RequestCompression.swift
[16/57] Compiling Alamofire RequestInterceptor.swift
[17/57] Compiling Alamofire ResponseSerialization.swift
[18/57] Compiling Alamofire RetryPolicy.swift
[19/57] Compiling Alamofire Protected.swift
[20/57] Compiling Alamofire Request.swift
[21/57] Compiling Alamofire RequestTaskMap.swift
[22/57] Compiling Alamofire Response.swift
[23/57] Compiling Alamofire Session.swift
[24/57] Compiling Alamofire Alamofire.swift
[25/57] Compiling Alamofire AFError.swift
[26/57] Compiling Alamofire DataRequest.swift
[27/57] Compiling Alamofire DataStreamRequest.swift
[28/57] Compiling Alamofire DownloadRequest.swift
[29/57] Compiling Alamofire HTTPHeaders.swift
[30/57] Compiling Alamofire HTTPMethod.swift
[31/57] Compiling Alamofire Notifications.swift
[32/57] Compiling Alamofire ParameterEncoder.swift
[33/57] Compiling Alamofire ParameterEncoding.swift
[34/57] Compiling Alamofire SessionDelegate.swift
[35/57] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[36/57] Compiling Alamofire UploadRequest.swift
[37/57] Compiling Alamofire WebSocketRequest.swift
[38/57] Compiling Alamofire URLRequest+Alamofire.swift
[39/57] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[40/57] Compiling Alamofire AlamofireExtended.swift
[41/57] Compiling Alamofire AuthenticationInterceptor.swift
[42/57] Compiling Alamofire MultipartFormData.swift
[43/57] Compiling Alamofire MultipartUpload.swift
[44/57] Compiling Alamofire NetworkReachabilityManager.swift
[45/57] Compiling Alamofire RedirectHandler.swift
[46/57] Compiling Alamofire CachedResponseHandler.swift
[47/57] Compiling Alamofire Combine.swift
[48/57] Compiling Alamofire Concurrency.swift
[49/57] Compiling Alamofire EventMonitor.swift
[50/57] Compiling Fuzi Element.swift
[51/57] Compiling Fuzi Node.swift
[52/57] Emitting module Fuzi
[53/57] Compiling Fuzi Helpers.swift
[54/57] Compiling Fuzi Error.swift
[55/57] Compiling Fuzi Document.swift
[56/57] Compiling Fuzi Queryable.swift
[57/57] Compiling Fuzi NodeSet.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[58/59] Emitting module AlamoFuzi
/Users/admin/builder/spi-builder-workspace/Sources/AlamoFuzi.swift:44:115: error: 'XMLDocument' is ambiguous for type lookup in this context
 42 |
 43 | public struct XMLSerializer: ResponseSerializer {
 44 |     public func serialize(request: URLRequest?, response: HTTPURLResponse?, data: Data?, error: Error?) throws -> XMLDocument {
    |                                                                                                                   `- error: 'XMLDocument' is ambiguous for type lookup in this context
 45 |         // Call the existing StringResponseSerializer to get many behaviors automatically.
 46 |         let data = try DataResponseSerializer().serialize(request: request,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Fuzi/Sources/Document.swift:26:12: note: found this candidate
 24 |
 25 | /// XML document which can be searched and queried.
 26 | open class XMLDocument {
    |            `- note: found this candidate
 27 |   // MARK: - Document Attributes
 28 |   /// The XML version.
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h:54:12: note: found this candidate
 52 | 	@discussion Note: if the application of a method would result in more than one element in the children array, an exception is thrown. Trying to add a document, namespace, attribute, or node with a parent also throws an exception. To add a node with a parent first detach or create a copy of it.
 53 | */
 54 | @interface NSXMLDocument : NSXMLNode {
    |            `- note: found this candidate
 55 | @protected
 56 | 	NSString *_encoding;
/Users/admin/builder/spi-builder-workspace/Sources/AlamoFuzi.swift:43:15: error: type 'XMLSerializer' does not conform to protocol 'DataResponseSerializerProtocol'
 41 | }
 42 |
 43 | public struct XMLSerializer: ResponseSerializer {
    |               `- error: type 'XMLSerializer' does not conform to protocol 'DataResponseSerializerProtocol'
 44 |     public func serialize(request: URLRequest?, response: HTTPURLResponse?, data: Data?, error: Error?) throws -> XMLDocument {
 45 |         // Call the existing StringResponseSerializer to get many behaviors automatically.
/Users/admin/builder/spi-builder-workspace/Sources/AlamoFuzi.swift:43:15: error: type 'XMLSerializer' does not conform to protocol 'DownloadResponseSerializerProtocol'
 41 | }
 42 |
 43 | public struct XMLSerializer: ResponseSerializer {
    |               |- error: type 'XMLSerializer' does not conform to protocol 'DownloadResponseSerializerProtocol'
    |               `- note: add stubs for conformance
 44 |     public func serialize(request: URLRequest?, response: HTTPURLResponse?, data: Data?, error: Error?) throws -> XMLDocument {
 45 |         // Call the existing StringResponseSerializer to get many behaviors automatically.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/ResponseSerialization.swift:30:20: note: protocol requires nested type 'SerializedObject'
 28 | public protocol DataResponseSerializerProtocol<SerializedObject>: Sendable {
 29 |     /// The type of serialized object to be created.
 30 |     associatedtype SerializedObject: Sendable
    |                    `- note: protocol requires nested type 'SerializedObject'
 31 |
 32 |     /// Serialize the response `Data` into the provided type.
/Users/admin/builder/spi-builder-workspace/Sources/AlamoFuzi.swift:132:74: error: 'XMLDocument' is ambiguous for type lookup in this context
130 |     @discardableResult
131 |     public func responseXML(queue: DispatchQueue = .main,
132 |                             completionHandler: @escaping (AFDataResponse<XMLDocument>) -> Void) -> Self {
    |                                                                          `- error: 'XMLDocument' is ambiguous for type lookup in this context
133 |         return response(queue: queue,
134 |                         responseSerializer: XMLSerializer(),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Fuzi/Sources/Document.swift:26:12: note: found this candidate
 24 |
 25 | /// XML document which can be searched and queried.
 26 | open class XMLDocument {
    |            `- note: found this candidate
 27 |   // MARK: - Document Attributes
 28 |   /// The XML version.
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h:54:12: note: found this candidate
 52 | 	@discussion Note: if the application of a method would result in more than one element in the children array, an exception is thrown. Trying to add a document, namespace, attribute, or node with a parent also throws an exception. To add a node with a parent first detach or create a copy of it.
 53 | */
 54 | @interface NSXMLDocument : NSXMLNode {
    |            `- note: found this candidate
 55 | @protected
 56 | 	NSString *_encoding;
[59/59] Compiling AlamoFuzi AlamoFuzi.swift
/Users/admin/builder/spi-builder-workspace/Sources/AlamoFuzi.swift:44:115: error: 'XMLDocument' is ambiguous for type lookup in this context
 42 |
 43 | public struct XMLSerializer: ResponseSerializer {
 44 |     public func serialize(request: URLRequest?, response: HTTPURLResponse?, data: Data?, error: Error?) throws -> XMLDocument {
    |                                                                                                                   `- error: 'XMLDocument' is ambiguous for type lookup in this context
 45 |         // Call the existing StringResponseSerializer to get many behaviors automatically.
 46 |         let data = try DataResponseSerializer().serialize(request: request,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Fuzi/Sources/Document.swift:26:12: note: found this candidate
 24 |
 25 | /// XML document which can be searched and queried.
 26 | open class XMLDocument {
    |            `- note: found this candidate
 27 |   // MARK: - Document Attributes
 28 |   /// The XML version.
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h:54:12: note: found this candidate
 52 | 	@discussion Note: if the application of a method would result in more than one element in the children array, an exception is thrown. Trying to add a document, namespace, attribute, or node with a parent also throws an exception. To add a node with a parent first detach or create a copy of it.
 53 | */
 54 | @interface NSXMLDocument : NSXMLNode {
    |            `- note: found this candidate
 55 | @protected
 56 | 	NSString *_encoding;
/Users/admin/builder/spi-builder-workspace/Sources/AlamoFuzi.swift:43:15: error: type 'XMLSerializer' does not conform to protocol 'DataResponseSerializerProtocol'
 41 | }
 42 |
 43 | public struct XMLSerializer: ResponseSerializer {
    |               `- error: type 'XMLSerializer' does not conform to protocol 'DataResponseSerializerProtocol'
 44 |     public func serialize(request: URLRequest?, response: HTTPURLResponse?, data: Data?, error: Error?) throws -> XMLDocument {
 45 |         // Call the existing StringResponseSerializer to get many behaviors automatically.
/Users/admin/builder/spi-builder-workspace/Sources/AlamoFuzi.swift:43:15: error: type 'XMLSerializer' does not conform to protocol 'DownloadResponseSerializerProtocol'
 41 | }
 42 |
 43 | public struct XMLSerializer: ResponseSerializer {
    |               |- error: type 'XMLSerializer' does not conform to protocol 'DownloadResponseSerializerProtocol'
    |               `- note: add stubs for conformance
 44 |     public func serialize(request: URLRequest?, response: HTTPURLResponse?, data: Data?, error: Error?) throws -> XMLDocument {
 45 |         // Call the existing StringResponseSerializer to get many behaviors automatically.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/ResponseSerialization.swift:30:20: note: protocol requires nested type 'SerializedObject'
 28 | public protocol DataResponseSerializerProtocol<SerializedObject>: Sendable {
 29 |     /// The type of serialized object to be created.
 30 |     associatedtype SerializedObject: Sendable
    |                    `- note: protocol requires nested type 'SerializedObject'
 31 |
 32 |     /// Serialize the response `Data` into the provided type.
/Users/admin/builder/spi-builder-workspace/Sources/AlamoFuzi.swift:132:74: error: 'XMLDocument' is ambiguous for type lookup in this context
130 |     @discardableResult
131 |     public func responseXML(queue: DispatchQueue = .main,
132 |                             completionHandler: @escaping (AFDataResponse<XMLDocument>) -> Void) -> Self {
    |                                                                          `- error: 'XMLDocument' is ambiguous for type lookup in this context
133 |         return response(queue: queue,
134 |                         responseSerializer: XMLSerializer(),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Fuzi/Sources/Document.swift:26:12: note: found this candidate
 24 |
 25 | /// XML document which can be searched and queried.
 26 | open class XMLDocument {
    |            `- note: found this candidate
 27 |   // MARK: - Document Attributes
 28 |   /// The XML version.
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLDocument.h:54:12: note: found this candidate
 52 | 	@discussion Note: if the application of a method would result in more than one element in the children array, an exception is thrown. Trying to add a document, namespace, attribute, or node with a parent also throws an exception. To add a node with a parent first detach or create a copy of it.
 53 | */
 54 | @interface NSXMLDocument : NSXMLNode {
    |            `- note: found this candidate
 55 | @protected
 56 | 	NSString *_encoding;
Fetching https://github.com/Alamofire/Alamofire
Fetching https://github.com/cezheng/Fuzi
[1/1315] Fetching fuzi
[869/31456] Fetching fuzi, alamofire
Fetched https://github.com/cezheng/Fuzi from cache (0.95s)
[302/30141] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire from cache (5.43s)
Computing version for https://github.com/cezheng/Fuzi
Computed https://github.com/cezheng/Fuzi at 3.1.3 (5.99s)
Computing version for https://github.com/Alamofire/Alamofire
Computed https://github.com/Alamofire/Alamofire at 5.10.2 (0.45s)
Creating working copy for https://github.com/cezheng/Fuzi
Working copy of https://github.com/cezheng/Fuzi resolved at 3.1.3
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