ci/linker: update mold to 1.6 and enable on s390x

Since 1.6 is s390x supported platform.

Signed-off-by: David Heidelberg <david.heidelberg@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19254>
This commit is contained in:
David Heidelberg 2022-10-22 21:41:49 +02:00 committed by Marge Bot
parent 4e570cbfa2
commit 2aa588bf0a
3 changed files with 13 additions and 2 deletions

View file

@ -2,7 +2,7 @@
set -ex
MOLD_VERSION="1.5.0"
MOLD_VERSION="1.6.0"
git clone -b v"$MOLD_VERSION" --single-branch --depth 1 https://github.com/rui314/mold.git
cd mold

View file

@ -1,5 +1,16 @@
#!/bin/bash
set -e
arch=s390x
# Ephemeral packages (installed for this script and removed again at the end)
STABLE_EPHEMERAL="libssl-dev"
apt-get -y install "$STABLE_EPHEMERAL"
. .gitlab-ci/container/build-mold.sh
apt-get purge -y "$STABLE_EPHEMERAL"
. .gitlab-ci/container/cross_build.sh

View file

@ -3,7 +3,7 @@ variables:
DEBIAN_BASE_TAG: "2022-10-19-remove-xvmc-dev"
DEBIAN_X86_BUILD_IMAGE_PATH: "debian/x86_build"
DEBIAN_BUILD_TAG: "2022-10-18-dx-headers"
DEBIAN_BUILD_TAG: "2022-10-22-mold-1_6"
DEBIAN_X86_BUILD_MINGW_IMAGE_PATH: "debian/x86_build-mingw"
DEBIAN_BUILD_MINGW_TAG: "2022-10-18-dx-headers-va"