Skip to content

Commit a322377

Browse files
authored
Unpin Meson from 1.7.2 to use latest 1.9.0 (lovell#289)
1 parent f335d64 commit a322377

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Install dependencies (macOS)
5858
if: runner.os == 'macOS'
5959
run: |
60-
pipx install meson==1.7.2
60+
pipx install meson
6161
brew install automake nasm
6262
- name: Build ${{ matrix.platform }}
6363
run: ./build.sh ${{ matrix.platform }}

platforms/linux-arm64v8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ RUN \
5454
&& \
5555
cargo install cargo-c --locked && \
5656
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
57-
pip3 install meson==1.7.2 ninja tomli
57+
pip3 install meson ninja tomli
5858

5959
# Compiler settings
6060
ENV \

platforms/linux-armv6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN \
3838
--default-toolchain nightly \
3939
&& \
4040
cargo install cargo-c --locked && \
41-
pip3 install meson==1.7.2 tomli
41+
pip3 install meson tomli
4242

4343
# Compiler settings
4444
ENV \

platforms/linux-ppc64le/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN \
3838
--default-toolchain nightly \
3939
&& \
4040
cargo install cargo-c --locked && \
41-
pipx install meson==1.7.2
41+
pipx install meson
4242

4343
# Handy for debugging the compiled targets in Highway (hwy_list_targets)
4444
#RUN apt-get install -y qemu-user-static

platforms/linux-riscv64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN \
3838
--default-toolchain nightly \
3939
&& \
4040
cargo install cargo-c --locked && \
41-
pipx install meson==1.7.2
41+
pipx install meson
4242

4343
# Compiler settings
4444
ENV \

platforms/linux-s390x/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN \
3838
--default-toolchain nightly \
3939
&& \
4040
cargo install cargo-c --locked && \
41-
pipx install meson==1.7.2
41+
pipx install meson
4242

4343
# Handy for debugging the compiled targets in Highway (hwy_list_targets)
4444
#RUN apt-get install -y qemu-user-static

platforms/linux-x64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ RUN \
5353
&& \
5454
cargo install cargo-c --locked && \
5555
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
56-
pip3 install meson==1.7.2 ninja tomli
56+
pip3 install meson ninja tomli
5757

5858
# Compiler settings
5959
ENV \

platforms/linuxmusl-arm64v8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN \
4444
--default-toolchain nightly \
4545
&& \
4646
cargo install cargo-c --locked && \
47-
pip3 install meson==1.7.2
47+
pip3 install meson
4848

4949
# Compiler settings
5050
ENV \

platforms/linuxmusl-x64/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN \
4444
--default-toolchain nightly \
4545
&& \
4646
cargo install cargo-c --locked && \
47-
pip3 install meson==1.7.2
47+
pip3 install meson
4848

4949
# Compiler settings
5050
ENV \

0 commit comments

Comments
 (0)