mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-04 15:44:06 +08:00
2aa588bf0a
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>
17 lines
296 B
Bash
17 lines
296 B
Bash
#!/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
|