Build Information
Successful build of Omnibar, reference 0.20.0 (2fc1a3
), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 07:02:59 UTC.
Swift 6 data race errors: 3
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/CleanCocoa/Omnibar.git
Reference: 0.20.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/CleanCocoa/Omnibar
* tag 0.20.0 -> FETCH_HEAD
HEAD is now at 2fc1a38 update to RxSwift 6.6.0
Cloned https://github.com/CleanCocoa/Omnibar.git
Revision (git rev-parse @):
2fc1a381d8660b61ec5f1d709d0472bb5c438faa
SUCCESS checkout https://github.com/CleanCocoa/Omnibar.git at 0.20.0
Fetching https://github.com/ReactiveX/RxSwift
[1/52358] Fetching rxswift
Fetched https://github.com/ReactiveX/RxSwift from cache (8.09s)
Computing version for https://github.com/ReactiveX/RxSwift.git
Computed https://github.com/ReactiveX/RxSwift.git at 6.6.0 (0.68s)
Creating working copy for https://github.com/ReactiveX/RxSwift
Working copy of https://github.com/ReactiveX/RxSwift resolved at 6.6.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "omnibar",
"name": "Omnibar",
"url": "https://github.com/CleanCocoa/Omnibar.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Omnibar",
"dependencies": [
{
"identity": "rxswift",
"name": "RxSwift",
"url": "https://github.com/ReactiveX/RxSwift.git",
"version": "6.8.0",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/RxSwift",
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/CleanCocoa/Omnibar.git
[1/2223] Fetching omnibar
Fetched https://github.com/CleanCocoa/Omnibar.git from cache (1.22s)
Fetching https://github.com/ReactiveX/RxSwift.git from cache
Fetched https://github.com/ReactiveX/RxSwift.git from cache (0.72s)
Computing version for https://github.com/ReactiveX/RxSwift.git
Computed https://github.com/ReactiveX/RxSwift.git at 6.8.0 (0.50s)
Creating working copy for https://github.com/CleanCocoa/Omnibar.git
Working copy of https://github.com/CleanCocoa/Omnibar.git resolved at 0.20.0 (2fc1a38)
Creating working copy for https://github.com/ReactiveX/RxSwift.git
Working copy of https://github.com/ReactiveX/RxSwift.git resolved at 6.8.0
warning: '.resolve-product-dependencies': dependency 'omnibar' is not used by any target
Found 1 product dependencies
- RxSwift
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/CleanCocoa/Omnibar.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/14] Write sources
[5/14] Write swift-version--7754E27361AE5C74.txt
[7/173] Emitting module RxSwift
[8/189] Compiling Omnibar OmnibarTextFieldCell.swift
[9/189] Compiling Omnibar TextFieldTextChange.swift
[10/190] Compiling Omnibar OmnibarContentChange.swift
[11/190] Compiling Omnibar OmnibarDelegate.swift
[12/190] Compiling Omnibar Omnibar.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:123:17: warning: main actor-isolated instance method 'display(content:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
119 | // MARK: - Input
120 |
121 | extension Omnibar: DisplaysOmnibarContent {
| `- note: add '@preconcurrency' to the 'DisplaysOmnibarContent' conformance to defer isolation checking to run time
122 |
123 | public func display(content: OmnibarContent) {
| |- warning: main actor-isolated instance method 'display(content:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'display(content:)' to make this instance method not isolated to the actor
124 |
125 | editableText.replace(replacement: TextReplacement(omnibarContent: content))
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/OmnibarContent.swift:6:10: note: mark the protocol requirement 'display(content:)' 'async' to allow actor-isolated conformances
4 |
5 | public protocol DisplaysOmnibarContent: AnyObject {
6 | func display(content: OmnibarContent)
| `- note: mark the protocol requirement 'display(content:)' 'async' to allow actor-isolated conformances
7 | }
8 |
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:112:9: warning: cannot access property 'controlTextChangeSubscription' with a non-sendable type 'Any?' from nonisolated deinit; this is an error in the Swift 6 language mode
110 |
111 | deinit {
112 | if let subscription = controlTextChangeSubscription {
| `- warning: cannot access property 'controlTextChangeSubscription' with a non-sendable type 'Any?' from nonisolated deinit; this is an error in the Swift 6 language mode
113 | NotificationCenter.default.removeObserver(subscription)
114 | }
[13/190] Compiling Omnibar NSView+constrainToSuperviewBounds.swift
[14/190] Compiling RxSwift AnonymousDisposable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:12:10: warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
3 | import Cocoa
4 |
5 | extension NSText: FieldEditor {
| `- note: add '@preconcurrency' to the 'FieldEditor' conformance to defer isolation checking to run time
6 |
7 | func selectRange(_ range: NSRange) {
:
10 | }
11 |
12 | func replaceAllCharacters(with string: String) {
| |- warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'replaceAllCharacters(with:)' to make this instance method not isolated to the actor
13 |
14 | self.string = string
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:6:10: note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
4 |
5 | protocol FieldEditor {
6 | func replaceAllCharacters(with string: String)
| `- note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
7 | func selectRange(_ range: NSRange)
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:7:10: warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
5 | extension NSText: FieldEditor {
6 |
7 | func selectRange(_ range: NSRange) {
| |- warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'selectRange' to make this instance method not isolated to the actor
8 |
9 | self.selectedRange = range
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:7:10: note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
5 | protocol FieldEditor {
6 | func replaceAllCharacters(with string: String)
7 | func selectRange(_ range: NSRange)
| `- note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
8 | }
9 |
[15/190] Compiling RxSwift AnonymousObserver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:12:10: warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
3 | import Cocoa
4 |
5 | extension NSText: FieldEditor {
| `- note: add '@preconcurrency' to the 'FieldEditor' conformance to defer isolation checking to run time
6 |
7 | func selectRange(_ range: NSRange) {
:
10 | }
11 |
12 | func replaceAllCharacters(with string: String) {
| |- warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'replaceAllCharacters(with:)' to make this instance method not isolated to the actor
13 |
14 | self.string = string
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:6:10: note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
4 |
5 | protocol FieldEditor {
6 | func replaceAllCharacters(with string: String)
| `- note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
7 | func selectRange(_ range: NSRange)
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:7:10: warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
5 | extension NSText: FieldEditor {
6 |
7 | func selectRange(_ range: NSRange) {
| |- warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'selectRange' to make this instance method not isolated to the actor
8 |
9 | self.selectedRange = range
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:7:10: note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
5 | protocol FieldEditor {
6 | func replaceAllCharacters(with string: String)
7 | func selectRange(_ range: NSRange)
| `- note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
8 | }
9 |
[16/190] Emitting module Omnibar
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:12:10: warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
3 | import Cocoa
4 |
5 | extension NSText: FieldEditor {
| `- note: add '@preconcurrency' to the 'FieldEditor' conformance to defer isolation checking to run time
6 |
7 | func selectRange(_ range: NSRange) {
:
10 | }
11 |
12 | func replaceAllCharacters(with string: String) {
| |- warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'replaceAllCharacters(with:)' to make this instance method not isolated to the actor
13 |
14 | self.string = string
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:6:10: note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
4 |
5 | protocol FieldEditor {
6 | func replaceAllCharacters(with string: String)
| `- note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
7 | func selectRange(_ range: NSRange)
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:7:10: warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
5 | extension NSText: FieldEditor {
6 |
7 | func selectRange(_ range: NSRange) {
| |- warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'selectRange' to make this instance method not isolated to the actor
8 |
9 | self.selectedRange = range
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:7:10: note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
5 | protocol FieldEditor {
6 | func replaceAllCharacters(with string: String)
7 | func selectRange(_ range: NSRange)
| `- note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
8 | }
9 |
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:123:17: warning: main actor-isolated instance method 'display(content:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
119 | // MARK: - Input
120 |
121 | extension Omnibar: DisplaysOmnibarContent {
| `- note: add '@preconcurrency' to the 'DisplaysOmnibarContent' conformance to defer isolation checking to run time
122 |
123 | public func display(content: OmnibarContent) {
| |- warning: main actor-isolated instance method 'display(content:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'display(content:)' to make this instance method not isolated to the actor
124 |
125 | editableText.replace(replacement: TextReplacement(omnibarContent: content))
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/OmnibarContent.swift:6:10: note: mark the protocol requirement 'display(content:)' 'async' to allow actor-isolated conformances
4 |
5 | public protocol DisplaysOmnibarContent: AnyObject {
6 | func display(content: OmnibarContent)
| `- note: mark the protocol requirement 'display(content:)' 'async' to allow actor-isolated conformances
7 | }
8 |
[17/190] Compiling RxSwift AddRef.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/EditableText.swift:19:21: warning: call to main actor-isolated instance method 'currentEditor()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | extension EditableText where Self: NSControl {
17 |
18 | func fieldEditor() -> FieldEditor? {
| `- note: add '@MainActor' to make instance method 'fieldEditor()' part of global actor 'MainActor'
19 | return self.currentEditor()
| `- warning: call to main actor-isolated instance method 'currentEditor()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
20 | }
21 |
AppKit.NSControl:2:26: note: calls to instance method 'currentEditor()' from outside of its actor context are implicitly asynchronous
1 | extension NSControl {
2 | @MainActor open func currentEditor() -> NSText?
| `- note: calls to instance method 'currentEditor()' from outside of its actor context are implicitly asynchronous
3 | open func abortEditing() -> Bool
4 | open func validateEditing()
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/EditableText.swift:27:18: warning: main actor-isolated property 'stringValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | }
21 |
22 | func replace(replacement: TextReplacement) {
| `- note: add '@MainActor' to make instance method 'replace(replacement:)' part of global actor 'MainActor'
23 |
24 | // Do not set `stringValue` in an active editing session because that
25 | // "aborts all editing before setting the value." (See docs.)
26 | guard let fieldEditor = self.fieldEditor() else {
27 | self.stringValue = replacement.text
| `- warning: main actor-isolated property 'stringValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 | return
29 | }
AppKit.NSControl:24:25: note: mutation of this property is only permitted within the actor
22 | open var formatter: Formatter? { get set }
23 | open var objectValue: Any? { get set }
24 | @MainActor open var stringValue: String { get set }
| `- note: mutation of this property is only permitted within the actor
25 | @NSCopying open var attributedStringValue: NSAttributedString { get set }
26 | open var intValue: Int32 { get set }
[18/190] Compiling RxSwift Amb.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/EditableText.swift:19:21: warning: call to main actor-isolated instance method 'currentEditor()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | extension EditableText where Self: NSControl {
17 |
18 | func fieldEditor() -> FieldEditor? {
| `- note: add '@MainActor' to make instance method 'fieldEditor()' part of global actor 'MainActor'
19 | return self.currentEditor()
| `- warning: call to main actor-isolated instance method 'currentEditor()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
20 | }
21 |
AppKit.NSControl:2:26: note: calls to instance method 'currentEditor()' from outside of its actor context are implicitly asynchronous
1 | extension NSControl {
2 | @MainActor open func currentEditor() -> NSText?
| `- note: calls to instance method 'currentEditor()' from outside of its actor context are implicitly asynchronous
3 | open func abortEditing() -> Bool
4 | open func validateEditing()
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/EditableText.swift:27:18: warning: main actor-isolated property 'stringValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
20 | }
21 |
22 | func replace(replacement: TextReplacement) {
| `- note: add '@MainActor' to make instance method 'replace(replacement:)' part of global actor 'MainActor'
23 |
24 | // Do not set `stringValue` in an active editing session because that
25 | // "aborts all editing before setting the value." (See docs.)
26 | guard let fieldEditor = self.fieldEditor() else {
27 | self.stringValue = replacement.text
| `- warning: main actor-isolated property 'stringValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 | return
29 | }
AppKit.NSControl:24:25: note: mutation of this property is only permitted within the actor
22 | open var formatter: Formatter? { get set }
23 | open var objectValue: Any? { get set }
24 | @MainActor open var stringValue: String { get set }
| `- note: mutation of this property is only permitted within the actor
25 | @NSCopying open var attributedStringValue: NSAttributedString { get set }
26 | open var intValue: Int32 { get set }
[19/190] Compiling Omnibar OmnibarContent.swift
[20/190] Compiling RxSwift Empty.swift
[21/190] Compiling RxSwift Enumerated.swift
[22/190] Compiling RxSwift Error.swift
[23/190] Compiling RxSwift Errors.swift
[24/190] Compiling RxSwift Event.swift
[25/190] Compiling RxSwift Filter.swift
[26/190] Compiling RxSwift First.swift
[27/190] Compiling RxSwift Generate.swift
[28/190] Compiling RxSwift GroupBy.swift
[29/190] Compiling RxSwift GroupedObservable.swift
[30/190] Compiling RxSwift HistoricalScheduler.swift
[31/190] Compiling RxSwift HistoricalSchedulerTimeConverter.swift
[32/190] Compiling RxSwift ImmediateSchedulerType.swift
[33/190] Compiling RxSwift Infallible+CombineLatest+Collection.swift
[34/190] Compiling RxSwift Infallible+CombineLatest+arity.swift
[35/190] Compiling RxSwift Infallible+Concurrency.swift
[36/190] Compiling RxSwift Infallible+Create.swift
[37/190] Compiling RxSwift Infallible+Debug.swift
[38/190] Compiling RxSwift Infallible+Operators.swift
[39/190] Compiling RxSwift Infallible+Zip+arity.swift
[40/190] Compiling RxSwift Infallible.swift
[41/190] Compiling RxSwift InfiniteSequence.swift
[42/190] Compiling RxSwift InvocableScheduledItem.swift
[43/190] Compiling RxSwift InvocableType.swift
[44/190] Compiling RxSwift Just.swift
[45/190] Compiling RxSwift Lock.swift
[46/190] Compiling RxSwift LockOwnerType.swift
[47/190] Compiling RxSwift MainScheduler.swift
[48/190] Compiling RxSwift Map.swift
[49/190] Compiling RxSwift Materialize.swift
[50/190] Compiling RxSwift Maybe.swift
[51/190] Compiling RxSwift Merge.swift
[52/190] Compiling RxSwift RetryWhen.swift
[53/190] Compiling RxSwift Rx.swift
[54/190] Compiling RxSwift RxMutableBox.swift
[55/190] Compiling RxSwift Sample.swift
[56/190] Compiling RxSwift Scan.swift
[57/190] Compiling RxSwift ScheduledDisposable.swift
[58/190] Compiling RxSwift ScheduledItem.swift
[59/190] Compiling RxSwift ScheduledItemType.swift
[60/190] Compiling RxSwift SchedulerServices+Emulation.swift
[61/190] Compiling RxSwift SchedulerType.swift
[62/190] Compiling RxSwift Sequence.swift
[63/190] Compiling RxSwift SerialDispatchQueueScheduler.swift
[64/190] Compiling RxSwift SerialDisposable.swift
[65/190] Compiling RxSwift ShareReplayScope.swift
[66/190] Compiling RxSwift Single.swift
[67/190] Compiling RxSwift SingleAssignmentDisposable.swift
[68/190] Compiling RxSwift SingleAsync.swift
[69/190] Compiling RxSwift Sink.swift
[70/190] Compiling RxSwift Skip.swift
[71/190] Compiling RxSwift SkipUntil.swift
[72/190] Compiling RxSwift SkipWhile.swift
[73/190] Compiling RxSwift StartWith.swift
[74/190] Compiling RxSwift SubjectType.swift
[75/190] Compiling RxSwift SubscribeOn.swift
[76/190] Compiling RxSwift SubscriptionDisposable.swift
[77/190] Compiling RxSwift SwiftSupport.swift
[78/190] Compiling RxSwift Switch.swift
[79/190] Compiling RxSwift SwitchIfEmpty.swift
[80/190] Compiling RxSwift SynchronizedDisposeType.swift
[81/190] Compiling RxSwift SynchronizedOnType.swift
[82/190] Compiling RxSwift SynchronizedUnsubscribeType.swift
[83/190] Compiling RxSwift TailRecursiveSink.swift
[84/190] Compiling Omnibar TextReplacement.swift
[85/190] Compiling RxSwift Multicast.swift
[86/190] Compiling RxSwift Never.swift
[87/190] Compiling RxSwift NopDisposable.swift
[88/190] Compiling RxSwift Observable+Concurrency.swift
[89/190] Compiling RxSwift Observable.swift
[90/190] Compiling RxSwift ObservableConvertibleType+Infallible.swift
[91/190] Compiling RxSwift ObservableConvertibleType.swift
[92/190] Compiling RxSwift ObservableType+Extensions.swift
[93/190] Compiling RxSwift ObservableType+PrimitiveSequence.swift
[94/190] Compiling RxSwift ObservableType.swift
[95/190] Compiling RxSwift ObserveOn.swift
[96/190] Compiling RxSwift ObserverBase.swift
[97/190] Compiling RxSwift ObserverType.swift
[98/190] Compiling RxSwift OperationQueueScheduler.swift
[99/190] Compiling RxSwift Optional.swift
[100/190] Compiling RxSwift Platform.Darwin.swift
[101/190] Compiling RxSwift Platform.Linux.swift
[102/190] Compiling RxSwift PrimitiveSequence+Concurrency.swift
[103/190] Compiling RxSwift PrimitiveSequence+Zip+arity.swift
[104/190] Compiling RxSwift PrimitiveSequence.swift
[105/190] Compiling RxSwift PriorityQueue.swift
[106/190] Compiling RxSwift Producer.swift
[107/190] Compiling RxSwift PublishSubject.swift
[108/190] Compiling RxSwift Queue.swift
[109/190] Compiling RxSwift Range.swift
[110/190] Compiling RxSwift Reactive.swift
[111/190] Compiling RxSwift RecursiveLock.swift
[112/190] Compiling RxSwift RecursiveScheduler.swift
[113/190] Compiling RxSwift Reduce.swift
[114/190] Compiling RxSwift RefCountDisposable.swift
[115/190] Compiling RxSwift Repeat.swift
[116/190] Compiling RxSwift ReplaySubject.swift
[121/190] Compiling RxSwift AnyObserver.swift
[122/190] Compiling RxSwift AsMaybe.swift
[123/190] Compiling RxSwift AsSingle.swift
[124/190] Compiling RxSwift AsyncLock.swift
[125/190] Compiling RxSwift AsyncSubject.swift
[126/190] Compiling RxSwift AtomicInt.swift
[127/190] Compiling RxSwift Bag+Rx.swift
[128/190] Compiling RxSwift Bag.swift
[129/190] Compiling RxSwift BehaviorSubject.swift
[130/190] Compiling RxSwift BinaryDisposable.swift
[131/190] Compiling RxSwift Binder.swift
[132/190] Compiling RxSwift BooleanDisposable.swift
[133/190] Compiling RxSwift Buffer.swift
[134/190] Compiling RxSwift Debug.swift
[135/190] Compiling RxSwift Decode.swift
[136/190] Compiling RxSwift DefaultIfEmpty.swift
[137/190] Compiling RxSwift Deferred.swift
[138/190] Compiling RxSwift Delay.swift
[139/190] Compiling RxSwift DelaySubscription.swift
[140/190] Compiling RxSwift Dematerialize.swift
[141/190] Compiling RxSwift DispatchQueue+Extensions.swift
[142/190] Compiling RxSwift DispatchQueueConfiguration.swift
[143/190] Compiling RxSwift Disposable.swift
[144/190] Compiling RxSwift Disposables.swift
[145/190] Compiling RxSwift DisposeBag.swift
[146/190] Compiling RxSwift DisposeBase.swift
[147/190] Compiling RxSwift DistinctUntilChanged.swift
[148/190] Compiling RxSwift Do.swift
[149/190] Compiling RxSwift ElementAt.swift
[150/190] Compiling RxSwift Cancelable.swift
[151/190] Compiling RxSwift Catch.swift
[152/190] Compiling RxSwift CombineLatest+Collection.swift
[153/190] Compiling RxSwift CombineLatest+arity.swift
[154/190] Compiling RxSwift CombineLatest.swift
[155/190] Compiling RxSwift CompactMap.swift
[156/190] Compiling RxSwift Completable+AndThen.swift
[157/190] Compiling RxSwift Completable.swift
[158/190] Compiling RxSwift CompositeDisposable.swift
[159/190] Compiling RxSwift Concat.swift
[160/190] Compiling RxSwift ConcurrentDispatchQueueScheduler.swift
[161/190] Compiling RxSwift ConcurrentMainScheduler.swift
[162/190] Compiling RxSwift ConnectableObservableType.swift
[163/190] Compiling RxSwift Create.swift
[164/190] Compiling RxSwift CurrentThreadScheduler.swift
[165/190] Compiling RxSwift Date+Dispatch.swift
[166/190] Compiling RxSwift Debounce.swift
[167/190] Compiling RxSwift Take.swift
[168/190] Compiling RxSwift TakeLast.swift
[169/190] Compiling RxSwift TakeWithPredicate.swift
[170/190] Compiling RxSwift Throttle.swift
[171/190] Compiling RxSwift Timeout.swift
[172/190] Compiling RxSwift Timer.swift
[173/190] Compiling RxSwift ToArray.swift
[174/190] Compiling RxSwift Using.swift
[175/190] Compiling RxSwift VirtualTimeConverterType.swift
[176/190] Compiling RxSwift VirtualTimeScheduler.swift
[177/190] Compiling RxSwift Window.swift
[178/190] Compiling RxSwift WithLatestFrom.swift
[179/190] Compiling RxSwift WithUnretained.swift
[180/190] Compiling RxSwift Zip+Collection.swift
[181/190] Compiling RxSwift Zip+arity.swift
[182/190] Compiling RxSwift Zip.swift
[183/196] Compiling RxRelay Utils.swift
[184/196] Compiling RxRelay ReplayRelay.swift
[185/196] Compiling RxRelay PublishRelay.swift
[186/196] Compiling RxRelay BehaviorRelay.swift
[187/196] Emitting module RxRelay
[188/196] Compiling RxRelay Observable+Bind.swift
[188/196] Compiling RxCocoaRuntime _RXKVOObserver.m
[189/196] Compiling RxCocoaRuntime _RXDelegateProxy.m
[190/196] Compiling RxCocoaRuntime _RX.m
[191/196] Compiling RxCocoaRuntime _RXObjCRuntime.m
[193/283] Compiling RxCocoa Signal.swift
[194/283] Compiling RxCocoa TextInput.swift
[195/283] Compiling RxCocoa UIActivityIndicatorView+Rx.swift
[196/283] Compiling RxCocoa UIApplication+Rx.swift
[197/283] Compiling RxCocoa UIBarButtonItem+Rx.swift
[198/283] Compiling RxCocoa UIButton+Rx.swift
[199/283] Compiling RxCocoa UICollectionView+Rx.swift
[200/283] Compiling RxCocoa UIControl+Rx.swift
[201/283] Compiling RxCocoa UIDatePicker+Rx.swift
[202/292] Compiling RxCocoa RxCollectionViewReactiveArrayDataSource.swift
[203/292] Compiling RxCocoa RxDelegateProxyCrashFix.swift
[204/292] Compiling RxCocoa RxNavigationControllerDelegateProxy.swift
[205/292] Compiling RxCocoa RxPickerViewAdapter.swift
[206/292] Compiling RxCocoa RxPickerViewDataSourceProxy.swift
[207/292] Compiling RxCocoa RxPickerViewDataSourceType.swift
[208/292] Compiling RxCocoa RxPickerViewDelegateProxy.swift
[209/292] Compiling RxCocoa RxScrollViewDelegateProxy.swift
[210/292] Compiling RxCocoa RxSearchBarDelegateProxy.swift
[211/292] Compiling RxCocoa RxSearchControllerDelegateProxy.swift
[212/292] Compiling RxCocoa UIGestureRecognizer+Rx.swift
[213/292] Compiling RxCocoa UINavigationController+Rx.swift
[214/292] Compiling RxCocoa UIPickerView+Rx.swift
[215/292] Compiling RxCocoa UIRefreshControl+Rx.swift
[216/292] Compiling RxCocoa UIScrollView+Rx.swift
[217/292] Compiling RxCocoa UISearchBar+Rx.swift
[218/292] Compiling RxCocoa UISearchController+Rx.swift
[219/292] Compiling RxCocoa UISegmentedControl+Rx.swift
[220/292] Compiling RxCocoa UISlider+Rx.swift
[221/292] Compiling RxCocoa RxTabBarControllerDelegateProxy.swift
[222/292] Compiling RxCocoa RxTabBarDelegateProxy.swift
[223/292] Compiling RxCocoa RxTableViewDataSourcePrefetchingProxy.swift
[224/292] Compiling RxCocoa RxTableViewDataSourceProxy.swift
[225/292] Compiling RxCocoa RxTableViewDataSourceType.swift
[226/292] Compiling RxCocoa RxTableViewDelegateProxy.swift
[227/292] Compiling RxCocoa RxTableViewReactiveArrayDataSource.swift
[228/292] Compiling RxCocoa RxTarget.swift
[229/292] Compiling RxCocoa RxTextStorageDelegateProxy.swift
[230/292] Compiling RxCocoa Driver+Subscription.swift
[231/292] Compiling RxCocoa Driver.swift
[232/292] Compiling RxCocoa Infallible+Bind.swift
[233/292] Compiling RxCocoa Infallible+Driver.swift
[234/292] Compiling RxCocoa ItemEvents.swift
[235/292] Compiling RxCocoa KVORepresentable+CoreGraphics.swift
[236/292] Compiling RxCocoa KVORepresentable+Swift.swift
[237/292] Compiling RxCocoa KVORepresentable.swift
[238/292] Compiling RxCocoa NSButton+Rx.swift
[239/292] Compiling RxCocoa NSControl+Rx.swift
[240/292] Compiling RxCocoa ObservableConvertibleType+Driver.swift
[241/292] Compiling RxCocoa ObservableConvertibleType+SharedSequence.swift
[242/292] Compiling RxCocoa ObservableConvertibleType+Signal.swift
[243/292] Compiling RxCocoa PublishRelay+Signal.swift
[244/292] Compiling RxCocoa RxCocoa.swift
[245/292] Compiling RxCocoa RxCocoaObjCRuntimeError+Extensions.swift
[246/292] Compiling RxCocoa RxCollectionViewDataSourcePrefetchingProxy.swift
[247/292] Compiling RxCocoa RxCollectionViewDataSourceProxy.swift
[248/292] Compiling RxCocoa RxCollectionViewDataSourceType.swift
[249/292] Compiling RxCocoa RxCollectionViewDelegateProxy.swift
[250/292] Compiling RxCocoa BehaviorRelay+Driver.swift
[251/292] Compiling RxCocoa ControlEvent+Driver.swift
[252/292] Compiling RxCocoa ControlEvent+Signal.swift
[253/292] Compiling RxCocoa ControlEvent.swift
[254/292] Compiling RxCocoa ControlProperty+Driver.swift
[255/292] Compiling RxCocoa ControlProperty.swift
[256/292] Compiling RxCocoa ControlTarget.swift
[257/292] Compiling RxCocoa DelegateProxy.swift
[258/292] Compiling RxCocoa DelegateProxyType.swift
[259/292] Compiling RxCocoa DispatchQueue+Extensions.swift
[260/292] Emitting module RxCocoa
[261/292] Compiling RxCocoa NSObject+Rx+KVORepresentable.swift
[262/292] Compiling RxCocoa NSObject+Rx+RawRepresentable.swift
[263/292] Compiling RxCocoa NSObject+Rx.swift
[264/292] Compiling RxCocoa NSSlider+Rx.swift
[265/292] Compiling RxCocoa NSTextField+Rx.swift
[266/292] Compiling RxCocoa NSTextStorage+Rx.swift
[267/292] Compiling RxCocoa NSTextView+Rx.swift
[268/292] Compiling RxCocoa NSView+Rx.swift
[269/292] Compiling RxCocoa NotificationCenter+Rx.swift
[270/292] Compiling RxCocoa Observable+Bind.swift
[271/292] Compiling RxCocoa UIStepper+Rx.swift
[272/292] Compiling RxCocoa UISwitch+Rx.swift
[273/292] Compiling RxCocoa UITabBar+Rx.swift
[274/292] Compiling RxCocoa UITabBarController+Rx.swift
[275/292] Compiling RxCocoa UITableView+Rx.swift
[276/292] Compiling RxCocoa UITextField+Rx.swift
[277/292] Compiling RxCocoa UITextView+Rx.swift
[278/292] Compiling RxCocoa URLSession+Rx.swift
[279/292] Compiling RxCocoa WKWebView+Rx.swift
[280/292] Compiling RxCocoa RxTextViewDelegateProxy.swift
[281/292] Compiling RxCocoa RxWKNavigationDelegateProxy.swift
[282/292] Compiling RxCocoa SchedulerType+SharedSequence.swift
[283/292] Compiling RxCocoa SectionedViewDataSourceType.swift
[284/292] Compiling RxCocoa SharedSequence+Concurrency.swift
[285/292] Compiling RxCocoa SharedSequence+Operators+arity.swift
[286/292] Compiling RxCocoa SharedSequence+Operators.swift
[287/292] Compiling RxCocoa SharedSequence.swift
[288/292] Compiling RxCocoa Signal+Subscription.swift
[289/296] Compiling RxOmnibar RxCocoaCasting.swift
[290/296] Emitting module RxOmnibar
[291/296] Compiling RxOmnibar RxOmnibarDelegateProxy.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxOmnibar/RxOmnibarDelegateProxy.swift:27:23: warning: main actor-isolated property 'omnibarDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
24 | }
25 |
26 | public static func currentDelegate(for object: Omnibar) -> OmnibarDelegate? {
| `- note: add '@MainActor' to make static method 'currentDelegate(for:)' part of global actor 'MainActor'
27 | return object.omnibarDelegate
| `- warning: main actor-isolated property 'omnibarDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:44:21: note: property declared here
42 | }
43 |
44 | public weak var omnibarDelegate: OmnibarDelegate?
| `- note: property declared here
45 | fileprivate var cachedTextFieldChange: TextFieldTextChange?
46 |
/Users/admin/builder/spi-builder-workspace/Sources/RxOmnibar/RxOmnibarDelegateProxy.swift:31:16: warning: main actor-isolated property 'omnibarDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 |
30 | public static func setCurrentDelegate(_ delegate: OmnibarDelegate?, to object: Omnibar) {
| `- note: add '@MainActor' to make static method 'setCurrentDelegate(_:to:)' part of global actor 'MainActor'
31 | object.omnibarDelegate = delegate
| `- warning: main actor-isolated property 'omnibarDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:44:21: note: mutation of this property is only permitted within the actor
42 | }
43 |
44 | public weak var omnibarDelegate: OmnibarDelegate?
| `- note: mutation of this property is only permitted within the actor
45 | fileprivate var cachedTextFieldChange: TextFieldTextChange?
46 |
[292/296] Compiling RxOmnibar Omnibar+Rx.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxOmnibar/Omnibar+Rx.swift:23:21: warning: call to main actor-isolated instance method 'display(content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
21 | public var content: Binder<OmnibarContent> {
22 | return Binder(base) { (omnibar: Omnibar, content: OmnibarContent) in
23 | omnibar.display(content: content)
| `- warning: call to main actor-isolated instance method 'display(content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:123:17: note: calls to instance method 'display(content:)' from outside of its actor context are implicitly asynchronous
121 | extension Omnibar: DisplaysOmnibarContent {
122 |
123 | public func display(content: OmnibarContent) {
| `- note: calls to instance method 'display(content:)' from outside of its actor context are implicitly asynchronous
124 |
125 | editableText.replace(replacement: TextReplacement(omnibarContent: content))
/Users/admin/builder/spi-builder-workspace/Sources/RxOmnibar/Omnibar+Rx.swift:23:21: warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
21 | public var content: Binder<OmnibarContent> {
22 | return Binder(base) { (omnibar: Omnibar, content: OmnibarContent) in
23 | omnibar.display(content: content)
| |- warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'content' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
24 | }
25 | }
[292/296] Write Objects.LinkFileList
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'DispatchQueue+Extensions.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/RxSwift.build/DispatchQueue+Extensions.swift.o(DispatchQueue+Extensions.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/RxCocoa.build/DispatchQueue+Extensions.swift.o(DispatchQueue+Extensions.swift.o)'
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'Observable+Bind.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/RxCocoa.build/Observable+Bind.swift.o(Observable+Bind.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/RxRelay.build/Observable+Bind.swift.o(Observable+Bind.swift.o)'
[294/296] Archiving libRxOmnibar-Static.a
[295/296] Linking libRxOmnibar-Dynamic.dylib
Build complete! (33.51s)
Build complete.
{
"dependencies" : [
{
"identity" : "rxswift",
"requirement" : {
"range" : [
{
"lower_bound" : "6.6.0",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ReactiveX/RxSwift.git"
}
],
"manifest_display_name" : "Omnibar",
"name" : "Omnibar",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Omnibar",
"targets" : [
"Omnibar"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "RxOmnibar",
"targets" : [
"RxOmnibar"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "RxOmnibar-Static",
"targets" : [
"RxOmnibar"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "RxOmnibar-Dynamic",
"targets" : [
"RxOmnibar"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "RxOmnibarTests",
"module_type" : "SwiftTarget",
"name" : "RxOmnibarTests",
"path" : "Tests/RxOmnibarTests",
"product_dependencies" : [
"RxTest"
],
"sources" : [
"Omnibar+RxTests.swift",
"RxTestHelpers.swift"
],
"target_dependencies" : [
"RxOmnibar"
],
"type" : "test"
},
{
"c99name" : "RxOmnibar",
"module_type" : "SwiftTarget",
"name" : "RxOmnibar",
"path" : "Sources/RxOmnibar",
"product_dependencies" : [
"RxSwift",
"RxCocoa",
"RxRelay"
],
"product_memberships" : [
"RxOmnibar",
"RxOmnibar-Static",
"RxOmnibar-Dynamic"
],
"sources" : [
"Omnibar+Rx.swift",
"RxCocoaCasting.swift",
"RxOmnibarDelegateProxy.swift"
],
"target_dependencies" : [
"Omnibar"
],
"type" : "library"
},
{
"c99name" : "OmnibarTests",
"module_type" : "SwiftTarget",
"name" : "OmnibarTests",
"path" : "Tests/OmnibarTests",
"sources" : [
"ChangeMethodTests.swift",
"NSRange+EquatableTests.swift",
"NSText+FieldEditorTests.swift",
"OmnibarContentChangeTests.swift",
"OmnibarContentTests.swift",
"OmnibarTests.swift",
"TextFieldTextChangeTests.swift",
"TextReplacementTests.swift"
],
"target_dependencies" : [
"Omnibar"
],
"type" : "test"
},
{
"c99name" : "Omnibar",
"module_type" : "SwiftTarget",
"name" : "Omnibar",
"path" : "Sources/Omnibar",
"product_memberships" : [
"Omnibar",
"RxOmnibar",
"RxOmnibar-Static",
"RxOmnibar-Dynamic"
],
"sources" : [
"ChangeMethod.swift",
"EditableText.swift",
"FieldEditor.swift",
"NSText+FieldEditor.swift",
"NSView+constrainToSuperviewBounds.swift",
"Omnibar.swift",
"OmnibarContent.swift",
"OmnibarContentChange.swift",
"OmnibarDelegate.swift",
"OmnibarTextFieldCell.swift",
"TextFieldTextChange.swift",
"TextReplacement.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.