Commit 54b2c08
Add GitHub Actions CI workflow (#28)
* Add GitHub Actions CI workflow
Build RadeonMemoryVisualizer and RmvBackendTest on Windows
(VS 2022) and Ubuntu 24.04 for pushes to master and PRs
targeting master. Run backend tests against samples/sample_trace.rmv.
Add build status badge to README.
Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
* Fix Qt install path so pre_build.py can locate Qt
jurplel/install-qt-action adds an extra Qt/ subdirectory to the
configured dir, so passing dir: 'C:\Qt' or '<workspace>/Qt' resulted
in Qt landing at C:\Qt\Qt\6.7.0 / <workspace>/Qt/Qt/6.7.0, which
pre_build.py's --qt-root search couldn't find. Drop the extra Qt/
suffix from dir so the action's added subdirectory is the one
--qt-root points at.
Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
* Install Qt Wayland module and wayland system libs on Ubuntu
devtools_qt_helper.cmake requires the Qt6::WaylandClient component,
which install-qt-action does not include with Qt Base. Add the
qtwayland Qt module and the libwayland-dev system package so the
required client/server/cursor/egl libs resolve.
Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
* Use qtwaylandcompositor as the aqt module name
aqt does not expose 'qtwayland' as a module identifier for Qt 6.7.0;
both the compositor and client libraries ship in a single module
named qtwaylandcompositor, which is what provides Qt6WaylandClient.
Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
* Bump checkout and setup-python to Node.js 24-native versions
actions/checkout@v4 and actions/setup-python@v5 run on Node.js 20,
which GitHub deprecates June 2, 2026 and removes September 16, 2026.
Use the v5 / v6 majors so we never see the deprecation warning.
Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4 <noreply@anthropic.com>1 parent 7b3e1fb commit 54b2c08
2 files changed
Lines changed: 111 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
3 | 5 | | |
4 | 6 | | |
5 | 7 | | |
| |||
0 commit comments