Build Information
Failed to build TRON, reference 5.4.1 (db1529
), with Swift 6.2 (beta) for Android on 20 Jun 2025 11:10:08 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/MLSDev/TRON.git
Reference: 5.4.1
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/MLSDev/TRON
* tag 5.4.1 -> FETCH_HEAD
HEAD is now at db1529b Releasing version 5.4.1.
Cloned https://github.com/MLSDev/TRON.git
Revision (git rev-parse @):
db1529beba9a89461536f40686d7c8b7ccace876
SUCCESS checkout https://github.com/MLSDev/TRON.git at 5.4.1
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/MLSDev/TRON.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Fetching https://github.com/SwiftyJSON/SwiftyJSON.git
Fetching https://github.com/ReactiveX/RxSwift.git
Fetching https://github.com/Alamofire/Alamofire.git
[1/6196] Fetching swiftyjson
[3099/58906] Fetching swiftyjson, rxswift
[5208/89047] Fetching swiftyjson, rxswift, alamofire
Fetched https://github.com/SwiftyJSON/SwiftyJSON.git from cache (5.23s)
Fetched https://github.com/Alamofire/Alamofire.git from cache (5.39s)
Fetched https://github.com/ReactiveX/RxSwift.git from cache (7.12s)
Computing version for https://github.com/SwiftyJSON/SwiftyJSON.git
Computed https://github.com/SwiftyJSON/SwiftyJSON.git at 5.0.2 (7.84s)
Computing version for https://github.com/ReactiveX/RxSwift.git
Computed https://github.com/ReactiveX/RxSwift.git at 6.9.0 (0.63s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.10.2 (0.70s)
Creating working copy for https://github.com/SwiftyJSON/SwiftyJSON.git
Working copy of https://github.com/SwiftyJSON/SwiftyJSON.git resolved at 5.0.2
Creating working copy for https://github.com/ReactiveX/RxSwift.git
Working copy of https://github.com/ReactiveX/RxSwift.git resolved at 6.9.0
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.10.2
Building for debugging...
[0/10] Write sources
[3/10] Copying PrivacyInfo.xcprivacy
[7/10] Write sources
[9/10] Write swift-version-8C5A4AE7A8CE2BA.txt
[11/196] Emitting module Alamofire
[12/201] Compiling RxSwift BehaviorSubject.swift
[13/201] Compiling RxSwift BinaryDisposable.swift
[14/201] Compiling RxSwift Binder.swift
[15/201] Compiling RxSwift BooleanDisposable.swift
[16/201] Compiling RxSwift Buffer.swift
[17/201] Compiling RxSwift Producer.swift
[18/201] Compiling RxSwift PublishSubject.swift
[19/201] Compiling RxSwift Queue.swift
[20/201] Compiling RxSwift Range.swift
[21/201] Compiling RxSwift Reactive.swift
[22/201] Compiling RxSwift RecursiveLock.swift
[23/201] Compiling RxSwift RecursiveScheduler.swift
[24/201] Compiling RxSwift Reduce.swift
[25/201] Compiling RxSwift RefCountDisposable.swift
[26/201] Compiling RxSwift Repeat.swift
[27/201] Compiling RxSwift ReplaySubject.swift
[28/201] Compiling RxSwift RetryWhen.swift
[29/201] Compiling RxSwift Rx.swift
[30/201] Compiling RxSwift RxMutableBox.swift
[31/201] Compiling RxSwift Sample.swift
[32/201] Compiling RxSwift Scan.swift
[33/201] Compiling RxSwift ScheduledDisposable.swift
[34/201] Compiling Alamofire RetryPolicy.swift
[35/201] Compiling Alamofire ServerTrustEvaluation.swift
[36/201] Compiling Alamofire URLEncodedFormEncoder.swift
[42/221] Emitting module SwiftyJSON
[43/221] Compiling SwiftyJSON resource_bundle_accessor.swift
[44/221] Compiling SwiftyJSON SwiftyJSON.swift
/host/spi-builder-workspace/.build/checkouts/SwiftyJSON/Source/SwiftyJSON/SwiftyJSON.swift:1215:51: error: ambiguous use of operator '<'
1213 |
1214 | switch (lhs.type, rhs.type) {
1215 | case (.number, .number): return lhs.rawNumber < rhs.rawNumber
| `- error: ambiguous use of operator '<'
1216 | case (.string, .string): return lhs.rawString < rhs.rawString
1217 | default: return false
:
1249 | }
1250 |
1251 | func < (lhs: NSNumber, rhs: NSNumber) -> Bool {
| `- note: found this candidate
1252 |
1253 | switch (lhs.isBool, rhs.isBool) {
Foundation.NSNumber.<:2:20: note: found this candidate in module 'Foundation'
1 | class NSNumber {
2 | public static func < (lhs: NSNumber, rhs: NSNumber) -> Bool}
| `- note: found this candidate in module 'Foundation'
3 |
BUILD FAILURE 6.2 android