Feat/standarize docs#5
Merged
Merged
Conversation
Two-layer defence so test_mtc_tick_source never aborts in CI: 1. tests.yml — load snd-seq + snd-seq-dummy kernel modules before running CTest. This creates /dev/snd/seq so RtMidiIn initialises normally and returns 0/virtual ports; no exception is ever raised. 2. MtcTickSource::start() — add a Linux-only early-return when /dev/snd/seq is absent (access(2) check) before touching RtMidi. This avoids a subtle RTTI mismatch: libgradient_motion.a carries a weak typeinfo copy of RtMidiError that can shadow librtmidi.so's strong copy, causing catch(const RtMidiError&) to silently miss the exception. Also widen the fallback catch to (...) for safety. Note: osc_latency.txt results updated. Reduction on both cases
The github-hosted runner uses an Azure kernel that does not ship
snd-seq/snd-seq-dummy modules. Add || true so the step never fails;
the code-level access("/dev/snd/seq") guard already handles the
no-ALSA path cleanly.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Unify descriptions and documentation contents across all organization repositories.
Change documentation page design to Material Mkdocs.
Add coverage badge
Ensure tests run properly.