From ef78498dc20d2774a0964357fa6d137aec915852 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 6 Sep 2022 11:51:26 -0400 Subject: [PATCH] ci: Fix running gst-inspect inside devenv There are 2 gst-inspect-1.0 executables, one in root builddir and another one in subprojects/gstreamer/tools/. The latter does not link on gst-full, meson devenv is supposed to set the former first in PATH, but it seems to be flicky. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7988ab91..051de194 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -245,7 +245,7 @@ gst-build: # Check static Rust plugins can be linked into gst-full - meson build-gst-full --default-library=static $MESON_ARGS - ninja -C build-gst-full - - meson devenv -C build-gst-full gst-inspect-1.0 rsaudiofx + - meson devenv -C build-gst-full ./gst-inspect-1.0 rsaudiofx artifacts: expire_in: '7 days' when: always