ffplayout/Cross.toml

42 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2024-04-26 05:56:01 -04:00
[target.x86_64-unknown-linux-musl]
pre-build = [
2024-04-26 07:54:33 -04:00
"apt-get update",
"apt-get --assume-yes install curl",
"curl -fsSL https://deb.nodesource.com/setup_20.x | bash -",
"apt-get --assume-yes install nodejs"
2024-04-26 05:56:01 -04:00
]
[target.aarch64-unknown-linux-gnu]
pre-build = [
2024-04-26 07:54:33 -04:00
"apt-get update",
"apt-get --assume-yes install curl",
"curl -fsSL https://deb.nodesource.com/setup_20.x | bash -",
"apt-get --assume-yes install nodejs"
2024-04-26 05:56:01 -04:00
]
[target.x86_64-pc-windows-gnu]
pre-build = [
2024-04-26 07:54:33 -04:00
"apt-get update",
"apt-get --assume-yes install curl",
"curl -fsSL https://deb.nodesource.com/setup_20.x | bash -",
"apt-get --assume-yes install nodejs"
]
[target.x86_64-apple-darwin]
image = "ghcr.io/cross-rs/x86_64-apple-darwin-cross:local"
pre-build = [
"apt-get update",
"apt-get --assume-yes install curl",
"curl -fsSL https://deb.nodesource.com/setup_20.x | bash -",
"apt-get --assume-yes install nodejs"
]
[target.aarch64-apple-darwin]
image = "ghcr.io/cross-rs/aarch64-apple-darwin-cross:local"
pre-build = [
"apt-get update",
"apt-get --assume-yes install curl",
"curl -fsSL https://deb.nodesource.com/setup_20.x | bash -",
"apt-get --assume-yes install nodejs"
2024-04-26 05:56:01 -04:00
]