From 4c3bb001f5be9fd8d3e2e0045a91ce4388ad4dfb Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 16 Sep 2022 08:28:49 -0400 Subject: [PATCH] Install meson from git when MESON_COMMIT variable is set When starting manually a CI pipeline with MESON_COMMIT variable defined, install the specified version of Meson. This can be used to help the Meson project smoke testing RC releases or investigate eventual regressions. Part-of: --- ci/scripts/handle-subprojects-cache.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ci/scripts/handle-subprojects-cache.py b/ci/scripts/handle-subprojects-cache.py index 7e126e5fbf..a718c9d1c5 100755 --- a/ci/scripts/handle-subprojects-cache.py +++ b/ci/scripts/handle-subprojects-cache.py @@ -73,10 +73,19 @@ def copy_cache(options): subprocess.check_call(['meson', 'subprojects', 'update', '--reset']) +def upgrade_meson(): + # MESON_COMMIT variable can be set when creating a pipeline to test meson pre releases + meson_commit = os.environ.get('MESON_COMMIT') + if meson_commit: + url = f'git+https://github.com/mesonbuild/meson.git@{meson_commit}' + subprocess.check_call(['pip3', 'install', '--upgrade', url]) + + if __name__ == "__main__": options = PARSER.parse_args() if options.build: create_cache_in_image(options) else: + upgrade_meson() copy_cache(options)