Add dbg tests to test suite

pull/3215/head
Matheus Branco Borella 6 months ago committed by Matt
parent d817efc328
commit 48785a2a1d
No known key found for this signature in database

@ -30,4 +30,7 @@ jobs:
run: docker compose build ${{ matrix.images }}
- name: Test on ${{ matrix.images }}
run: docker compose run ${{ matrix.images }} ./tests.sh -d gdb -g gdb
run: |
docker compose run ${{ matrix.images }} ./tests.sh -d gdb -g gdb
docker compose run ${{ matrix.images }} ./tests.sh -d gdb -g dbg
docker compose run ${{ matrix.images }} ./tests.sh -d lldb -g dbg

@ -56,6 +56,8 @@ jobs:
if: matrix.type == 'tests'
run: |
./tests.sh --nix -d gdb -g gdb
./tests.sh --nix -d gdb -g dbg
./tests.sh --nix -d lldb -g dbg
- name: Run cross-arch tests
if: matrix.type == 'qemu-user-tests'
@ -116,6 +118,8 @@ jobs:
run: |
sudo sysctl -w kernel.yama.ptrace_scope=0
./tests.sh -d gdb -g gdb
./tests.sh -d gdb -g dbg
./tests.sh -d lldb -g dbg
qemu-user-tests:
runs-on: [ubuntu-24.04]

Loading…
Cancel
Save