mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-27 12:14:10 +08:00
53e1bd141e
a93932daf0
("ci/meson: reuse meson installation") forgot to bump the image tags, and as a result this was merged untested and turned out to be broken, as the fedora image. The issue is that python in the Fedora image is not flagged as EXTERNALLY-MANAGED, unlike what Debian does, so the `--break-system-packages` is invalid. Instead, remove this flag from the debian image as it makes very little sense in a docker image. Fixes:a93932daf0
("ci/meson: reuse meson installation") Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29673>
12 lines
269 B
Bash
12 lines
269 B
Bash
#!/usr/bin/env bash
|
|
|
|
# When changing this file, you need to bump the following
|
|
# .gitlab-ci/image-tags.yml tags:
|
|
# DEBIAN_BUILD_TAG
|
|
# FEDORA_X86_64_BUILD_TAG
|
|
|
|
rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED
|
|
|
|
# We need at least 1.4.0 for rusticl
|
|
pip3 install 'meson==1.4.0'
|