meson: Add test-xbox alias target to limit test build

This commit is contained in:
Matt Borgerson
2025-12-28 23:55:53 -07:00
committed by mborgerson
parent 0ce21a787c
commit efcfa92ed6
2 changed files with 4 additions and 1 deletions

View File

@ -247,7 +247,8 @@ jobs:
- name: Test
run: |
pushd src/build
./pyvenv/bin/meson test --suite xbox
./pyvenv/bin/meson compile test-xbox
./pyvenv/bin/meson test --suite xbox --no-rebuild
popd
- name: Report ccache stats
run: ccache -s

View File

@ -11,3 +11,5 @@ test('xbox-mcpx-dsp', exe,
args: ['--tap', '-k'],
protocol: 'tap',
suite: ['xbox', 'xbox-mcpx', 'xbox-mcpx-dsp'])
alias_target('test-xbox', exe)