Build Information
Successful build of Notus, reference 1.0.0 (c3e836), with Swift 6.3 for Linux on 11 Apr 2026 07:15:53 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cremo-music/notus.git
Reference: 1.0.0
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/cremo-music/notus
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at c3e8363 Notus is born! Please give him a warm welcome.
Cloned https://github.com/cremo-music/notus.git
Revision (git rev-parse @):
c3e8363647a8ed5f287a17aaf95e6dadb3edf3c8
SUCCESS checkout https://github.com/cremo-music/notus.git at 1.0.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.3
Building package at path: $PWD
https://github.com/cremo-music/notus.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/33] Emitting module Notus
[4/37] Compiling Notus Pitch.swift
[5/37] Compiling Notus DefaultPlayer.swift
[6/37] Compiling Notus FancyPlayer.swift
[7/37] Compiling Notus UserPatchMap.swift
[8/37] Compiling Notus Triol.swift
[9/37] Compiling Notus MusicNotation.swift
[10/37] Compiling Notus MidiToMusic.swift
[11/37] Compiling Notus MidiToNotusBuilders.swift
[12/37] Compiling Notus MusicSequenceBuilder.swift
[13/37] Compiling Notus MusicToMidi.swift
[14/37] Compiling Notus Validaters.swift
[15/37] Compiling Notus MidiPlayer.swift
[16/37] Compiling Notus CanineMain.swift
[17/37] Compiling Notus ChordsAndBass.swift
[18/37] Compiling Notus Solo.swift
[19/37] Compiling Notus SoloChordsAndBass.swift
[20/37] Compiling Notus ThemeChordsAndBass.swift
[21/37] Compiling Notus Duration.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:157:25: warning: enum case 'stack' has 2 associated values
155 | case .modify(_, let music):
156 | return music.duration()
157 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
158 | let upperDuration = musicUpper.duration()
159 | let lowerDuration = musicLower.duration()
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:161:23: warning: enum case 'seq' has 2 associated values
159 | let lowerDuration = musicLower.duration()
160 | return cut ? min(upperDuration, lowerDuration) : max(upperDuration, lowerDuration)
161 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
162 | return musicLeft.duration() + musicRight.duration()
163 | case .prim(let .note(dur, _)):
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:41:25: warning: enum case 'stack' has 2 associated values
39 | return music.musicToPerformance(context: updatedContext, playerMap: playerMap)
40 |
41 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
42 | let per0 = musicUpper.musicToPerformance(context: context, playerMap: playerMap)
43 | let per1 = musicLower.musicToPerformance(context: context, playerMap: playerMap)
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:46:23: warning: enum case 'seq' has 2 associated values
44 | return (per0.0 + per1.0, per0.1 + per1.1)
45 |
46 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
47 | var updatedContext = context
48 | updatedContext.beat += Time(musicLeft.duration())
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:61:24: warning: enum case 'note' has 2 associated values
59 | private func primToPerformance(context: MusicContext, prim: Primitive) -> Performance {
60 | switch prim {
61 | case .note(let (dur, pitch)):
| `- warning: enum case 'note' has 2 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:27:10: note: 'note' declared here
25 |
26 | public enum Primitive {
27 | case note(Dur, Pitch)
| `- note: 'note' declared here
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
29 | case rest(Dur)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:64:28: warning: enum case 'noteAttr' has 3 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
64 | case .noteAttr(let (dur, pitch, attrs)):
| `- warning: enum case 'noteAttr' has 3 associated values
65 | let event = context.player.noteInterpret(context, pitch, dur, attrs)
66 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:28:10: note: 'noteAttr' declared here
26 | public enum Primitive {
27 | case note(Dur, Pitch)
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
| `- note: 'noteAttr' declared here
29 | case rest(Dur)
30 | case none
[22/37] Compiling Notus Event.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:157:25: warning: enum case 'stack' has 2 associated values
155 | case .modify(_, let music):
156 | return music.duration()
157 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
158 | let upperDuration = musicUpper.duration()
159 | let lowerDuration = musicLower.duration()
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:161:23: warning: enum case 'seq' has 2 associated values
159 | let lowerDuration = musicLower.duration()
160 | return cut ? min(upperDuration, lowerDuration) : max(upperDuration, lowerDuration)
161 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
162 | return musicLeft.duration() + musicRight.duration()
163 | case .prim(let .note(dur, _)):
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:41:25: warning: enum case 'stack' has 2 associated values
39 | return music.musicToPerformance(context: updatedContext, playerMap: playerMap)
40 |
41 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
42 | let per0 = musicUpper.musicToPerformance(context: context, playerMap: playerMap)
43 | let per1 = musicLower.musicToPerformance(context: context, playerMap: playerMap)
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:46:23: warning: enum case 'seq' has 2 associated values
44 | return (per0.0 + per1.0, per0.1 + per1.1)
45 |
46 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
47 | var updatedContext = context
48 | updatedContext.beat += Time(musicLeft.duration())
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:61:24: warning: enum case 'note' has 2 associated values
59 | private func primToPerformance(context: MusicContext, prim: Primitive) -> Performance {
60 | switch prim {
61 | case .note(let (dur, pitch)):
| `- warning: enum case 'note' has 2 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:27:10: note: 'note' declared here
25 |
26 | public enum Primitive {
27 | case note(Dur, Pitch)
| `- note: 'note' declared here
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
29 | case rest(Dur)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:64:28: warning: enum case 'noteAttr' has 3 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
64 | case .noteAttr(let (dur, pitch, attrs)):
| `- warning: enum case 'noteAttr' has 3 associated values
65 | let event = context.player.noteInterpret(context, pitch, dur, attrs)
66 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:28:10: note: 'noteAttr' declared here
26 | public enum Primitive {
27 | case note(Dur, Pitch)
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
| `- note: 'noteAttr' declared here
29 | case rest(Dur)
30 | case none
[23/37] Compiling Notus MusicToPerformance.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:157:25: warning: enum case 'stack' has 2 associated values
155 | case .modify(_, let music):
156 | return music.duration()
157 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
158 | let upperDuration = musicUpper.duration()
159 | let lowerDuration = musicLower.duration()
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:161:23: warning: enum case 'seq' has 2 associated values
159 | let lowerDuration = musicLower.duration()
160 | return cut ? min(upperDuration, lowerDuration) : max(upperDuration, lowerDuration)
161 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
162 | return musicLeft.duration() + musicRight.duration()
163 | case .prim(let .note(dur, _)):
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:41:25: warning: enum case 'stack' has 2 associated values
39 | return music.musicToPerformance(context: updatedContext, playerMap: playerMap)
40 |
41 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
42 | let per0 = musicUpper.musicToPerformance(context: context, playerMap: playerMap)
43 | let per1 = musicLower.musicToPerformance(context: context, playerMap: playerMap)
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:46:23: warning: enum case 'seq' has 2 associated values
44 | return (per0.0 + per1.0, per0.1 + per1.1)
45 |
46 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
47 | var updatedContext = context
48 | updatedContext.beat += Time(musicLeft.duration())
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:61:24: warning: enum case 'note' has 2 associated values
59 | private func primToPerformance(context: MusicContext, prim: Primitive) -> Performance {
60 | switch prim {
61 | case .note(let (dur, pitch)):
| `- warning: enum case 'note' has 2 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:27:10: note: 'note' declared here
25 |
26 | public enum Primitive {
27 | case note(Dur, Pitch)
| `- note: 'note' declared here
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
29 | case rest(Dur)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:64:28: warning: enum case 'noteAttr' has 3 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
64 | case .noteAttr(let (dur, pitch, attrs)):
| `- warning: enum case 'noteAttr' has 3 associated values
65 | let event = context.player.noteInterpret(context, pitch, dur, attrs)
66 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:28:10: note: 'noteAttr' declared here
26 | public enum Primitive {
27 | case note(Dur, Pitch)
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
| `- note: 'noteAttr' declared here
29 | case rest(Dur)
30 | case none
[24/37] Compiling Notus Performance.swift
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:157:25: warning: enum case 'stack' has 2 associated values
155 | case .modify(_, let music):
156 | return music.duration()
157 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
158 | let upperDuration = musicUpper.duration()
159 | let lowerDuration = musicLower.duration()
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/Duration.swift:161:23: warning: enum case 'seq' has 2 associated values
159 | let lowerDuration = musicLower.duration()
160 | return cut ? min(upperDuration, lowerDuration) : max(upperDuration, lowerDuration)
161 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
162 | return musicLeft.duration() + musicRight.duration()
163 | case .prim(let .note(dur, _)):
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:41:25: warning: enum case 'stack' has 2 associated values
39 | return music.musicToPerformance(context: updatedContext, playerMap: playerMap)
40 |
41 | case .stack(let (musicUpper, musicLower)):
| `- warning: enum case 'stack' has 2 associated values
42 | let per0 = musicUpper.musicToPerformance(context: context, playerMap: playerMap)
43 | let per1 = musicLower.musicToPerformance(context: context, playerMap: playerMap)
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:5:19: note: 'stack' declared here
3 | public enum Music {
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
| `- note: 'stack' declared here
6 | indirect case seq(Music, Music)
7 | indirect case modify(Control, Music)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:46:23: warning: enum case 'seq' has 2 associated values
44 | return (per0.0 + per1.0, per0.1 + per1.1)
45 |
46 | case .seq(let (musicLeft, musicRight)):
| `- warning: enum case 'seq' has 2 associated values
47 | var updatedContext = context
48 | updatedContext.beat += Time(musicLeft.duration())
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:6:19: note: 'seq' declared here
4 | case prim(Primitive)
5 | indirect case stack(Music, Music)
6 | indirect case seq(Music, Music)
| `- note: 'seq' declared here
7 | indirect case modify(Control, Music)
8 | }
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:61:24: warning: enum case 'note' has 2 associated values
59 | private func primToPerformance(context: MusicContext, prim: Primitive) -> Performance {
60 | switch prim {
61 | case .note(let (dur, pitch)):
| `- warning: enum case 'note' has 2 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:27:10: note: 'note' declared here
25 |
26 | public enum Primitive {
27 | case note(Dur, Pitch)
| `- note: 'note' declared here
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
29 | case rest(Dur)
/host/spi-builder-workspace/Sources/Notus/Performance/MusicToPerformance.swift:64:28: warning: enum case 'noteAttr' has 3 associated values
62 | let event = context.player.noteInterpret(context, pitch, dur, [])
63 | return ([event], [])
64 | case .noteAttr(let (dur, pitch, attrs)):
| `- warning: enum case 'noteAttr' has 3 associated values
65 | let event = context.player.noteInterpret(context, pitch, dur, attrs)
66 | return ([event], [])
/host/spi-builder-workspace/Sources/Notus/MusicNotation.swift:28:10: note: 'noteAttr' declared here
26 | public enum Primitive {
27 | case note(Dur, Pitch)
28 | case noteAttr(Dur, Pitch, [NoteAttribute])
| `- note: 'noteAttr' declared here
29 | case rest(Dur)
30 | case none
[25/37] Compiling Notus ThemeMel.swift
[26/37] Compiling Notus ThemeSoloInterlude.swift
[27/37] Compiling Notus Chameleon.swift
[28/37] Compiling Notus Counterpoint.swift
[29/37] Compiling Notus DrumSolo.swift
[30/37] Compiling Notus FrereJacques.swift
[31/37] Compiling Notus James.swift
[32/37] Compiling Notus LillePeterEdderkop.swift
[33/37] Compiling Notus Channel.swift
[34/37] Compiling Notus Instrument.swift
[35/37] Compiling Notus MusicNotationSimpleTypes.swift
[36/37] Compiling Notus MusicUtils.swift
[37/37] Compiling Notus Percussion.swift
Build complete! (11.87s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Notus",
"name" : "Notus",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Notus",
"targets" : [
"Notus"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "NotusTests",
"module_type" : "SwiftTarget",
"name" : "NotusTests",
"path" : "Tests/NotusTests",
"sources" : [
"MusicNotation/MusicNotationTests.swift",
"Performance/Players/DefaultPlayerTests.swift",
"Performance/Players/FancyPlayerTests.swift",
"Performance/UserPatchMapTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"Notus"
],
"type" : "test"
},
{
"c99name" : "Notus",
"module_type" : "SwiftTarget",
"name" : "Notus",
"path" : "Sources/Notus",
"product_memberships" : [
"Notus"
],
"sources" : [
"Music/Channel.swift",
"Music/Instrument.swift",
"Music/MusicNotationSimpleTypes.swift",
"Music/MusicUtils.swift",
"Music/Percussion.swift",
"MusicExamples/Canine/CanineMain.swift",
"MusicExamples/Canine/ChordsAndBass.swift",
"MusicExamples/Canine/Solo.swift",
"MusicExamples/Canine/SoloChordsAndBass.swift",
"MusicExamples/Canine/ThemeChordsAndBass.swift",
"MusicExamples/Canine/ThemeMel.swift",
"MusicExamples/Canine/ThemeSoloInterlude.swift",
"MusicExamples/Chameleon.swift",
"MusicExamples/Counterpoint.swift",
"MusicExamples/DrumSolo.swift",
"MusicExamples/FrereJacques.swift",
"MusicExamples/James.swift",
"MusicExamples/LillePeterEdderkop.swift",
"MusicExamples/Triol.swift",
"MusicNotation.swift",
"NotusIO/Midi/MidiToMusic.swift",
"NotusIO/Midi/MidiToNotusBuilders.swift",
"NotusIO/Midi/MusicSequenceBuilder.swift",
"NotusIO/Midi/MusicToMidi.swift",
"NotusIO/Midi/Validaters.swift",
"NotusIO/Playback/MidiPlayer.swift",
"Performance/Duration.swift",
"Performance/Event.swift",
"Performance/MusicToPerformance.swift",
"Performance/Performance.swift",
"Performance/Pitch.swift",
"Performance/Players/DefaultPlayer.swift",
"Performance/Players/FancyPlayer.swift",
"Performance/UserPatchMap.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Done.