From cb13b75e29872430fd581b41e4b4ac99b6bcff64 Mon Sep 17 00:00:00 2001 From: Javernaut Date: Sun, 26 Feb 2023 10:26:31 +0100 Subject: [PATCH] Using Meson 1.0.1 --- .github/workflows/compilability_check.yml | 2 +- tools/docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compilability_check.yml b/.github/workflows/compilability_check.yml index bca320d..be57a90 100644 --- a/.github/workflows/compilability_check.yml +++ b/.github/workflows/compilability_check.yml @@ -12,7 +12,7 @@ jobs: - name: Setup the environment run: | - sudo pip3 install meson==1.0.0 + sudo pip3 install meson==1.0.1 sudo apt-get install nasm ninja-build - name: Executing the script diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index c5a889c..3f485d7 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -7,7 +7,7 @@ ARG VERSION_NDK=25.2.9519653 ARG VERSION_CMAKE=3.22.1 # Package to install via pip3 -ARG VERSION_MESON=1.0.0 +ARG VERSION_MESON=1.0.1 # The HOME variable isn't available for ENV directive (during building an image). # So we define one manually. For alpine and ubuntu it should be '/root'