2025-11-01 12:14:50 +01:00
|
|
|
# Cross configuration for building the workflow runner for VM targets
|
|
|
|
|
# Reference: https://github.com/cross-rs/cross
|
2025-11-01 16:22:37 +01:00
|
|
|
[build.env]
|
|
|
|
|
passthrough = ["BINDGEN_EXTRA_CLANG_ARGS", "BINDGEN_EXTRA_CLANG_ARGS=-I/usr/lib/llvm-13/lib/clang/13.0.0/include"]
|
2025-11-01 12:14:50 +01:00
|
|
|
|
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
|
|
|
image = "ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main"
|
|
|
|
|
|
|
|
|
|
[target.x86_64-unknown-illumos]
|
|
|
|
|
image = "ghcr.io/cross-rs/x86_64-unknown-illumos:main"
|
|
|
|
|
|
|
|
|
|
[build]
|
|
|
|
|
pre-build = [
|
|
|
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
2025-11-01 16:22:37 +01:00
|
|
|
"apt-get update && apt-get install --assume-yes protobuf-compiler libclang-dev clang build-essential",
|
|
|
|
|
"cargo install --force --locked bindgen-cli",
|
|
|
|
|
"update-alternatives --install /usr/bin/cc cc /usr/bin/clang 100",
|
|
|
|
|
"update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++ 100"
|
2025-11-01 12:14:50 +01:00
|
|
|
]
|