mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 21:30:41 +00:00
14 lines
439 B
TOML
14 lines
439 B
TOML
|
|
# Cross configuration for building the workflow runner for VM targets
|
||
|
|
# Reference: https://github.com/cross-rs/cross
|
||
|
|
|
||
|
|
[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",
|
||
|
|
"apt-get update && apt-get install --assume-yes protobuf-compiler"
|
||
|
|
]
|