gitlab-ci: Add checks for missing init asserts

This commit is contained in:
Guillaume Gomez 2020-03-22 15:18:47 +01:00 committed by Sebastian Dröge
parent bfb4ec25c5
commit 2f72261360

View file

@ -181,6 +181,12 @@ gir-checks:
--gir-file ../Gir_Gst.toml ../gstreamer/ \
--gir-file ../Gir_GstVideo.toml ../gstreamer-video/ \
--gir-file ../Gir_GstWebRTC.toml ../gstreamer-webrtc/
- cd ..
- |
for crate in gstreamer*; do
echo '-->' $crate
(cd $crate && ../checker/check_init_asserts)
done
outdated:
extends: '.tarball_setup'