Skip to content

Commit

Permalink
build: Require meson >=0.63.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Akaricchi committed Dec 16, 2022
1 parent 10abd79 commit cd2d460
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/emscripten-experimental.yml
Expand Up @@ -11,7 +11,7 @@ on:
- cron: '0 10 * * 4'

env:
MESON_VERSION: '0.56.2'
MESON_VERSION: '0.63.0'
EM_VERSION: 'tot'
EM_CACHE_FOLDER: 'emsdk'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -23,7 +23,7 @@ on:
- "**.wrap"

env:
MESON_VERSION: '0.56.2'
MESON_VERSION: '0.63.0'
EM_VERSION: '3.1.5'
EM_CACHE_FOLDER: 'emsdk'
TAISEI_NOPRELOAD: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -13,7 +13,7 @@ on:
description: "Input git-ref to build as a test release"

env:
MESON_VERSION: '0.56.2'
MESON_VERSION: '0.63.0'
EM_VERSION: '2.0.29'
EM_CACHE_FOLDER: 'emsdk'
TAISEI_NOPRELOAD: 0
Expand Down
2 changes: 1 addition & 1 deletion doc/BUILD.rst
Expand Up @@ -33,7 +33,7 @@ Build-Time Dependenices
"""""""""""""""""""""""

- ``gcc`` or ``clang``
- meson >= 0.56.2
- meson >= 0.63.0
- Python >= 3.6
- `python-zstandard <https://github.com/indygreg/python-zstandard>`__ >= 0.11.1
- `python-docutils <https://pypi.org/project/docutils/>`__ (optional, for generating documentation)
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Expand Up @@ -5,7 +5,7 @@ project('taisei', 'c',
files('scripts/version.py'),
'--rootdir', meson.project_source_root(),
], check : true).stdout().strip(),
meson_version : '>=0.56.2',
meson_version : '>=0.63.0',
default_options : [
'c_std=gnu11',

Expand Down
2 changes: 1 addition & 1 deletion misc/ci/Dockerfile.linux
Expand Up @@ -23,6 +23,6 @@ RUN apt update && \
git

RUN pip3 install \
meson==0.56.2 \
meson==0.63.0 \
ninja \
zstandard
2 changes: 1 addition & 1 deletion misc/ci/Dockerfile.switch
Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

RUN pip3 install \
meson==0.56.2 \
meson==0.63.0 \
ninja \
zstandard \
python-gnupg
Expand Down
2 changes: 1 addition & 1 deletion misc/ci/Dockerfile.windows
Expand Up @@ -20,7 +20,7 @@ RUN apt-get update -qq && \
rm -rf /var/lib/apt/lists/*

RUN pip3 install \
meson==0.56.2 \
meson==0.63.0 \
ninja \
zstandard \
python-gnupg
Expand Down

0 comments on commit cd2d460

Please sign in to comment.