From 8f876748d3f89d822b1167214ed4fb66146dc3df Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Wed, 28 Jul 2021 10:26:29 +0200 Subject: [PATCH] ci: bump meson version in LGTM Otherwise LGTM fails to detect the build system: ``` [2021-07-27 23:18:47] [build-stdout] The Meson build system [2021-07-27 23:18:47] [build-stdout] Version: 0.51.2 [2021-07-27 23:18:47] [build-stdout] Source dir: /opt/src [2021-07-27 23:18:47] [build-stdout] Build dir: /opt/src/_lgtm_build_dir [2021-07-27 23:18:47] [build-stdout] Build type: native build [2021-07-27 23:18:47] [build-stdout] meson.build:3:0: ERROR: Meson version is 0.51.2 but project requires >= 0.53.2 [2021-07-27 23:18:47] [build-stdout] A full log can be found at /opt/src/_lgtm_build_dir/meson-logs/meson-log.txt ``` --- .lgtm.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.lgtm.yml b/.lgtm.yml index 93f8b1c0f4..83ec5ecf11 100644 --- a/.lgtm.yml +++ b/.lgtm.yml @@ -10,6 +10,9 @@ extraction: - libp11-kit-dev - libssl-dev - python3-jinja2 + after_prepare: + - pip3 install meson==0.53.2 + - export PATH="/opt/work/.local/bin:$PATH" python: python_setup: version: 3