lighthouse-pulse/Cross.toml

11 lines
728 B
TOML
Raw Permalink Normal View History

# Note: To enable working remote builds in gitlab pipelines, the Dockerfile.builder image is using the latest version of cross, straight from the git repo main branch.
# This latest version defaults to the :main tag for the worker images below, which no longer have the clang-5.0 package available.
# The images below are pinned to the latest cross release (0.2.5) in order to retain clang-5.0 lib compatibility with the upstream project.
[target.x86_64-unknown-linux-gnu]
image = "ghcr.io/cross-rs/x86_64-unknown-linux-gnu:0.2.5"
2023-08-10 14:58:57 +00:00
pre-build = ["apt-get install -y cmake clang-5.0"]
[target.aarch64-unknown-linux-gnu]
image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:0.2.5"
2023-08-10 14:58:57 +00:00
pre-build = ["apt-get install -y cmake clang-5.0"]