summaryrefslogtreecommitdiff
path: root/recipes
diff options
context:
space:
mode:
authorStéphane Cerveau <scerveau@collabora.com>2021-10-06 18:39:38 +0200
committerStéphane Cerveau <scerveau@collabora.com>2021-10-06 19:37:20 +0200
commitf9c1ff37b8dc13381cde21afc35265827b2e4053 (patch)
tree2be26c0c59580bc55052214bdab4d186cfffd7fd /recipes
parent3adb4eefa8adb611f2e86902ab641415bd1bb129 (diff)
gstreamer: disable git submodule init
To avoid to download useless test media folder, disable the submodule init during the GStreamer's recipes. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/749>
Diffstat (limited to 'recipes')
-rw-r--r--recipes/custom.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/custom.py b/recipes/custom.py
index 49db912a..34a8b1f1 100644
--- a/recipes/custom.py
+++ b/recipes/custom.py
@@ -55,6 +55,9 @@ class GStreamer(recipe.Recipe):
# git repository.
self.commit = self.config.recipe_commit('gstreamer-1.0') or self.commit
self.remotes.update(self.config.recipes_remotes.get('gstreamer-1.0', {}))
+ # gst-integrations-testsuite medias folder is the only submodule in GStreamer repository,
+ # disable the submodule to avoid to download more than 500MB of test medias.
+ self.use_submodules = False
def enable_plugin(self, plugin, category, variant, option=None, dep=None):
if option is None: