1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-16 20:45:22 +00:00
krust/tests/testdata/platform_override.txt

21 lines
506 B
Text
Raw Normal View History

# Test that explicit platform overrides base image detection
-- Cargo.toml --
[package]
name = "test-app"
version = "0.1.0"
edition = "2021"
[dependencies]
-- src/main.rs --
fn main() {
println!("Hello, world!");
}
# When platform is explicit, no detection should happen
env RUST_LOG=info
[linux] exec ./krust build --no-push --platform linux/amd64 .
[darwin] exec ./krust build --no-push --platform linux/amd64 .
! stderr 'Detecting available platforms'
stderr 'Building for platform: linux/amd64'