ci: run gst-inspect after the build
authorJordan Petridis <jordan@centricular.com>
Sat, 7 May 2022 01:45:09 +0000 (04:45 +0300)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Fri, 20 May 2022 14:54:16 +0000 (14:54 +0000)
useful to quick inspect the elements built, later on we can
start verifying the list of elements against a known good list.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2458>

.gitlab-ci.yml

index b2a0e31..b8b5342 100644 (file)
@@ -270,7 +270,9 @@ gst indent:
   variables:
     MESON_ARGS: "${DEFAULT_MESON_ARGS} ${MESON_BUILDTYPE_ARGS} ${MESON_GST_WERROR}"
   script:
-    *build
+    - *build
+    - ./gst-env.py gst-inspect-1.0 --version
+    - ./gst-env.py gst-inspect-1.0
   after_script:
     - mv build/meson-logs/ meson-logs
   artifacts:
@@ -383,6 +385,8 @@ build vs2019 amd64:
   script:
     - !reference [".build windows", "script",]
     - cmd.exe /C "C:\BuildTools\Common7\Tools\VsDevCmd.bat -host_arch=amd64 -arch=$env:ARCH &&
+        .\gst-env.py gst-inspect-1.0.exe --version &&
+        .\gst-env.py gst-inspect-1.0.exe &&
         mkdir .\destdir &&
         meson install --destdir=$env:CI_PROJECT_DIR\destdir -C build &&
         rmdir /s /q  $env:CI_PROJECT_DIR\destdir"