Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion build_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ DEBIAN_FRONTEND="noninteractive" apt-get install --no-install-recommends -y \
libglm-dev libstb-dev libc6-dev \
debhelper-compat libdbus-1-dev libglib2.0-dev meson ninja-build dbus \
libvirglrenderer1 libvirglrenderer-dev pipewire libpipewire-0.3-dev \
lsof \
podman

# `riscv64` specific dependencies
Expand Down Expand Up @@ -78,6 +77,12 @@ if [ "$ARCH" != "riscv64" ]; then
rustup target add $ARCH-unknown-linux-musl $ARCH-unknown-none
fi

# The below are only used for compile-testing via cargo check.
# It suffices to do that on _one_ architecture.
if [ "$ARCH" == "x86_64" ]; then
rustup target add aarch64-apple-darwin x86_64-pc-windows-gnu
fi

cargo install cargo-llvm-cov

# Install the codecov.io uploader. Not available on riscv64, so skip there
Expand Down
Loading