Build Information
Successful build of MorkAndMIDI, reference 5.1.0 (07cdd5), with Swift 6.1 for macOS (SPM) on 8 Jan 2026 23:37:48 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCapturesBuild Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/bradhowes/morkandmidi.git
Reference: 5.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/bradhowes/morkandmidi
* tag 5.1.0 -> FETCH_HEAD
HEAD is now at 07cdd56 Force disconnect if notified of object being removed.
Cloned https://github.com/bradhowes/morkandmidi.git
Revision (git rev-parse @):
07cdd56620f6948a9e30aa3519b30268daea4b6f
SUCCESS checkout https://github.com/bradhowes/morkandmidi.git at 5.1.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/bradhowes/morkandmidi.git
https://github.com/bradhowes/morkandmidi.git
{
"dependencies" : [
],
"manifest_display_name" : "MorkAndMIDI",
"name" : "MorkAndMIDI",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "MorkAndMIDI",
"targets" : [
"MorkAndMIDI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MorkAndMIDITests",
"module_type" : "SwiftTarget",
"name" : "MorkAndMIDITests",
"path" : "Tests/MorkAndMIDITests",
"sources" : [
"KnownEntitiesTests.swift",
"MIDI1ParserTests.swift",
"MIDI2ParserTests.swift",
"MIDINotificationMessageIDTests.swift",
"MIDIObjectRefTests.swift",
"MIDITests.swift",
"MIDIUniqueIDTests.swift",
"MonitorTests.swift",
"OSStatusTests.swift",
"ReceivingTests.swift",
"StringTests.swift",
"Support/MIDITestCase.swift",
"Support/TestMonitor.swift",
"Support/TestReceiver.swift",
"UInt32Tests.swift",
"UInt8Tests.swift"
],
"target_dependencies" : [
"MorkAndMIDI"
],
"type" : "test"
},
{
"c99name" : "MorkAndMIDI",
"module_type" : "SwiftTarget",
"name" : "MorkAndMIDI",
"path" : "Sources/MorkAndMIDI",
"product_memberships" : [
"MorkAndMIDI"
],
"sources" : [
"Extensions/MIDIEndpointRef.swift",
"Extensions/MIDINotificationMessageID.swift",
"Extensions/MIDIObjectRef.swift",
"Extensions/MIDIUniqueID.swift",
"Extensions/OSStatus.swift",
"Extensions/String.swift",
"Extensions/UInt32.swift",
"Extensions/UInt8.swift",
"KnownEntities.swift",
"Logger.swift",
"MIDI.swift",
"MIDI1Parser.swift",
"MIDI2Parser.swift",
"MIDIProto.swift",
"Monitor.swift",
"Receiver.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/18] Compiling MorkAndMIDI UInt32.swift
[4/18] Compiling MorkAndMIDI UInt8.swift
[5/18] Compiling MorkAndMIDI MIDI.swift
/Users/admin/builder/spi-builder-workspace/Sources/MorkAndMIDI/MIDI.swift:185:7: warning: capture of 'self' with non-sendable type 'MIDI?' in a '@Sendable' closure
8 | an instance and set the `receiver` (aka delegate) to receive the incoming MIDI traffic.
9 | */
10 | public final class MIDI: NSObject {
| `- note: class 'MIDI' does not conform to the 'Sendable' protocol
11 | /// The MIDI protocol we are expecting.
12 | public let midiProto: MIDIProto
:
183 | configureNetworkConnections()
184 | self.eventQueue.async { [weak self] in
185 | self?.updateConnections()
| `- warning: capture of 'self' with non-sendable type 'MIDI?' in a '@Sendable' closure
186 | }
187 |
/Users/admin/builder/spi-builder-workspace/Sources/MorkAndMIDI/MIDI.swift:304:11: warning: capture of 'self' with non-sendable type 'MIDI' in a '@Sendable' closure
8 | an instance and set the `receiver` (aka delegate) to receive the incoming MIDI traffic.
9 | */
10 | public final class MIDI: NSObject {
| `- note: class 'MIDI' does not conform to the 'Sendable' protocol
11 | /// The MIDI protocol we are expecting.
12 | public let midiProto: MIDIProto
:
302 | else if messageID == .msgSetupChanged {
303 | self.eventQueue.async {
304 | self.updateConnections()
| `- warning: capture of 'self' with non-sendable type 'MIDI' in a '@Sendable' closure
305 | }
306 | }
[6/18] Compiling MorkAndMIDI MIDI1Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/MorkAndMIDI/MIDI.swift:185:7: warning: capture of 'self' with non-sendable type 'MIDI?' in a '@Sendable' closure
8 | an instance and set the `receiver` (aka delegate) to receive the incoming MIDI traffic.
9 | */
10 | public final class MIDI: NSObject {
| `- note: class 'MIDI' does not conform to the 'Sendable' protocol
11 | /// The MIDI protocol we are expecting.
12 | public let midiProto: MIDIProto
:
183 | configureNetworkConnections()
184 | self.eventQueue.async { [weak self] in
185 | self?.updateConnections()
| `- warning: capture of 'self' with non-sendable type 'MIDI?' in a '@Sendable' closure
186 | }
187 |
/Users/admin/builder/spi-builder-workspace/Sources/MorkAndMIDI/MIDI.swift:304:11: warning: capture of 'self' with non-sendable type 'MIDI' in a '@Sendable' closure
8 | an instance and set the `receiver` (aka delegate) to receive the incoming MIDI traffic.
9 | */
10 | public final class MIDI: NSObject {
| `- note: class 'MIDI' does not conform to the 'Sendable' protocol
11 | /// The MIDI protocol we are expecting.
12 | public let midiProto: MIDIProto
:
302 | else if messageID == .msgSetupChanged {
303 | self.eventQueue.async {
304 | self.updateConnections()
| `- warning: capture of 'self' with non-sendable type 'MIDI' in a '@Sendable' closure
305 | }
306 | }
[7/18] Emitting module MorkAndMIDI
[8/18] Compiling MorkAndMIDI OSStatus.swift
[9/18] Compiling MorkAndMIDI String.swift
[10/18] Compiling MorkAndMIDI MIDI2Parser.swift
[11/19] Compiling MorkAndMIDI MIDIProto.swift
[12/19] Compiling MorkAndMIDI Monitor.swift
[13/19] Compiling MorkAndMIDI MIDIObjectRef.swift
[14/19] Compiling MorkAndMIDI MIDIUniqueID.swift
[15/19] Compiling MorkAndMIDI MIDIEndpointRef.swift
[16/19] Compiling MorkAndMIDI MIDINotificationMessageID.swift
[17/19] Compiling MorkAndMIDI KnownEntities.swift
[18/19] Compiling MorkAndMIDI Logger.swift
[19/19] Compiling MorkAndMIDI Receiver.swift
Build complete! (4.76s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "MorkAndMIDI",
"name" : "MorkAndMIDI",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "MorkAndMIDI",
"targets" : [
"MorkAndMIDI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MorkAndMIDITests",
"module_type" : "SwiftTarget",
"name" : "MorkAndMIDITests",
"path" : "Tests/MorkAndMIDITests",
"sources" : [
"KnownEntitiesTests.swift",
"MIDI1ParserTests.swift",
"MIDI2ParserTests.swift",
"MIDINotificationMessageIDTests.swift",
"MIDIObjectRefTests.swift",
"MIDITests.swift",
"MIDIUniqueIDTests.swift",
"MonitorTests.swift",
"OSStatusTests.swift",
"ReceivingTests.swift",
"StringTests.swift",
"Support/MIDITestCase.swift",
"Support/TestMonitor.swift",
"Support/TestReceiver.swift",
"UInt32Tests.swift",
"UInt8Tests.swift"
],
"target_dependencies" : [
"MorkAndMIDI"
],
"type" : "test"
},
{
"c99name" : "MorkAndMIDI",
"module_type" : "SwiftTarget",
"name" : "MorkAndMIDI",
"path" : "Sources/MorkAndMIDI",
"product_memberships" : [
"MorkAndMIDI"
],
"sources" : [
"Extensions/MIDIEndpointRef.swift",
"Extensions/MIDINotificationMessageID.swift",
"Extensions/MIDIObjectRef.swift",
"Extensions/MIDIUniqueID.swift",
"Extensions/OSStatus.swift",
"Extensions/String.swift",
"Extensions/UInt32.swift",
"Extensions/UInt8.swift",
"KnownEntities.swift",
"Logger.swift",
"MIDI.swift",
"MIDI1Parser.swift",
"MIDI2Parser.swift",
"MIDIProto.swift",
"Monitor.swift",
"Receiver.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.