Build Information
Successful build of ReactiveSwift, reference master (abcdc2), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 21:17:44 UTC.
Swift 6 data race errors: 0
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/Moya/ReactiveSwift.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Moya/ReactiveSwift
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at abcdc22 SignalProducer: avoid recursive start of a sequence of producers (#734)
Submodule path 'Carthage/Checkouts/Nimble': checked out 'f8657642dfdec9973efc79cc68bcef43a653a2bc'
Submodule path 'Carthage/Checkouts/Quick': checked out '0b4ed6c706dd0cce923b5019a605a9bcc6b1b600'
Submodule path 'Carthage/Checkouts/Quick/Externals/Nimble': checked out 'a27c5186ce2d65f60d1237660b2509df3eb29023'
Submodule path 'Carthage/Checkouts/xcconfigs': checked out 'bb795558a76e5daf3688500055bbcfe243bffa8d'
Submodule 'Carthage/Checkouts/Nimble' (https://github.com/Quick/Nimble.git) registered for path 'Carthage/Checkouts/Nimble'
Submodule 'Carthage/Checkouts/Quick' (https://github.com/Quick/Quick.git) registered for path 'Carthage/Checkouts/Quick'
Submodule 'Carthage/Checkouts/xcconfigs' (https://github.com/jspahrsummers/xcconfigs.git) registered for path 'Carthage/Checkouts/xcconfigs'
Cloning into '/Users/admin/builder/spi-builder-workspace/Carthage/Checkouts/Nimble'...
Cloning into '/Users/admin/builder/spi-builder-workspace/Carthage/Checkouts/Quick'...
Cloning into '/Users/admin/builder/spi-builder-workspace/Carthage/Checkouts/xcconfigs'...
Submodule 'Externals/Nimble' (https://github.com/Quick/Nimble.git) registered for path 'Carthage/Checkouts/Quick/Externals/Nimble'
Cloning into '/Users/admin/builder/spi-builder-workspace/Carthage/Checkouts/Quick/Externals/Nimble'...
Cloned https://github.com/Moya/ReactiveSwift.git
Revision (git rev-parse @):
abcdc22fecdef777eaf4dda5cd4b410e24aceae7
SUCCESS checkout https://github.com/Moya/ReactiveSwift.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/Moya/ReactiveSwift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/22] Emitting module ReactiveSwift
/Users/admin/builder/spi-builder-workspace/Sources/Disposable.swift:11:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | /// Represents something that can be “disposed”, usually associated with freeing
10 | /// resources or canceling work.
11 | public protocol Disposable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 | /// Whether this disposable has been disposed already.
13 | var isDisposed: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:15:35: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
13 | /// Only classes can conform to this protocol, because having a signal
14 | /// for changes over time implies the origin must have a unique identity.
15 | public protocol PropertyProtocol: class, BindingSource {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
16 | /// The current value of the property.
17 | var value: Value { get }
/Users/admin/builder/spi-builder-workspace/Sources/Scheduler.swift:17:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
15 |
16 | /// Represents a serial queue of work items.
17 | public protocol Scheduler: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
18 | /// Enqueues an action on the scheduler.
19 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Signal.swift:418:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
416 | }
417 |
418 | public protocol SignalProtocol: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
419 | /// The type of values being sent by `self`.
420 | associatedtype Value
/Users/admin/builder/spi-builder-workspace/Sources/Signal.swift:1637:43: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
1635 | }
1636 |
1637 | private protocol SignalAggregateStrategy: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
1638 | /// Update the latest value of the signal at `position` to be `value`.
1639 | ///
[4/24] Compiling ReactiveSwift UninhabitedTypeGuards.swift
[5/24] Compiling ReactiveSwift ValidatingProperty.swift
[6/24] Compiling ReactiveSwift Flatten.swift
[7/24] Compiling ReactiveSwift FoundationExtensions.swift
[8/24] Compiling ReactiveSwift Action.swift
[9/24] Compiling ReactiveSwift Atomic.swift
[10/24] Compiling ReactiveSwift Bag.swift
[11/24] Compiling ReactiveSwift Reactive.swift
[12/24] Compiling ReactiveSwift ResultExtensions.swift
[13/24] Compiling ReactiveSwift Optional.swift
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:15:35: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
13 | /// Only classes can conform to this protocol, because having a signal
14 | /// for changes over time implies the origin must have a unique identity.
15 | public protocol PropertyProtocol: class, BindingSource {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
16 | /// The current value of the property.
17 | var value: Value { get }
[14/24] Compiling ReactiveSwift Property.swift
/Users/admin/builder/spi-builder-workspace/Sources/Property.swift:15:35: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
13 | /// Only classes can conform to this protocol, because having a signal
14 | /// for changes over time implies the origin must have a unique identity.
15 | public protocol PropertyProtocol: class, BindingSource {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
16 | /// The current value of the property.
17 | var value: Value { get }
[15/24] Compiling ReactiveSwift Lifetime.swift
[16/24] Compiling ReactiveSwift Observer.swift
[17/24] Compiling ReactiveSwift Scheduler.swift
/Users/admin/builder/spi-builder-workspace/Sources/Scheduler.swift:17:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
15 |
16 | /// Represents a serial queue of work items.
17 | public protocol Scheduler: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
18 | /// Enqueues an action on the scheduler.
19 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Signal.swift:418:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
416 | }
417 |
418 | public protocol SignalProtocol: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
419 | /// The type of values being sent by `self`.
420 | associatedtype Value
/Users/admin/builder/spi-builder-workspace/Sources/Signal.swift:1637:43: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
1635 | }
1636 |
1637 | private protocol SignalAggregateStrategy: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
1638 | /// Update the latest value of the signal at `position` to be `value`.
1639 | ///
[18/24] Compiling ReactiveSwift Signal.swift
/Users/admin/builder/spi-builder-workspace/Sources/Scheduler.swift:17:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
15 |
16 | /// Represents a serial queue of work items.
17 | public protocol Scheduler: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
18 | /// Enqueues an action on the scheduler.
19 | ///
/Users/admin/builder/spi-builder-workspace/Sources/Signal.swift:418:33: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
416 | }
417 |
418 | public protocol SignalProtocol: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
419 | /// The type of values being sent by `self`.
420 | associatedtype Value
/Users/admin/builder/spi-builder-workspace/Sources/Signal.swift:1637:43: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
1635 | }
1636 |
1637 | private protocol SignalAggregateStrategy: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
1638 | /// Update the latest value of the signal at `position` to be `value`.
1639 | ///
[19/24] Compiling ReactiveSwift Deprecations+Removals.swift
/Users/admin/builder/spi-builder-workspace/Sources/Disposable.swift:11:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | /// Represents something that can be “disposed”, usually associated with freeing
10 | /// resources or canceling work.
11 | public protocol Disposable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 | /// Whether this disposable has been disposed already.
13 | var isDisposed: Bool { get }
[20/24] Compiling ReactiveSwift Disposable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Disposable.swift:11:29: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
9 | /// Represents something that can be “disposed”, usually associated with freeing
10 | /// resources or canceling work.
11 | public protocol Disposable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
12 | /// Whether this disposable has been disposed already.
13 | var isDisposed: Bool { get }
[21/24] Compiling ReactiveSwift SignalProducer.swift
[22/24] Compiling ReactiveSwift UnidirectionalBinding.swift
[23/24] Compiling ReactiveSwift Event.swift
[24/24] Compiling ReactiveSwift EventLogger.swift
Build complete! (9.45s)
Fetching https://github.com/Quick/Nimble.git
Fetching https://github.com/Quick/Quick.git
[1/19584] Fetching nimble
[2/34343] Fetching nimble, quick
Fetched https://github.com/Quick/Nimble.git from cache (1.72s)
Fetched https://github.com/Quick/Quick.git from cache (1.72s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 2.2.1 (2.30s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 8.1.2 (0.53s)
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 2.2.1
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 8.1.2
Build complete.
{
"dependencies" : [
{
"identity" : "quick",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Quick.git"
},
{
"identity" : "nimble",
"requirement" : {
"range" : [
{
"lower_bound" : "8.0.0",
"upper_bound" : "9.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Nimble.git"
}
],
"manifest_display_name" : "ReactiveSwift",
"name" : "ReactiveSwift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ReactiveSwift",
"targets" : [
"ReactiveSwift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "ReactiveSwiftTests",
"module_type" : "SwiftTarget",
"name" : "ReactiveSwiftTests",
"path" : "Tests/ReactiveSwiftTests",
"product_dependencies" : [
"Quick",
"Nimble"
],
"sources" : [
"ActionSpec.swift",
"AtomicSpec.swift",
"BagSpec.swift",
"DeprecationSpec.swift",
"DisposableSpec.swift",
"FlattenSpec.swift",
"FoundationExtensionsSpec.swift",
"LifetimeSpec.swift",
"PropertySpec.swift",
"ReactiveExtensionsSpec.swift",
"SchedulerSpec.swift",
"SignalLifetimeSpec.swift",
"SignalProducerLiftingSpec.swift",
"SignalProducerNimbleMatchers.swift",
"SignalProducerSpec.swift",
"SignalSpec.swift",
"TestError.swift",
"TestLogger.swift",
"UnidirectionalBindingSpec.swift",
"ValidatingPropertySpec.swift"
],
"target_dependencies" : [
"ReactiveSwift"
],
"type" : "test"
},
{
"c99name" : "ReactiveSwift",
"module_type" : "SwiftTarget",
"name" : "ReactiveSwift",
"path" : "Sources",
"product_memberships" : [
"ReactiveSwift"
],
"sources" : [
"Action.swift",
"Atomic.swift",
"Bag.swift",
"Deprecations+Removals.swift",
"Disposable.swift",
"Event.swift",
"EventLogger.swift",
"Flatten.swift",
"FoundationExtensions.swift",
"Lifetime.swift",
"Observer.swift",
"Optional.swift",
"Property.swift",
"Reactive.swift",
"ResultExtensions.swift",
"Scheduler.swift",
"Signal.swift",
"SignalProducer.swift",
"UnidirectionalBinding.swift",
"UninhabitedTypeGuards.swift",
"ValidatingProperty.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.