This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Apexy with Swift 6.0 for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/RedMadRobot/apexy-ios.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/RedMadRobot/apexy-ios
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at c7d75f8 Add session delegate to initializer (#44)
Cloned https://github.com/RedMadRobot/apexy-ios.git
Revision (git rev-parse @):
c7d75f8c39c8ee92a7069669604c5ee0cb46be0f
SUCCESS checkout https://github.com/RedMadRobot/apexy-ios.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/RedMadRobot/apexy-ios.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/6] Write sources
[5/6] Write swift-version-6F35C1178C84523A.txt
[7/50] Compiling Apexy URLRequestBuildable.swift
[8/50] Compiling Apexy HTTPBody.swift
[9/50] Compiling Apexy ResponseObserver.swift
[10/50] Compiling Apexy ConcurrencyClient.swift
[11/50] Compiling Apexy CombineClient.swift
[12/50] Compiling Apexy Endpoint.swift
[13/50] Compiling Apexy UploadEndpoint.swift
[14/50] Emitting module Alamofire
[15/53] Emitting module Apexy
[16/53] Compiling Apexy APIResult.swift
[17/53] Compiling Apexy Client.swift
[18/53] Compiling Alamofire AFError.swift
[19/53] Compiling Alamofire Alamofire.swift
[20/53] Compiling Alamofire AlamofireExtended.swift
[21/53] Compiling Alamofire AuthenticationInterceptor.swift
[22/53] Compiling Alamofire ParameterEncoder.swift
[23/53] Compiling Alamofire ParameterEncoding.swift
[24/53] Compiling Alamofire Protected.swift
[25/53] Compiling Alamofire RedirectHandler.swift
[26/53] Compiling Alamofire Request.swift
[27/53] Compiling Alamofire RequestInterceptor.swift
[28/53] Compiling Alamofire RequestTaskMap.swift
[29/53] Compiling Alamofire Response.swift
[30/63] Compiling Alamofire CachedResponseHandler.swift
[31/63] Compiling Alamofire Combine.swift
[32/63] Compiling Alamofire Concurrency.swift
[33/63] Compiling Alamofire DispatchQueue+Alamofire.swift
[34/63] Compiling Alamofire MultipartUpload.swift
[35/63] Compiling Alamofire NetworkReachabilityManager.swift
[36/63] Compiling Alamofire Notifications.swift
[37/63] Compiling Alamofire OperationQueue+Alamofire.swift
[38/63] Compiling Alamofire ResponseSerialization.swift
[39/63] Compiling Alamofire Result+Alamofire.swift
[40/63] Compiling Alamofire RetryPolicy.swift
[41/63] Compiling ApexyLoader LoaderObservation.swift
[42/63] Compiling ApexyLoader ObservableLoader.swift
error: compile command failed due to signal 6 (use -v to see invocation)
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:76:25: warning: capture of 'endpoint' with non-sendable type 'T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 58 |     }
 59 |
 60 |     open func request<T>(
    |                       `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 61 |         _ endpoint: T,
 62 |         completionHandler: @escaping (APIResult<T.Content>) -> Void) -> Progress where T : Endpoint {
    :
 74 |             let result = APIResult<T.Content>(catching: { () throws -> T.Content in
 75 |                 if let httpResponse = response as? HTTPURLResponse {
 76 |                     try endpoint.validate(request, response: httpResponse, data: data)
    |                         `- warning: capture of 'endpoint' with non-sendable type 'T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |                 }
 78 |                 let data = data ?? Data()
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:84:13: warning: capture of 'self' with non-sendable type 'URLSessionClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | open class URLSessionClient: Client, CombineClient {
    |            `- note: class 'URLSessionClient' does not conform to the 'Sendable' protocol
  5 |
  6 |     let session: URLSession
    :
 82 |                 return try endpoint.content(from: response, with: data)
 83 |             })
 84 |             self.completionQueue.async {
    |             `- warning: capture of 'self' with non-sendable type 'URLSessionClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                 self.responseObserver?(request, response as? HTTPURLResponse, data, error)
 86 |                 completionHandler(result)
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:86:17: warning: capture of 'completionHandler' with non-sendable type '(APIResult<T.Content>) -> Void' (aka '(Result<T.Content, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 84 |             self.completionQueue.async {
 85 |                 self.responseObserver?(request, response as? HTTPURLResponse, data, error)
 86 |                 completionHandler(result)
    |                 |- warning: capture of 'completionHandler' with non-sendable type '(APIResult<T.Content>) -> Void' (aka '(Result<T.Content, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 87 |             }
 88 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:76:25: warning: capture of 'endpoint' with non-sendable type 'T' in an isolated closure; this is an error in the Swift 6 language mode
 58 |     }
 59 |
 60 |     open func request<T>(
    |                       `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 61 |         _ endpoint: T,
 62 |         completionHandler: @escaping (APIResult<T.Content>) -> Void) -> Progress where T : Endpoint {
    :
 74 |             let result = APIResult<T.Content>(catching: { () throws -> T.Content in
 75 |                 if let httpResponse = response as? HTTPURLResponse {
 76 |                     try endpoint.validate(request, response: httpResponse, data: data)
    |                         `- warning: capture of 'endpoint' with non-sendable type 'T' in an isolated closure; this is an error in the Swift 6 language mode
 77 |                 }
 78 |                 let data = data ?? Data()
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:76:43: warning: reference to captured var 'request' in concurrently-executing code; this is an error in the Swift 6 language mode
 74 |             let result = APIResult<T.Content>(catching: { () throws -> T.Content in
 75 |                 if let httpResponse = response as? HTTPURLResponse {
 76 |                     try endpoint.validate(request, response: httpResponse, data: data)
    |                                           `- warning: reference to captured var 'request' in concurrently-executing code; this is an error in the Swift 6 language mode
 77 |                 }
 78 |                 let data = data ?? Data()
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:85:17: warning: capture of 'self' with non-sendable type 'URLSessionClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | open class URLSessionClient: Client, CombineClient {
    |            `- note: class 'URLSessionClient' does not conform to the 'Sendable' protocol
  5 |
  6 |     let session: URLSession
    :
 83 |             })
 84 |             self.completionQueue.async {
 85 |                 self.responseObserver?(request, response as? HTTPURLResponse, data, error)
    |                 `- warning: capture of 'self' with non-sendable type 'URLSessionClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 86 |                 completionHandler(result)
 87 |             }
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:86:17: warning: capture of 'completionHandler' with non-sendable type '(APIResult<T.Content>) -> Void' (aka '(Result<T.Content, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 84 |             self.completionQueue.async {
 85 |                 self.responseObserver?(request, response as? HTTPURLResponse, data, error)
 86 |                 completionHandler(result)
    |                 |- warning: capture of 'completionHandler' with non-sendable type '(APIResult<T.Content>) -> Void' (aka '(Result<T.Content, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 87 |             }
 88 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:86:35: warning: capture of 'result' with non-sendable type 'APIResult<T.Content>' (aka 'Result<T.Content, any Error>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 84 |             self.completionQueue.async {
 85 |                 self.responseObserver?(request, response as? HTTPURLResponse, data, error)
 86 |                 completionHandler(result)
    |                                   `- warning: capture of 'result' with non-sendable type 'APIResult<T.Content>' (aka 'Result<T.Content, any Error>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |             }
 88 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:85:40: warning: reference to captured var 'request' in concurrently-executing code; this is an error in the Swift 6 language mode
 83 |             })
 84 |             self.completionQueue.async {
 85 |                 self.responseObserver?(request, response as? HTTPURLResponse, data, error)
    |                                        `- warning: reference to captured var 'request' in concurrently-executing code; this is an error in the Swift 6 language mode
 86 |                 completionHandler(result)
 87 |             }
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:121:85: warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
119 |         switch request {
120 |         case (let request, .data(let data)):
121 |             task = session.uploadTask(with: request, from: data, completionHandler: handler)
    |                                                                                     `- warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
122 |         case (let request, .file(let url)):
123 |             task = session.uploadTask(with: request, fromFile: url, completionHandler: handler)
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:123:88: warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
121 |             task = session.uploadTask(with: request, from: data, completionHandler: handler)
122 |         case (let request, .file(let url)):
123 |             task = session.uploadTask(with: request, fromFile: url, completionHandler: handler)
    |                                                                                        `- warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
124 |         case (_, .stream):
125 |             completionHandler(.failure(URLSessionClientError.uploadStreamUnimplemented))
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:113:17: warning: capture of 'self' with non-sendable type 'URLSessionClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  2 | import Foundation
  3 |
  4 | open class URLSessionClient: Client, CombineClient {
    |            `- note: class 'URLSessionClient' does not conform to the 'Sendable' protocol
  5 |
  6 |     let session: URLSession
    :
111 |             })
112 |             self.completionQueue.async {
113 |                 self.responseObserver?(request.0, response as? HTTPURLResponse, data, error)
    |                 `- warning: capture of 'self' with non-sendable type 'URLSessionClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
114 |                 completionHandler(result)
115 |             }
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:113:40: warning: capture of 'request' with non-sendable type '(URLRequest, UploadEndpointBody)' in a `@Sendable` closure; this is an error in the Swift 6 language mode
111 |             })
112 |             self.completionQueue.async {
113 |                 self.responseObserver?(request.0, response as? HTTPURLResponse, data, error)
    |                                        `- warning: capture of 'request' with non-sendable type '(URLRequest, UploadEndpointBody)' in a `@Sendable` closure; this is an error in the Swift 6 language mode
114 |                 completionHandler(result)
115 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:10:13: note: enum 'UploadEndpointBody' does not conform to the 'Sendable' protocol
 8 |
 9 | /// Type of uploadable content
10 | public enum UploadEndpointBody {
   |             `- note: enum 'UploadEndpointBody' does not conform to the 'Sendable' protocol
11 |     case data(Data)
12 |     case file(URL)
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Apexy'
  1 | import Apexy
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Apexy'
  2 | import Foundation
  3 |
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:114:17: warning: capture of 'completionHandler' with non-sendable type '(APIResult<T.Content>) -> Void' (aka '(Result<T.Content, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
112 |             self.completionQueue.async {
113 |                 self.responseObserver?(request.0, response as? HTTPURLResponse, data, error)
114 |                 completionHandler(result)
    |                 |- warning: capture of 'completionHandler' with non-sendable type '(APIResult<T.Content>) -> Void' (aka '(Result<T.Content, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
115 |             }
116 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:114:35: warning: capture of 'result' with non-sendable type 'APIResult<T.Content>' (aka 'Result<T.Content, any Error>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
112 |             self.completionQueue.async {
113 |                 self.responseObserver?(request.0, response as? HTTPURLResponse, data, error)
114 |                 completionHandler(result)
    |                                   `- warning: capture of 'result' with non-sendable type 'APIResult<T.Content>' (aka 'Result<T.Content, any Error>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
115 |             }
116 |         }
Begin Error in Function: '$s15ApexyURLSession0B6ClientC6upload_17completionHandlerSo10NSProgressCx_ys6ResultOy7ContentQzs5Error_pGct0A014UploadEndpointRzlF'
Found outside of lifetime use!
Value:   %8 = begin_borrow [lexical] [var_decl] %7 : ${ var (URLRequest, UploadEndpointBody) } // users: %207, %191, %53, %232, %9
User:  destroy_addr %236 : $*URLRequest                // id: %237
Block: bb9
End Error in Function: '$s15ApexyURLSession0B6ClientC6upload_17completionHandlerSo10NSProgressCx_ys6ResultOy7ContentQzs5Error_pGct0A014UploadEndpointRzlF'
Found ownership error?!
triggering standard assertion failure routine
UNREACHABLE executed at /Users/ec2-user/jenkins/workspace/oss-swift-6.0-package-macos/swift/lib/SIL/Verifier/LinearLifetimeCheckerPrivate.h:211!
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/BaseRequestAdapter.swift /Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient+Concurrency.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ApexyURLSession.build/URLSessionClient.d -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ApexyURLSession.build/URLSessionClient.swiftdeps -target arm64-apple-macosx10.15 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -debug-info-format=dwarf -dwarf-version=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -stats-output-dir .stats -strict-concurrency=complete -empty-abi-descriptor -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -isysroot -Xcc /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -Xcc -F -Xcc /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -Xcc -g -module-name ApexyURLSession -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ApexyURLSession.build/URLSessionClient.swift.o -index-store-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/index/store -index-system-modules
1.	Apple Swift version 6.0-dev (LLVM 4b0b1f9e1a69523, Swift 91a3abcf816bc36)
2.	Compiling with effective version 5.10
3.	While verifying SIL function "@$s15ApexyURLSession0B6ClientC6upload_17completionHandlerSo10NSProgressCx_ys6ResultOy7ContentQzs5Error_pGct0A014UploadEndpointRzlF".
 for 'upload(_:completionHandler:)' (at /Users/admin/builder/spi-builder-workspace/Sources/ApexyURLSession/URLSessionClient.swift:94:10)
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
0  swift-frontend           0x0000000109a37bf0 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) + 56
1  swift-frontend           0x0000000109a363bc llvm::sys::RunSignalHandlers() + 112
2  swift-frontend           0x0000000109a38238 SignalHandler(int) + 304
3  libsystem_platform.dylib 0x000000018a9d5a24 _sigtramp + 56
4  libsystem_pthread.dylib  0x000000018a9a5cc0 pthread_kill + 288
5  libsystem_c.dylib        0x000000018a8b1a40 abort + 180
6  swift-frontend           0x00000001099b71c4 llvm::install_out_of_memory_new_handler() + 0
7  swift-frontend           0x000000010550d310 swift::LinearLifetimeChecker::ErrorBuilder::tryDumpErrorCounter() const + 0
8  swift-frontend           0x000000010550b970 swift::LinearLifetimeChecker::checkValueImpl(swift::SILValue, llvm::ArrayRef<swift::Operand*>, llvm::ArrayRef<swift::Operand*>, swift::LinearLifetimeChecker::ErrorBuilder&, std::__1::optional<llvm::function_ref<void (swift::SILBasicBlock*)>>, std::__1::optional<llvm::function_ref<void (swift::Operand*)>>) + 4568
9  swift-frontend           0x000000010550bd20 swift::LinearLifetimeChecker::checkValue(swift::SILValue, llvm::ArrayRef<swift::Operand*>, llvm::ArrayRef<swift::Operand*>, swift::LinearLifetimeChecker::ErrorBuilder&) + 44
10 swift-frontend           0x0000000105513648 swift::SILValueOwnershipChecker::check() + 544
11 swift-frontend           0x0000000105515254 verifySILValueHelper(swift::SILFunction const*, swift::SILValue, swift::LinearLifetimeChecker::ErrorBuilder&, swift::DeadEndBlocks*, swift::GuaranteedPhiVerifier&) + 152
12 swift-frontend           0x000000010551512c swift::SILValue::verifyOwnership(swift::DeadEndBlocks*) const + 216
13 swift-frontend           0x0000000105535cf4 (anonymous namespace)::SILVerifier::checkValueBaseOwnership(swift::ValueBase*) + 172
14 swift-frontend           0x0000000105538c20 (anonymous namespace)::SILVerifier::visitSILInstruction(swift::SILInstruction*) + 6280
15 swift-frontend           0x0000000105520500 swift::SILVisitorBase<(anonymous namespace)::SILVerifier, void>::visitSILBasicBlock(swift::SILBasicBlock*) + 5584
16 swift-frontend           0x000000010551ee30 (anonymous namespace)::SILVerifier::visitSILBasicBlock(swift::SILBasicBlock*) + 28
17 swift-frontend           0x000000010551d5c8 (anonymous namespace)::SILVerifier::visitSILFunction(swift::SILFunction*) + 10456
18 swift-frontend           0x0000000105516bb0 swift::SILFunction::verify(swift::CalleeCache*, bool, bool, bool) const + 204
19 swift-frontend           0x0000000105519d3c swift::SILModule::verify(swift::CalleeCache*, bool, bool) const + 192
20 swift-frontend           0x0000000105519c14 swift::SILModule::verify(bool, bool) const + 140
21 swift-frontend           0x00000001047ef5d8 swift::CompilerInstance::performSILProcessing(swift::SILModule*) + 148
22 swift-frontend           0x00000001045b1858 performCompileStepsPostSILGen(swift::CompilerInstance&, std::__1::unique_ptr<swift::SILModule, std::__1::default_delete<swift::SILModule>>, llvm::PointerUnion<swift::ModuleDecl*, swift::SourceFile*>, swift::PrimarySpecificPaths const&, int&, swift::FrontendObserver*) + 796
23 swift-frontend           0x00000001045b0f2c swift::performCompileStepsPostSema(swift::CompilerInstance&, int&, swift::FrontendObserver*) + 648
24 swift-frontend           0x00000001045c2248 withSemanticAnalysis(swift::CompilerInstance&, swift::FrontendObserver*, llvm::function_ref<bool (swift::CompilerInstance&)>, bool) + 160
25 swift-frontend           0x00000001045b3590 performCompile(swift::CompilerInstance&, int&, swift::FrontendObserver*) + 708
26 swift-frontend           0x00000001045b24fc swift::performFrontend(llvm::ArrayRef<char const*>, char const*, void*, swift::FrontendObserver*) + 2388
27 swift-frontend           0x00000001043cc3b0 swift::mainEntry(int, char const**) + 3096
28 dyld                     0x000000018a6250e0 start + 2360
[43/63] Compiling ApexyLoader WebLoader.swift
[44/63] Compiling ApexyLoader LoadingState.swift
[45/63] Emitting module ApexyLoader
[46/63] Compiling ApexyLoader ContentLoader.swift
[47/63] Compiling Alamofire URLRequest+Alamofire.swift
[48/63] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[49/63] Compiling Alamofire Validation.swift
[50/63] Compiling Alamofire ServerTrustEvaluation.swift
[51/63] Compiling Alamofire Session.swift
[52/63] Compiling Alamofire SessionDelegate.swift
[53/63] Compiling Alamofire StringEncoding+Alamofire.swift
[54/63] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[55/63] Compiling Alamofire URLEncodedFormEncoder.swift
Fetching https://github.com/Alamofire/Alamofire.git
[1/28780] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (5.04s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.6.2 (0.72s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.6.2
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.