krata: compile for aarch64 (aarch64 guests are not yet supported)

This commit is contained in:
Alex Zenla
2024-03-05 16:37:36 -08:00
parent f8e2f50c60
commit 0e27b8f228
10 changed files with 62 additions and 16 deletions

View File

@ -2,13 +2,13 @@
parallel = true
[pre-commit.commands.build]
run = "cargo build --target x86_64-unknown-linux-gnu"
run = "./scripts/cargo.sh build"
[pre-commit.commands.test]
run = "cargo test --target x86_64-unknown-linux-gnu"
run = "./scripts/cargo.sh test"
[pre-commit.commands.fmt]
run = "cargo fmt --all -- --check"
run = "./scripts/cargo.sh fmt --all -- --check"
[pre-commit.commands.clippy]
run = "cargo clippy --target x86_64-unknown-linux-gnu"
run = "./scripts/cargo.sh clippy"