The Swift Package Index logo.Swift Package Index

Build Information

Failed to build ws with Swift 5.9 for macOS (SPM).

Build Command

env DEVELOPER_DIR="/Applications/Xcode-15.0.0-Beta.2.app" xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.22.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/freshOS/ws-deprecated.git
Reference: 5.1.3
Initialized empty Git repository in /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.git/
From https://github.com/freshOS/ws-deprecated
 * tag               5.1.3      -> FETCH_HEAD
HEAD is now at a44e643 Update ws.podspec
Cloned https://github.com/freshOS/ws-deprecated.git into spi-builder-workspace
a44e643df48e1f1692e17075608b07d43a5dc407
SUCCESS checkout https://github.com/freshOS/ws-deprecated.git at 5.1.3
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             5.9
Building package at path:  spi-builder-workspace
Running build ...
env DEVELOPER_DIR="/Applications/Xcode-15.0.0-Beta.2.app" xcrun swift build --arch arm64
Fetching https://github.com/freshOS/Then from cache
Fetching https://github.com/freshOS/Arrow from cache
Fetching https://github.com/Alamofire/Alamofire from cache
Fetched https://github.com/freshOS/Then (0.39s)
Fetched https://github.com/freshOS/Arrow (0.39s)
Fetched https://github.com/Alamofire/Alamofire (0.50s)
Computing version for https://github.com/Alamofire/Alamofire
Computed https://github.com/Alamofire/Alamofire at 4.9.1 (0.04s)
Computing version for https://github.com/freshOS/Then
Computed https://github.com/freshOS/Then at 5.1.3 (0.41s)
Computing version for https://github.com/freshOS/Arrow
Computed https://github.com/freshOS/Arrow at 5.1.2 (0.39s)
Creating working copy for https://github.com/freshOS/Arrow
Working copy of https://github.com/freshOS/Arrow resolved at 5.1.2
Creating working copy for https://github.com/freshOS/Then
Working copy of https://github.com/freshOS/Then resolved at 5.1.3
Creating working copy for https://github.com/Alamofire/Alamofire
Working copy of https://github.com/Alamofire/Alamofire resolved at 4.9.1
Building for debugging...
[1/46] Emitting module Alamofire
[2/48] Compiling Then Promise.swift
[3/48] Compiling Then PromiseBlocks.swift
[4/48] Compiling Then PromiseError.swift
[5/51] Compiling Then Async.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[6/51] Compiling Then Await+Operators.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[7/51] Compiling Then Await.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[8/51] Compiling Then Promise+Aliases.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[11/51] Compiling Then Promise+NoMatterWhat.swift
[12/51] Compiling Then Promise+Then.swift
[13/51] Compiling Then Promise+Finally.swift
[14/51] Compiling Then Promise+First.swift
[15/51] Compiling Then Promise+Helpers.swift
[17/51] Compiling Alamofire Timeline.swift
[18/51] Compiling Alamofire Validation.swift
[19/51] Compiling Then Promise+nil.swift
[20/51] Compiling Then Promise+Timeout.swift
[21/51] Compiling Then Promise+Unwrap.swift
[22/51] Compiling Then Promise+Progress.swift
[23/51] Compiling Then Promise+Race.swift
[24/51] Compiling Then Promise+Recover.swift
[25/51] Compiling Then Promise+Retry.swift
[29/51] Emitting module Then
[30/51] Compiling Then Promise+BridgeError.swift
[31/51] Compiling Then Promise+Chain.swift
[32/51] Compiling Then Promise+Delay.swift
[33/51] Compiling Then Promise+Error.swift
[45/51] Compiling Arrow JSON.swift
[46/51] Compiling Arrow Extensions.swift
[47/51] Emitting module Arrow
[48/51] Compiling Arrow Arrow.swift
[49/51] Compiling Then PromiseState.swift
[50/51] Compiling Then VoidPromise.swift
[51/51] Compiling Then WhenAll.swift
error: fatalError
ShellOut encountered an error
Status code: 1
Message: "Fetching https://github.com/freshOS/Then from cache
Fetching https://github.com/freshOS/Arrow from cache
Fetching https://github.com/Alamofire/Alamofire from cache
Fetched https://github.com/freshOS/Then (0.39s)
Fetched https://github.com/freshOS/Arrow (0.39s)
Fetched https://github.com/Alamofire/Alamofire (0.50s)
Computing version for https://github.com/Alamofire/Alamofire
Computed https://github.com/Alamofire/Alamofire at 4.9.1 (0.04s)
Computing version for https://github.com/freshOS/Then
Computed https://github.com/freshOS/Then at 5.1.3 (0.41s)
Computing version for https://github.com/freshOS/Arrow
Computed https://github.com/freshOS/Arrow at 5.1.2 (0.39s)
Creating working copy for https://github.com/freshOS/Arrow
Working copy of https://github.com/freshOS/Arrow resolved at 5.1.2
Creating working copy for https://github.com/freshOS/Then
Working copy of https://github.com/freshOS/Then resolved at 5.1.3
Creating working copy for https://github.com/Alamofire/Alamofire
Working copy of https://github.com/Alamofire/Alamofire resolved at 4.9.1"
Output: "Building for debugging...
[1/46] Emitting module Alamofire
[2/48] Compiling Then Promise.swift
[3/48] Compiling Then PromiseBlocks.swift
[4/48] Compiling Then PromiseError.swift
[5/51] Compiling Then Async.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[6/51] Compiling Then Await+Operators.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[7/51] Compiling Then Await.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[8/51] Compiling Then Promise+Aliases.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[11/51] Compiling Then Promise+NoMatterWhat.swift
[12/51] Compiling Then Promise+Then.swift
[13/51] Compiling Then Promise+Finally.swift
[14/51] Compiling Then Promise+First.swift
[15/51] Compiling Then Promise+Helpers.swift
[17/51] Compiling Alamofire Timeline.swift
[18/51] Compiling Alamofire Validation.swift
[19/51] Compiling Then Promise+nil.swift
[20/51] Compiling Then Promise+Timeout.swift
[21/51] Compiling Then Promise+Unwrap.swift
[22/51] Compiling Then Promise+Progress.swift
[23/51] Compiling Then Promise+Race.swift
[24/51] Compiling Then Promise+Recover.swift
[25/51] Compiling Then Promise+Retry.swift
[29/51] Emitting module Then
[30/51] Compiling Then Promise+BridgeError.swift
[31/51] Compiling Then Promise+Chain.swift
[32/51] Compiling Then Promise+Delay.swift
[33/51] Compiling Then Promise+Error.swift
[45/51] Compiling Arrow JSON.swift
[46/51] Compiling Arrow Extensions.swift
[47/51] Emitting module Arrow
[48/51] Compiling Arrow Arrow.swift
[49/51] Compiling Then PromiseState.swift
[50/51] Compiling Then VoidPromise.swift
[51/51] Compiling Then WhenAll.swift
error: fatalError"
Retrying in 0.0 seconds ...
Building ... (attempt 2)
[0/1] Planning build
Building for debugging...
[1/5] Compiling Then Promise+Aliases.swift
[2/5] Compiling Then Await+Operators.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[3/5] Compiling Then Await.swift
[4/5] Compiling Then Async.swift
[5/5] Emitting module Then
error: fatalError
ShellOut encountered an error
Status code: 1
Message: ""
Output: "[0/1] Planning build
Building for debugging...
[1/5] Compiling Then Promise+Aliases.swift
[2/5] Compiling Then Await+Operators.swift
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:14:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:13:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>) throws -> T {
                   ^                           ~~~~~~
                                               async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: cannot convert return expression of type 'Promise<T>' to return type 'T'
    return try await(promise)
           ~~~~^~~~~~~~~~~~~~
                              as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:19:16: error: 'await' in a function that does not support concurrency
    return try await(promise)
               ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:17:20: note: add 'async' to function '..' to make it asynchronous
public prefix func .. <T>(promise: Promise<T>?) throws -> T {
                   ^                            ~~~~~~
                                                async throws
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:26:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:24:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>) -> T? {
                   ^
                                                async
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: cannot convert return expression of type 'Promise<T>' to return type 'T?'
        return try await(promise)
               ~~~~^~~~~~~~~~~~~~
                                  as! T
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:35:20: error: 'await' in a function that does not support concurrency
        return try await(promise)
                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.build/checkouts/Then/Source/Await+Operators.swift:32:20: note: add 'async' to function '..?' to make it asynchronous
public prefix func ..? <T>(promise: Promise<T>?) -> T? {
                   ^
                                                 async
[3/5] Compiling Then Await.swift
[4/5] Compiling Then Async.swift
[5/5] Emitting module Then
error: fatalError"
BUILD FAILURE 5.9 macosSpm