Revival of my old effort to get riscv64 testing in! Now we're at Debian 13 (trixie), we can support RISC-V builds! Disable llvmpipe suite because of lp_test_arit failure, see https://gitlab.freedesktop.org/mesa/mesa/-/issues/14123 Signed-off-by: David Heidelberg <david@ixit.cz> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37445>
21 lines
333 B
Bash
21 lines
333 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
. .gitlab-ci/setup-test-env.sh
|
|
|
|
arch=riscv64
|
|
|
|
# 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
|