summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.d
diff options
context:
space:
mode:
authorBin Meng2022-09-25 13:30:30 +0200
committerThomas Huth2022-09-27 20:51:21 +0200
commit3070eeba8510ce755d6cd75e761126c01f065a24 (patch)
tree05c5ef41a73565d9b417566f60666109cae9c30a /.gitlab-ci.d
parenttests/qtest: migration-test: Skip running some TLS cases for win32 (diff)
downloadqemu-3070eeba8510ce755d6cd75e761126c01f065a24.tar.gz
qemu-3070eeba8510ce755d6cd75e761126c01f065a24.tar.xz
qemu-3070eeba8510ce755d6cd75e761126c01f065a24.zip
.gitlab-ci.d/windows.yml: Display meson test logs
When CI fails we don't know what causes the failure. Displaying the meson test logs can be helpful. Signed-off-by: Bin Meng <bin.meng@windriver.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220925113032.1949844-53-bmeng.cn@gmail.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to '.gitlab-ci.d')
-rw-r--r--.gitlab-ci.d/windows.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.d/windows.yml b/.gitlab-ci.d/windows.yml
index 86a4339c48..ba59844d12 100644
--- a/.gitlab-ci.d/windows.yml
+++ b/.gitlab-ci.d/windows.yml
@@ -61,7 +61,7 @@ msys2-64bit:
- .\msys64\usr\bin\bash -lc './configure --target-list=x86_64-softmmu
--enable-capstone --without-default-devices'
- .\msys64\usr\bin\bash -lc 'make'
- - .\msys64\usr\bin\bash -lc 'make check'
+ - .\msys64\usr\bin\bash -lc 'make check || { cat build/meson-logs/testlog.txt; exit 1; } ;'
msys2-32bit:
extends: .shared_msys2_builder
@@ -94,4 +94,4 @@ msys2-32bit:
- cd output
- ..\msys64\usr\bin\bash -lc "../configure --target-list=ppc64-softmmu"
- ..\msys64\usr\bin\bash -lc 'make'
- - ..\msys64\usr\bin\bash -lc 'make check'
+ - ..\msys64\usr\bin\bash -lc 'make check || { cat meson-logs/testlog.txt; exit 1; } ;'