From 82ec4cf28fbae3e400784710846c7b71190ecbb0 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 27 Jun 2022 18:22:30 +0100 Subject: [PATCH] CI: Skip tests that run dbus-daemon when running on Windows Mitigates: #400 Signed-off-by: Simon McVittie --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b4323d3cb..b1418c3f1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -347,7 +347,7 @@ windows-meson-mingw-ucrt64: - C:\msys64\usr\bin\bash -lc " meson build && ninja -j1 -C build && - meson test -C build" + meson test --no-suite=runs-dbus-daemon -C build" artifacts: reports: junit: "build/meson-logs/testlog.junit.xml" @@ -360,10 +360,11 @@ windows-meson-mingw-ucrt64: windows-meson-vs15-x86: extends: .win-build script: + # FIXME: tests that run dbus-daemon time out on the Gitlab runner - cmd.exe /C "C:\BuildTools\Common7\Tools\VsDevCmd.bat -host_arch=amd64 -arch=x86 && meson --force-fallback-for=expat,glib,zlib build && meson compile -C build && - meson test -C build" + meson test --no-suite=runs-dbus-daemon -C build" artifacts: reports: junit: "build/meson-logs/testlog.junit.xml" -- 2.47.3