mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 10:14:13 +08:00
c20e9868bf
Several of them don't use sections yet, but let's just have it everywhere to avoid weird surprised when moving code around and suddenly a section is used. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32299>
21 lines
331 B
Bash
21 lines
331 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
. .gitlab-ci/setup-test-env.sh
|
|
|
|
arch=s390x
|
|
|
|
# Ephemeral packages (installed for this script and removed again at the end)
|
|
EPHEMERAL=(
|
|
libssl-dev
|
|
)
|
|
|
|
apt-get -y install "${EPHEMERAL[@]}"
|
|
|
|
. .gitlab-ci/container/build-mold.sh
|
|
|
|
apt-get purge -y "${EPHEMERAL[@]}"
|
|
|
|
. .gitlab-ci/container/cross_build.sh
|