Skip to content

Commit

Permalink
ci: verbose tests
Browse files Browse the repository at this point in the history
Signed-off-by: Pierrick Bouvier <[email protected]>
  • Loading branch information
pbo-linaro committed Dec 3, 2024
1 parent 33eef00 commit 9ae228c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ jobs:
- run: >
podman run --init --privileged --rm -it -v $(pwd):$(pwd) -w $(pwd)
docker.io/pbolinaro/qemu-ci:debian-all-test-cross
bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check-tcg"
bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check-tcg V=1"
# run all meson tests, including functional. Run -j1 to avoid sporadic issues.
# block tests are not ran because they don't support sanitizers:
Expand All @@ -291,7 +291,7 @@ jobs:
- run: >
podman run --init --privileged --rm -it -v /dev/kvm:/dev/kvm -v $(pwd):$(pwd) -w $(pwd)
docker.io/pbolinaro/qemu-ci:debian-precache-tests
bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check SPEED=thorough TIMEOUT_MULTIPLIER=5"
bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check SPEED=thorough TIMEOUT_MULTIPLIER=5 V=1"
# iotests do not support sanitizers, so we run them in their own job
check-block:
Expand All @@ -308,7 +308,7 @@ jobs:
- run: >
podman run --init --privileged --rm -it -v /dev/kvm:/dev/kvm -v $(pwd):$(pwd) -w $(pwd)
docker.io/pbolinaro/qemu-ci:debian-precache-tests
bash -cx "meson test -C build --suite block --suite block-slow --suite block-thorough -j 1 --timeout-multiplier 5"
bash -cx "meson test -C build --suite block --suite block-slow --suite block-thorough -j 1 --timeout-multiplier 5 --verbose"
check-avocado:
needs: checkapply
Expand All @@ -326,4 +326,4 @@ jobs:
- run: >
podman run --init --privileged --rm -it -v /dev/kvm:/dev/kvm -v $(pwd):$(pwd) -w $(pwd)
docker.io/pbolinaro/qemu-ci:debian-precache-tests
bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check-avocado"
bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check-avocado V=1"

0 comments on commit 9ae228c

Please sign in to comment.