mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
ci: Make sure to always update subprojects
The command was not run in Windows jobs, better keep subprojects handling in a single script. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2509>
This commit is contained in:
parent
7c8902c983
commit
ea990ff817
2 changed files with 2 additions and 2 deletions
|
@ -210,8 +210,6 @@ gst indent:
|
|||
#
|
||||
.build_template: &build
|
||||
- ci/scripts/handle-subprojects-cache.py subprojects/
|
||||
# Update subprojects to respect `.wrap` content
|
||||
- meson subprojects update --reset
|
||||
- echo $MESON_ARGS
|
||||
- meson build/ $MESON_ARGS
|
||||
- ninja -C build/
|
||||
|
|
|
@ -8,6 +8,7 @@ import shutil
|
|||
import os
|
||||
import sys
|
||||
import argparse
|
||||
import subprocess
|
||||
|
||||
DEST = "/subprojects"
|
||||
PARSER = argparse.ArgumentParser()
|
||||
|
@ -69,6 +70,7 @@ def copy_cache(options):
|
|||
|
||||
print("Copying from %s -> %s" % (cache_dir, project_path))
|
||||
shutil.copytree(cache_dir, project_path)
|
||||
subprocess.check_call(['meson', 'subprojects', 'update', '--reset'])
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue