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 EZNetworking, reference main (539241), with Swift 6.2 (beta) for macOS (Xcode) using Xcode 26.0 on 13 Sep 2025 05:12:51 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme EZNetworking -destination platform=macOS,arch=arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Aldo10012/EZNetworking.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Aldo10012/EZNetworking
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 5392414 Merge pull request #36 from Aldo10012/remove_image_download
Cloned https://github.com/Aldo10012/EZNetworking.git
Revision (git rev-parse @):
5392414c0799a2ff025796230e626ba144bd9b0f
SUCCESS checkout https://github.com/Aldo10012/EZNetworking.git at main
========================================
Build
========================================
Selected platform:         macosXcodebuild
Swift version:             6.2
Building package at path:  $PWD
https://github.com/Aldo10012/EZNetworking.git
Command line invocation:
    /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolve Package Graph
Resolved source packages:
  EZNetworking: /Users/admin/builder/spi-builder-workspace
resolved source packages: EZNetworking
{
  "dependencies" : [
  ],
  "manifest_display_name" : "EZNetworking",
  "name" : "EZNetworking",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "EZNetworking",
      "targets" : [
        "EZNetworking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EZNetworkingTests",
      "module_type" : "SwiftTarget",
      "name" : "EZNetworkingTests",
      "path" : "Tests/EZNetworkingTests",
      "sources" : [
        "Decoding/RequestDecoderTests.swift",
        "Encoders/HTTPHeaderEncoderTests.swift",
        "Encoders/HTTPParameterEncoderTests.swift",
        "Error/InternalError/InternalErrorTests.swift",
        "Error/StatusCode/HTTPStatusCodeTypeTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPClientErrorStatusTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPInformationalStatusTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPRedirectionStatusTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPServerErrorStatusTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPSuccessStatusTests.swift",
        "HTTP/HTTPBodyTests.swift",
        "HTTP/HTTPHeaderTests.swift",
        "HTTP/HTTPMethodTests.swift",
        "HTTP/HTTPParameterTests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionDataDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionDownloadDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionStreamDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionTaskDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionWebSocketDelegate+Tests.swift",
        "Mocks/Mock-Codeable.swift",
        "Mocks/Mock-JSON.swift",
        "Mocks/MockURLResponseValidator.swift",
        "Mocks/MockURLSession.swift",
        "Request/RequestBuilderTests.swift",
        "Request/RequestFactoryTests.swift",
        "Request/RequestTests.swift",
        "Util/Downloader/FileDownloadableTests.swift",
        "Util/Performers/RequestPerformable_asyncAwait_Tests.swift",
        "Util/Performers/RequestPerformable_callbacks_Tests.swift",
        "Util/Performers/RequestPerformable_publisher_Tests.swift",
        "Validator/ResponseValidatorTests.swift"
      ],
      "target_dependencies" : [
        "EZNetworking"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EZNetworking",
      "module_type" : "SwiftTarget",
      "name" : "EZNetworking",
      "path" : "Sources/EZNetworking",
      "product_memberships" : [
        "EZNetworking"
      ],
      "sources" : [
        "Decoding/RequestDecoder.swift",
        "Encoders/HTTPHeaderEncoder.swift",
        "Encoders/HTTPParameterEncoder.swift",
        "Error/InternalError/InternalError.swift",
        "Error/NetworkingError.swift",
        "Error/StatusCodeError/HTTPStatusCodeType.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPClientErrorStatus.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPInformationalStatus.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPRedirectionStatus.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPServerErrorStatus.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPSuccessStatus.swift",
        "HTTP/HTTPBody.swift",
        "HTTP/HTTPHeader.swift",
        "HTTP/HTTPMethod.swift",
        "HTTP/HTTPParameters.swift",
        "Interceptors/Protocols/AuthenticationInterceptor.swift",
        "Interceptors/Protocols/CacheInterceptor.swift",
        "Interceptors/Protocols/DataTaskInterceptor.swift",
        "Interceptors/Protocols/DownloadTaskInterceptor.swift",
        "Interceptors/Protocols/MetricsInterceptor.swift",
        "Interceptors/Protocols/RedirectInterceptor.swift",
        "Interceptors/Protocols/StreamTaskInterceptor.swift",
        "Interceptors/Protocols/TaskLifecycleInterceptor.swift",
        "Interceptors/Protocols/WebSocketTaskInterceptor.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDataDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDownloadDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionStreamDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionTaskDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift",
        "Interceptors/SessionDelegate.swift",
        "Other/EmptyResponse.swift",
        "Other/URLSessionTaskProtocol.swift",
        "Request/Request.swift",
        "Request/RequestBuilder.swift",
        "Request/RequestFactory.swift",
        "Util/Downloader/FileDownloadable.swift",
        "Util/Performers/RequestPerformer.swift",
        "Validator/ResponseValidator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "EZNetworking"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme EZNetworking -destination platform=macOS,arch=arm64
Command line invocation:
    /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme EZNetworking -destination platform=macOS,arch=arm64
Resolve Package Graph
Resolved source packages:
  EZNetworking: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'EZNetworking' in project 'EZNetworking'
        ➜ Explicit dependency on target 'EZNetworking' in project 'EZNetworking'
    Target 'EZNetworking' in project 'EZNetworking' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: c0d5f092a6a62ab9d733422356acdf48
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/c0d5f092a6a62ab9d733422356acdf48.xcbuilddata
ClangStatCache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx26.0-25A5279m-f7c1d129d9d5414f2afbbad1fd6fd62e.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx26.0-25A5279m-f7c1d129d9d5414f2afbbad1fd6fd62e.sdkstatcache
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/EZNetworking.modulemap (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/EZNetworking.modulemap
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/EZNetworking.DependencyStaticMetadataFileList (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/EZNetworking.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/EZNetworking.DependencyMetadataFileList (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/EZNetworking.DependencyMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.SwiftConstValuesFileList (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking_const_extract_protocols.json (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.SwiftFileList (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.LinkFileList (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-OutputFileMap.json (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-OutputFileMap.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/EZNetworking.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/EZNetworking.modulemap (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/EZNetworking.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps
SwiftDriver EZNetworking normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EZNetworking -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -DXcode -plugin-path /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx26.0-25A5279m-f7c1d129d9d5414f2afbbad1fd6fd62e.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -explicit-module-build -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -clang-scanner-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -sdk-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_stdarg-771G992C02Z1PKJN0NBXDZ54L.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_SwiftConcurrencyShims-74FSHJ7Y9OFU31XW3USCCV6H9.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_AvailabilityInternal-4F6W88HH2I5QECJK4DQWSN688.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_stdbool-CB7S9KW6BCE8K3W9BQR8Z8L7D.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/ptrcheck-BOGP854PAM05OU9SEQ6T6CKZF.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/SwiftShims-6TL9KT83HX9WCNN6MUJ4RXY13.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/ptrauth-B1DEY84NT78VC91CZTGCR6P2G.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_stddef-8Z3DGWJN4BZ05LEF7ZV8ZZXOK.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_float-ETXGO0CCN50NJJJ1T7O9OG7QY.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_DarwinFoundation1-CXIFL9FUFZMGL45NUHJFXF7KI.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_limits-2H78LDXQL2QSOBU9E8S6W5Q85.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_DarwinFoundation2-9DRP2UGNZ7B3VFK2LROWNHXAA.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_stdint-6ZZNJZ45HVZSO0GOX4U8979M9.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/libDER-1FEZ8WXDGBOZ9ORWT6DRYUDKD.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_DarwinFoundation3-4QFW3FVE99J7ELINJEIAOC3PZ.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/_Builtin_inttypes-9ZUSOOTZY4TE6H1909JZHSICE.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Darwin-EVRLXEQT1RUE9WJZHPXUROVRH.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/libkern-DUJTO8A4UY7XH87NSAUP6Y992.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/launch-6Y7U46VS0V2C4QFLFRCY3W0XL.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/MachO-6NBUGIV2QW8A8LH005H34YCE.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/ObjectiveC-BQP0R8JLYV2F1CPSK0VA3XD2R.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/os_object-4SXQ0NNFO6D0W9PZ9T713HIVF.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/os_workgroup-E6P09CF5VM5JV7V9R2RRL1RC3.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Dispatch-CFV17P5GIIS6XIDB3Z4JNTJHB.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/CoreFoundation-881WXGYR1RBOJ7T336TLGWOQ1.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/XPC-B0XW8B8UX4R6SLAS5KEFFINY5.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Security-8QVMIAJK18QWY0JDBLN5CE7RK.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/CFNetwork-B2MMD5Z4G6HM52GN9F4MO00HT.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/IOKit-ABLA7SJUDIMMX99SIOZ8SN15.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/DiskArbitration-18ZXKRRAO7S8MJT79AVBEGMSD.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/CoreServices-32XM9N84T9KYPA839NVNUSWS3.pcm
SwiftExplicitDependencyGeneratePcm arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Foundation-2AI4IIFGG13NJB8A41NV2MF78.pcm
SwiftEmitModule normal arm64 Emitting\ module\ for\ EZNetworking (in target 'EZNetworking' from project 'EZNetworking')
EmitSwiftModule normal arm64 (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:6:59: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didOpenWithProtocol protocol: String?)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:6:10: note: add @available attribute to enclosing instance method
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didOpenWithProtocol protocol: String?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:4:17: note: add @available attribute to enclosing protocol
public protocol WebSocketTaskInterceptor: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:9:59: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:9:10: note: add @available attribute to enclosing instance method
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:4:17: note: add @available attribute to enclosing protocol
public protocol WebSocketTaskInterceptor: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:9:108: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?)
                                                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:9:10: note: add @available attribute to enclosing instance method
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:4:17: note: add @available attribute to enclosing protocol
public protocol WebSocketTaskInterceptor: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:5:42: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
                          webSocketTask: URLSessionWebSocketTask,
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:4:17: note: add @available attribute to enclosing instance method
    public func urlSession(_ session: URLSession,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:3:1: note: add @available attribute to enclosing extension
extension SessionDelegate: URLSessionWebSocketDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:11:42: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
                          webSocketTask: URLSessionWebSocketTask,
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:10:17: note: add @available attribute to enclosing instance method
    public func urlSession(_ session: URLSession,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:3:1: note: add @available attribute to enclosing extension
extension SessionDelegate: URLSessionWebSocketDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:12:51: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
                          didCloseWith closeCode: URLSessionWebSocketTask.CloseCode,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:10:17: note: add @available attribute to enclosing instance method
    public func urlSession(_ session: URLSession,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:3:1: note: add @available attribute to enclosing extension
extension SessionDelegate: URLSessionWebSocketDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:14:1: error: protocol 'URLSessionTaskProtocol' requires 'data(for:delegate:)' to be available in macOS 10.13 and newer
extension URLSession: URLSessionTaskProtocol {}
^
Foundation.URLSession.data:2:13: note: 'data(for:delegate:)' declared here
public func data(for request: URLRequest, delegate: (any URLSessionTaskDelegate)? = nil) async throws -> (Data, URLResponse)}
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:4:10: note: protocol requirement here
    func data(for request: URLRequest, delegate: (URLSessionTaskDelegate)?) async throws -> (Data, URLResponse)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:14:1: error: protocol 'URLSessionTaskProtocol' requires 'data(from:delegate:)' to be available in macOS 10.13 and newer
extension URLSession: URLSessionTaskProtocol {}
^
Foundation.URLSession.data:2:13: note: 'data(from:delegate:)' declared here
public func data(from url: URL, delegate: (any URLSessionTaskDelegate)? = nil) async throws -> (Data, URLResponse)}
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:5:10: note: protocol requirement here
    func data(from url: URL, delegate: (URLSessionTaskDelegate)?) async throws -> (Data, URLResponse)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:14:1: error: protocol 'URLSessionTaskProtocol' requires 'download(from:delegate:)' to be available in macOS 10.13 and newer
extension URLSession: URLSessionTaskProtocol {}
^
Foundation.URLSession.download:2:13: note: 'download(from:delegate:)' declared here
public func download(from url: URL, delegate: (any URLSessionTaskDelegate)? = nil) async throws -> (URL, URLResponse)}
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:11:10: note: protocol requirement here
    func download(from url: URL, delegate: (URLSessionTaskDelegate)?) async throws -> (URL, URLResponse)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:10:77: error: 'AnyPublisher' is only available in macOS 10.15 or newer
    func downloadPublisher(url: URL, progress: DownloadProgressHandler?) -> AnyPublisher<URL, NetworkingError>
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:10:10: note: add @available attribute to enclosing instance method
    func downloadPublisher(url: URL, progress: DownloadProgressHandler?) -> AnyPublisher<URL, NetworkingError>
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:7:17: note: add @available attribute to enclosing protocol
public protocol FileDownloadable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:85:84: error: 'AnyPublisher' is only available in macOS 10.15 or newer
    public func downloadPublisher(url: URL, progress: DownloadProgressHandler?) -> AnyPublisher<URL, NetworkingError> {
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:85:17: note: add @available attribute to enclosing instance method
    public func downloadPublisher(url: URL, progress: DownloadProgressHandler?) -> AnyPublisher<URL, NetworkingError> {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:14:14: note: add @available attribute to enclosing class
public class FileDownloader: FileDownloadable {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:7:96: error: 'AnyPublisher' is only available in macOS 10.15 or newer
    func performPublisher<T: Decodable>(request: Request, decodeTo decodableObject: T.Type) -> AnyPublisher<T, NetworkingError>
                                                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:7:10: note: add @available attribute to enclosing instance method
    func performPublisher<T: Decodable>(request: Request, decodeTo decodableObject: T.Type) -> AnyPublisher<T, NetworkingError>
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:4:17: note: add @available attribute to enclosing protocol
public protocol RequestPerformable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:57:103: error: 'AnyPublisher' is only available in macOS 10.15 or newer
    public func performPublisher<T: Decodable>(request: Request, decodeTo decodableObject: T.Type) -> AnyPublisher<T, NetworkingError> {
                                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:57:17: note: add @available attribute to enclosing instance method
    public func performPublisher<T: Decodable>(request: Request, decodeTo decodableObject: T.Type) -> AnyPublisher<T, NetworkingError> {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:10:15: note: add @available attribute to enclosing struct
public struct RequestPerformer: RequestPerformable {
              ^
Failed frontend command:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Decoding/RequestDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPHeaderEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPParameterEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/InternalError/InternalError.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/NetworkingError.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/HTTPStatusCodeType.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPClientErrorStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPInformationalStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPRedirectionStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPServerErrorStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPSuccessStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPHeader.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/AuthenticationInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/CacheInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DataTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DownloadTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/MetricsInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/RedirectInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/StreamTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/TaskLifecycleInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDataDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDownloadDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionStreamDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionTaskDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/EmptyResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Validator/ResponseValidator.swift -target arm64-apple-macos10.13 -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins/libFoundationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server\#FoundationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins/libObservationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server\#ObservationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins/libSwiftMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server\#SwiftMacros -disable-implicit-swift-modules -Xcc -fno-implicit-modules -Xcc -fno-implicit-module-maps -explicit-swift-module-map-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-dependencies-1.json -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -Xcc -fno-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D SWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx26.0-25A5279m-f7c1d129d9d5414f2afbbad1fd6fd62e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -no-auto-bridging-header-chaining -module-name EZNetworking -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 26.0 -target-sdk-name macosx26.0 -clang-target arm64-apple-macos26.0 -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.abi.json
SwiftCompile normal arm64 Compiling\ FileDownloadable.swift,\ RequestPerformer.swift,\ ResponseValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Validator/ResponseValidator.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Validator/ResponseValidator.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ HTTPHeader.swift,\ HTTPMethod.swift,\ HTTPParameters.swift,\ AuthenticationInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPHeader.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/AuthenticationInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPHeader.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPMethod.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPParameters.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/AuthenticationInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SessionDelegate+URLSessionDataDelegate.swift,\ SessionDelegate+URLSessionDelegate.swift,\ SessionDelegate+URLSessionDownloadDelegate.swift,\ SessionDelegate+URLSessionStreamDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDataDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDownloadDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionStreamDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDataDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDownloadDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionStreamDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ RequestDecoder.swift,\ HTTPHeaderEncoder.swift,\ HTTPParameterEncoder.swift,\ InternalError.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Decoding/RequestDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPHeaderEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPParameterEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/InternalError/InternalError.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Decoding/RequestDecoder.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPHeaderEncoder.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPParameterEncoder.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/InternalError/InternalError.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ RedirectInterceptor.swift,\ StreamTaskInterceptor.swift,\ TaskLifecycleInterceptor.swift,\ WebSocketTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/RedirectInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/StreamTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/TaskLifecycleInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/RedirectInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/StreamTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/TaskLifecycleInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ URLSessionTaskProtocol.swift,\ Request.swift,\ RequestBuilder.swift,\ RequestFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestFactory.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/Request.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestBuilder.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestFactory.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ HTTPRedirectionStatus.swift,\ HTTPServerErrorStatus.swift,\ HTTPSuccessStatus.swift,\ HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPRedirectionStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPServerErrorStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPSuccessStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPBody.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPRedirectionStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPServerErrorStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPSuccessStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPBody.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ NetworkingError.swift,\ HTTPStatusCodeType.swift,\ HTTPClientErrorStatus.swift,\ HTTPInformationalStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/NetworkingError.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/HTTPStatusCodeType.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPClientErrorStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPInformationalStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/NetworkingError.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/HTTPStatusCodeType.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPClientErrorStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPInformationalStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CacheInterceptor.swift,\ DataTaskInterceptor.swift,\ DownloadTaskInterceptor.swift,\ MetricsInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/CacheInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DataTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DownloadTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/MetricsInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/CacheInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DataTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DownloadTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/MetricsInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SessionDelegate+URLSessionTaskDelegate.swift,\ SessionDelegate+URLSessionWebSocketDelegate.swift,\ SessionDelegate.swift,\ EmptyResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionTaskDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/EmptyResponse.swift (in target 'EZNetworking' from project 'EZNetworking')
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:a844b0b2a3942c54792dde717d85d0d6f6bb5ae6, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:a844b0b2a3942c54792dde717d85d0d6f6bb5ae6, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:a844b0b2a3942c54792dde717d85d0d6f6bb5ae6, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:a844b0b2a3942c54792dde717d85d0d6f6bb5ae6, name:My Mac }
** BUILD FAILED **
The following build commands failed:
	EmitSwiftModule normal arm64 (in target 'EZNetworking' from project 'EZNetworking')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ EZNetworking (in target 'EZNetworking' from project 'EZNetworking')
	Building workspace spi-builder-workspace with scheme EZNetworking
(3 failures)
Command line invocation:
    /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  EZNetworking: /Users/admin/builder/spi-builder-workspace
resolved source packages: EZNetworking
{
  "dependencies" : [
  ],
  "manifest_display_name" : "EZNetworking",
  "name" : "EZNetworking",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "EZNetworking",
      "targets" : [
        "EZNetworking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EZNetworkingTests",
      "module_type" : "SwiftTarget",
      "name" : "EZNetworkingTests",
      "path" : "Tests/EZNetworkingTests",
      "sources" : [
        "Decoding/RequestDecoderTests.swift",
        "Encoders/HTTPHeaderEncoderTests.swift",
        "Encoders/HTTPParameterEncoderTests.swift",
        "Error/InternalError/InternalErrorTests.swift",
        "Error/StatusCode/HTTPStatusCodeTypeTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPClientErrorStatusTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPInformationalStatusTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPRedirectionStatusTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPServerErrorStatusTests.swift",
        "Error/StatusCode/StatusCodeTypes/HTTPSuccessStatusTests.swift",
        "HTTP/HTTPBodyTests.swift",
        "HTTP/HTTPHeaderTests.swift",
        "HTTP/HTTPMethodTests.swift",
        "HTTP/HTTPParameterTests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionDataDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionDownloadDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionStreamDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionTaskDelegate+Tests.swift",
        "Interceptors/SessoionDelegate+Extensions+Tests/SessionDelegate+URLSessionWebSocketDelegate+Tests.swift",
        "Mocks/Mock-Codeable.swift",
        "Mocks/Mock-JSON.swift",
        "Mocks/MockURLResponseValidator.swift",
        "Mocks/MockURLSession.swift",
        "Request/RequestBuilderTests.swift",
        "Request/RequestFactoryTests.swift",
        "Request/RequestTests.swift",
        "Util/Downloader/FileDownloadableTests.swift",
        "Util/Performers/RequestPerformable_asyncAwait_Tests.swift",
        "Util/Performers/RequestPerformable_callbacks_Tests.swift",
        "Util/Performers/RequestPerformable_publisher_Tests.swift",
        "Validator/ResponseValidatorTests.swift"
      ],
      "target_dependencies" : [
        "EZNetworking"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EZNetworking",
      "module_type" : "SwiftTarget",
      "name" : "EZNetworking",
      "path" : "Sources/EZNetworking",
      "product_memberships" : [
        "EZNetworking"
      ],
      "sources" : [
        "Decoding/RequestDecoder.swift",
        "Encoders/HTTPHeaderEncoder.swift",
        "Encoders/HTTPParameterEncoder.swift",
        "Error/InternalError/InternalError.swift",
        "Error/NetworkingError.swift",
        "Error/StatusCodeError/HTTPStatusCodeType.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPClientErrorStatus.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPInformationalStatus.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPRedirectionStatus.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPServerErrorStatus.swift",
        "Error/StatusCodeError/StatusCodeTypes/HTTPSuccessStatus.swift",
        "HTTP/HTTPBody.swift",
        "HTTP/HTTPHeader.swift",
        "HTTP/HTTPMethod.swift",
        "HTTP/HTTPParameters.swift",
        "Interceptors/Protocols/AuthenticationInterceptor.swift",
        "Interceptors/Protocols/CacheInterceptor.swift",
        "Interceptors/Protocols/DataTaskInterceptor.swift",
        "Interceptors/Protocols/DownloadTaskInterceptor.swift",
        "Interceptors/Protocols/MetricsInterceptor.swift",
        "Interceptors/Protocols/RedirectInterceptor.swift",
        "Interceptors/Protocols/StreamTaskInterceptor.swift",
        "Interceptors/Protocols/TaskLifecycleInterceptor.swift",
        "Interceptors/Protocols/WebSocketTaskInterceptor.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDataDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDownloadDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionStreamDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionTaskDelegate.swift",
        "Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift",
        "Interceptors/SessionDelegate.swift",
        "Other/EmptyResponse.swift",
        "Other/URLSessionTaskProtocol.swift",
        "Request/Request.swift",
        "Request/RequestBuilder.swift",
        "Request/RequestFactory.swift",
        "Util/Downloader/FileDownloadable.swift",
        "Util/Performers/RequestPerformer.swift",
        "Validator/ResponseValidator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "EZNetworking"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme EZNetworking -destination platform=macOS,arch=arm64
Command line invocation:
    /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme EZNetworking -destination platform=macOS,arch=arm64
Resolve Package Graph
Resolved source packages:
  EZNetworking: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'EZNetworking' in project 'EZNetworking'
        ➜ Explicit dependency on target 'EZNetworking' in project 'EZNetworking'
    Target 'EZNetworking' in project 'EZNetworking' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ClangStatCache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx26.0-25A5279m-f7c1d129d9d5414f2afbbad1fd6fd62e.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx26.0-25A5279m-f7c1d129d9d5414f2afbbad1fd6fd62e.sdkstatcache
SwiftDriver EZNetworking normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EZNetworking -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -DXcode -plugin-path /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx26.0-25A5279m-f7c1d129d9d5414f2afbbad1fd6fd62e.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -explicit-module-build -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -clang-scanner-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -sdk-module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ HTTPHeader.swift,\ HTTPMethod.swift,\ HTTPParameters.swift,\ AuthenticationInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPHeader.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/AuthenticationInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPHeader.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPMethod.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPParameters.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/AuthenticationInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SessionDelegate+URLSessionDataDelegate.swift,\ SessionDelegate+URLSessionDelegate.swift,\ SessionDelegate+URLSessionDownloadDelegate.swift,\ SessionDelegate+URLSessionStreamDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDataDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDownloadDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionStreamDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDataDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDownloadDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionStreamDelegate.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ FileDownloadable.swift,\ RequestPerformer.swift,\ ResponseValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Validator/ResponseValidator.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Validator/ResponseValidator.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ EZNetworking (in target 'EZNetworking' from project 'EZNetworking')
Failed frontend command:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Decoding/RequestDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPHeaderEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPParameterEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/InternalError/InternalError.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/NetworkingError.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/HTTPStatusCodeType.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPClientErrorStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPInformationalStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPRedirectionStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPServerErrorStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPSuccessStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPHeader.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/AuthenticationInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/CacheInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DataTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DownloadTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/MetricsInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/RedirectInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/StreamTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/TaskLifecycleInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDataDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionDownloadDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionStreamDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionTaskDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/EmptyResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Validator/ResponseValidator.swift -target arm64-apple-macos10.13 -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins/libFoundationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server\#FoundationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins/libObservationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server\#ObservationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins/libSwiftMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server\#SwiftMacros -disable-implicit-swift-modules -Xcc -fno-implicit-modules -Xcc -fno-implicit-module-maps -explicit-swift-module-map-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-dependencies-1.json -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -Xcc -fno-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D SWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx26.0-25A5279m-f7c1d129d9d5414f2afbbad1fd6fd62e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -no-auto-bridging-header-chaining -module-name EZNetworking -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 26.0 -target-sdk-name macosx26.0 -clang-target arm64-apple-macos26.0 -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EZNetworking.build/Debug/EZNetworking.build/Objects-normal/arm64/EZNetworking.abi.json
EmitSwiftModule normal arm64 (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:6:59: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didOpenWithProtocol protocol: String?)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:6:10: note: add @available attribute to enclosing instance method
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didOpenWithProtocol protocol: String?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:4:17: note: add @available attribute to enclosing protocol
public protocol WebSocketTaskInterceptor: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:9:59: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:9:10: note: add @available attribute to enclosing instance method
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:4:17: note: add @available attribute to enclosing protocol
public protocol WebSocketTaskInterceptor: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:9:108: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?)
                                                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:9:10: note: add @available attribute to enclosing instance method
    func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift:4:17: note: add @available attribute to enclosing protocol
public protocol WebSocketTaskInterceptor: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:5:42: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
                          webSocketTask: URLSessionWebSocketTask,
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:4:17: note: add @available attribute to enclosing instance method
    public func urlSession(_ session: URLSession,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:3:1: note: add @available attribute to enclosing extension
extension SessionDelegate: URLSessionWebSocketDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:11:42: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
                          webSocketTask: URLSessionWebSocketTask,
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:10:17: note: add @available attribute to enclosing instance method
    public func urlSession(_ session: URLSession,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:3:1: note: add @available attribute to enclosing extension
extension SessionDelegate: URLSessionWebSocketDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:12:51: error: 'URLSessionWebSocketTask' is only available in macOS 10.15 or newer
                          didCloseWith closeCode: URLSessionWebSocketTask.CloseCode,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:10:17: note: add @available attribute to enclosing instance method
    public func urlSession(_ session: URLSession,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift:3:1: note: add @available attribute to enclosing extension
extension SessionDelegate: URLSessionWebSocketDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:14:1: error: protocol 'URLSessionTaskProtocol' requires 'data(for:delegate:)' to be available in macOS 10.13 and newer
extension URLSession: URLSessionTaskProtocol {}
^
Foundation.URLSession.data:2:13: note: 'data(for:delegate:)' declared here
public func data(for request: URLRequest, delegate: (any URLSessionTaskDelegate)? = nil) async throws -> (Data, URLResponse)}
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:4:10: note: protocol requirement here
    func data(for request: URLRequest, delegate: (URLSessionTaskDelegate)?) async throws -> (Data, URLResponse)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:14:1: error: protocol 'URLSessionTaskProtocol' requires 'data(from:delegate:)' to be available in macOS 10.13 and newer
extension URLSession: URLSessionTaskProtocol {}
^
Foundation.URLSession.data:2:13: note: 'data(from:delegate:)' declared here
public func data(from url: URL, delegate: (any URLSessionTaskDelegate)? = nil) async throws -> (Data, URLResponse)}
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:5:10: note: protocol requirement here
    func data(from url: URL, delegate: (URLSessionTaskDelegate)?) async throws -> (Data, URLResponse)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:14:1: error: protocol 'URLSessionTaskProtocol' requires 'download(from:delegate:)' to be available in macOS 10.13 and newer
extension URLSession: URLSessionTaskProtocol {}
^
Foundation.URLSession.download:2:13: note: 'download(from:delegate:)' declared here
public func download(from url: URL, delegate: (any URLSessionTaskDelegate)? = nil) async throws -> (URL, URLResponse)}
            ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift:11:10: note: protocol requirement here
    func download(from url: URL, delegate: (URLSessionTaskDelegate)?) async throws -> (URL, URLResponse)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:10:77: error: 'AnyPublisher' is only available in macOS 10.15 or newer
    func downloadPublisher(url: URL, progress: DownloadProgressHandler?) -> AnyPublisher<URL, NetworkingError>
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:10:10: note: add @available attribute to enclosing instance method
    func downloadPublisher(url: URL, progress: DownloadProgressHandler?) -> AnyPublisher<URL, NetworkingError>
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:7:17: note: add @available attribute to enclosing protocol
public protocol FileDownloadable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:85:84: error: 'AnyPublisher' is only available in macOS 10.15 or newer
    public func downloadPublisher(url: URL, progress: DownloadProgressHandler?) -> AnyPublisher<URL, NetworkingError> {
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:85:17: note: add @available attribute to enclosing instance method
    public func downloadPublisher(url: URL, progress: DownloadProgressHandler?) -> AnyPublisher<URL, NetworkingError> {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Downloader/FileDownloadable.swift:14:14: note: add @available attribute to enclosing class
public class FileDownloader: FileDownloadable {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:7:96: error: 'AnyPublisher' is only available in macOS 10.15 or newer
    func performPublisher<T: Decodable>(request: Request, decodeTo decodableObject: T.Type) -> AnyPublisher<T, NetworkingError>
                                                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:7:10: note: add @available attribute to enclosing instance method
    func performPublisher<T: Decodable>(request: Request, decodeTo decodableObject: T.Type) -> AnyPublisher<T, NetworkingError>
         ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:4:17: note: add @available attribute to enclosing protocol
public protocol RequestPerformable {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:57:103: error: 'AnyPublisher' is only available in macOS 10.15 or newer
    public func performPublisher<T: Decodable>(request: Request, decodeTo decodableObject: T.Type) -> AnyPublisher<T, NetworkingError> {
                                                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:57:17: note: add @available attribute to enclosing instance method
    public func performPublisher<T: Decodable>(request: Request, decodeTo decodableObject: T.Type) -> AnyPublisher<T, NetworkingError> {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Util/Performers/RequestPerformer.swift:10:15: note: add @available attribute to enclosing struct
public struct RequestPerformer: RequestPerformable {
              ^
SwiftCompile normal arm64 Compiling\ RequestDecoder.swift,\ HTTPHeaderEncoder.swift,\ HTTPParameterEncoder.swift,\ InternalError.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Decoding/RequestDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPHeaderEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPParameterEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/InternalError/InternalError.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Decoding/RequestDecoder.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPHeaderEncoder.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Encoders/HTTPParameterEncoder.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/InternalError/InternalError.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ NetworkingError.swift,\ HTTPStatusCodeType.swift,\ HTTPClientErrorStatus.swift,\ HTTPInformationalStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/NetworkingError.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/HTTPStatusCodeType.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPClientErrorStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPInformationalStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/NetworkingError.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/HTTPStatusCodeType.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPClientErrorStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPInformationalStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ RedirectInterceptor.swift,\ StreamTaskInterceptor.swift,\ TaskLifecycleInterceptor.swift,\ WebSocketTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/RedirectInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/StreamTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/TaskLifecycleInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/RedirectInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/StreamTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/TaskLifecycleInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/WebSocketTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ URLSessionTaskProtocol.swift,\ Request.swift,\ RequestBuilder.swift,\ RequestFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/Request.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestFactory.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/URLSessionTaskProtocol.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/Request.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestBuilder.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Request/RequestFactory.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ HTTPRedirectionStatus.swift,\ HTTPServerErrorStatus.swift,\ HTTPSuccessStatus.swift,\ HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPRedirectionStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPServerErrorStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPSuccessStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPBody.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPRedirectionStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPServerErrorStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Error/StatusCodeError/StatusCodeTypes/HTTPSuccessStatus.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/HTTP/HTTPBody.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CacheInterceptor.swift,\ DataTaskInterceptor.swift,\ DownloadTaskInterceptor.swift,\ MetricsInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/CacheInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DataTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DownloadTaskInterceptor.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/MetricsInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/CacheInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DataTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/DownloadTaskInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/Protocols/MetricsInterceptor.swift (in target 'EZNetworking' from project 'EZNetworking')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SessionDelegate+URLSessionTaskDelegate.swift,\ SessionDelegate+URLSessionWebSocketDelegate.swift,\ SessionDelegate.swift,\ EmptyResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionTaskDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate+Extensions/SessionDelegate+URLSessionWebSocketDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Interceptors/SessionDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EZNetworking/Other/EmptyResponse.swift (in target 'EZNetworking' from project 'EZNetworking')
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:a844b0b2a3942c54792dde717d85d0d6f6bb5ae6, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:a844b0b2a3942c54792dde717d85d0d6f6bb5ae6, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:a844b0b2a3942c54792dde717d85d0d6f6bb5ae6, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:a844b0b2a3942c54792dde717d85d0d6f6bb5ae6, name:My Mac }
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ EZNetworking (in target 'EZNetworking' from project 'EZNetworking')
	EmitSwiftModule normal arm64 (in target 'EZNetworking' from project 'EZNetworking')
	Building workspace spi-builder-workspace with scheme EZNetworking
(3 failures)
BUILD FAILURE 6.2 macosXcodebuild