Build Information
Failed to build TweetupKit, reference master (b2f005), with Swift 6.2 for macOS (SPM) on 17 Jun 2025 15:36:29 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swift-tweets/tweetup-kit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/swift-tweets/tweetup-kit
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at b2f005e Update PromiseK for Swift 4.1
Cloned https://github.com/swift-tweets/tweetup-kit.git
Revision (git rev-parse @):
b2f005e880a9999342c17cbd397fae91cef73e97
SUCCESS checkout https://github.com/swift-tweets/tweetup-kit.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/swift-tweets/tweetup-kit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/36] Compiling PromiseK Promise.swift
[6/36] Emitting module PromiseK
[7/36] Compiling PromiseK Throws.swift
[8/36] Emitting module OAuthSwift
[9/39] Compiling OAuthSwift Collection+OAuthSwift.swift
[10/39] Compiling OAuthSwift Data+OAuthSwift.swift
[11/39] Compiling OAuthSwift Dictionary+OAuthSwift.swift
[12/39] Compiling OAuthSwift HMAC.swift
[13/39] Compiling OAuthSwift URL+OAuthSwift.swift
[14/39] Compiling OAuthSwift URLConvertible.swift
[15/39] Compiling OAuthSwift Utils.swift
[16/39] Compiling OAuthSwift OAuthSwiftCredential.swift
[17/39] Compiling OAuthSwift OAuthSwiftError.swift
[18/39] Compiling OAuthSwift OAuthSwiftHTTPRequest.swift
[19/39] Compiling OAuthSwift SHA1.swift
[20/39] Compiling OAuthSwift String+OAuthSwift.swift
[21/39] Compiling OAuthSwift UIApplication+OAuthSwift.swift
[22/39] Compiling OAuthSwift SafariURLHandler.swift
[23/39] Compiling OAuthSwift Int+OAuthSwift.swift
[24/39] Compiling OAuthSwift NSError+OAuthSwift.swift
[25/39] Compiling OAuthSwift ASWebAuthenticationURLHandler.swift
[26/39] Compiling OAuthSwift ExtensionContextURLHandler.swift
[27/39] Compiling OAuthSwift OAuthSwiftOpenURLExternally.swift
[28/39] Compiling OAuthSwift OAuthSwiftMultipartData.swift
[29/39] Compiling OAuthSwift OAuthSwiftResponse.swift
[30/39] Compiling OAuthSwift OAuthSwiftURLHandlerType.swift
[31/39] Compiling OAuthSwift OAuthLogProtocol.swift
[32/39] Compiling OAuthSwift OAuthSwift.swift
[33/39] Compiling OAuthSwift OAuthSwiftClient.swift
[34/39] Compiling OAuthSwift OAuthSwiftURLHandlerProxy.swift
[35/39] Compiling OAuthSwift OAuthWebViewController.swift
[36/39] Compiling OAuthSwift SFAuthenticationURLHandler.swift
[37/39] Compiling OAuthSwift NotificationCenter+OAuthSwift.swift
[38/39] Compiling OAuthSwift OAuth1Swift.swift
[39/39] Compiling OAuthSwift OAuth2Swift.swift
[40/56] Compiling TweetupKit StringExtensions.swift
[41/57] Compiling TweetupKit Tweet.swift
/Users/admin/builder/spi-builder-workspace/Sources/TweetupKit/Tweet.swift:30:24: warning: 'deallocate(capacity:)' is deprecated: Swift currently only supports freeing entire heap blocks, use deallocate() instead [#DeprecatedDeclaration]
28 | let buffer = UnsafeMutablePointer<unichar>.allocate(capacity: normalized.length)
29 | defer {
30 | buffer.deallocate(capacity: normalized.length)
| `- warning: 'deallocate(capacity:)' is deprecated: Swift currently only supports freeing entire heap blocks, use deallocate() instead [#DeprecatedDeclaration]
31 | }
32 | normalized.getCharacters(buffer)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[42/57] Compiling TweetupKit Language.swift
[43/57] Compiling TweetupKit NSRegularExpressionExtensions.swift
[44/57] Compiling TweetupKit Gist.swift
[45/57] Compiling TweetupKit Image.swift
[46/57] Compiling TweetupKit NSTextCheckingResultExtensions.swift
[47/57] Compiling TweetupKit OAuthCredential.swift
[48/57] Compiling TweetupKit Parser.swift
[49/57] Compiling TweetupKit Speaker.swift
[50/57] Compiling TweetupKit Twitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/TweetupKit/Twitter.swift:71:20: error: extra arguments at positions #3, #4 in call
69 |
70 | fileprivate func post<T>(_ url: String, parameters: OAuthSwift.Parameters, callback: @escaping (@escaping () throws -> T) -> (), completion: @escaping (OAuthSwiftResponse) throws -> (T)) -> OAuthSwiftRequestHandle? {
71 | return post(
| `- error: extra arguments at positions #3, #4 in call
72 | url,
73 | parameters: parameters,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:53:15: note: 'post(_:parameters:headers:body:completionHandler:)' declared here
51 |
52 | @discardableResult
53 | open func post(_ url: URLConvertible, parameters: OAuthSwift.Parameters = [:], headers: OAuthSwift.Headers? = nil, body: Data? = nil, completionHandler completion: OAuthSwiftHTTPRequest.CompletionHandler?) -> OAuthSwiftRequestHandle? {
| `- note: 'post(_:parameters:headers:body:completionHandler:)' declared here
54 | return self.request(url, method: .POST, parameters: parameters, headers: headers, body: body, completionHandler: completion)
55 | }
/Users/admin/builder/spi-builder-workspace/Sources/TweetupKit/Twitter.swift:92:14: error: missing argument for parameter 'completionHandler' in call
90 | throw error
91 | }
92 | }
| `- error: missing argument for parameter 'completionHandler' in call
93 | )
94 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:53:15: note: 'post(_:parameters:headers:body:completionHandler:)' declared here
51 |
52 | @discardableResult
53 | open func post(_ url: URLConvertible, parameters: OAuthSwift.Parameters = [:], headers: OAuthSwift.Headers? = nil, body: Data? = nil, completionHandler completion: OAuthSwiftHTTPRequest.CompletionHandler?) -> OAuthSwiftRequestHandle? {
| `- note: 'post(_:parameters:headers:body:completionHandler:)' declared here
54 | return self.request(url, method: .POST, parameters: parameters, headers: headers, body: body, completionHandler: completion)
55 | }
[51/57] Compiling TweetupKit ArraySliceExtensions.swift
[52/57] Compiling TweetupKit Async.swift
[53/57] Compiling TweetupKit APIError.swift
[54/57] Compiling TweetupKit ArrayExtensions.swift
[55/57] Compiling TweetupKit Code.swift
[56/57] Compiling TweetupKit CodeRenderer.swift
[57/57] Emitting module TweetupKit
Fetching https://github.com/OAuthSwift/OAuthSwift.git
[1/5134] Fetching oauthswift
Fetched https://github.com/OAuthSwift/OAuthSwift.git from cache (1.20s)
Fetching https://github.com/httpswift/swifter.git
Fetching https://github.com/phimage/Erik.git
Fetching https://github.com/koher/PromiseK.git
Fetching https://github.com/tid-kijyun/Kanna.git
[6/529] Fetching promisek
[171/6579] Fetching promisek, swifter
[172/7221] Fetching promisek, swifter, erik
[713/9578] Fetching promisek, swifter, erik, kanna
Fetched https://github.com/phimage/Erik.git from cache (0.93s)
[4200/8936] Fetching promisek, swifter, kanna
Fetched https://github.com/tid-kijyun/Kanna.git from cache (1.43s)
Fetched https://github.com/koher/PromiseK.git from cache (1.43s)
Fetched https://github.com/httpswift/swifter.git from cache (1.43s)
Computing version for https://github.com/httpswift/swifter.git
Computed https://github.com/httpswift/swifter.git at 1.5.0 (1.94s)
Computing version for https://github.com/phimage/Erik.git
Computed https://github.com/phimage/Erik.git at 5.1.0 (0.48s)
Fetching https://github.com/Thomvis/BrightFutures.git
Fetching https://github.com/nvzqz/FileKit.git
[1/4067] Fetching brightfutures
[42/7190] Fetching brightfutures, filekit
Fetched https://github.com/nvzqz/FileKit.git from cache (1.48s)
Fetched https://github.com/Thomvis/BrightFutures.git from cache (1.48s)
Computing version for https://github.com/nvzqz/FileKit.git
Computed https://github.com/nvzqz/FileKit.git at 6.1.0 (1.98s)
Computing version for https://github.com/Thomvis/BrightFutures.git
Computed https://github.com/Thomvis/BrightFutures.git at 8.2.0 (0.49s)
Computing version for https://github.com/tid-kijyun/Kanna.git
Computed https://github.com/tid-kijyun/Kanna.git at 5.3.0 (0.46s)
Computing version for https://github.com/koher/PromiseK.git
Computed https://github.com/koher/PromiseK.git at 3.1.1 (1.81s)
Creating working copy for https://github.com/nvzqz/FileKit.git
Working copy of https://github.com/nvzqz/FileKit.git resolved at 6.1.0
Creating working copy for https://github.com/phimage/Erik.git
Working copy of https://github.com/phimage/Erik.git resolved at 5.1.0
Creating working copy for https://github.com/tid-kijyun/Kanna.git
Working copy of https://github.com/tid-kijyun/Kanna.git resolved at 5.3.0
Creating working copy for https://github.com/koher/PromiseK.git
Working copy of https://github.com/koher/PromiseK.git resolved at 3.1.1
Creating working copy for https://github.com/Thomvis/BrightFutures.git
Working copy of https://github.com/Thomvis/BrightFutures.git resolved at 8.2.0
Creating working copy for https://github.com/httpswift/swifter.git
Working copy of https://github.com/httpswift/swifter.git resolved at 1.5.0
Creating working copy for https://github.com/OAuthSwift/OAuthSwift.git
Working copy of https://github.com/OAuthSwift/OAuthSwift.git resolved at master (fe6b6a4)
BUILD FAILURE 6.2 macosSpm