From a7efcab3ce51796f2a0636b27dd372b9ea560193 Mon Sep 17 00:00:00 2001 From: Andy Killorin <37423245+Speedy6451@users.noreply.github.com> Date: Mon, 3 Feb 2025 14:37:27 -0500 Subject: [PATCH] updated cargo cross config encoder builds for now (not pinning image) --- encoder/Cross.toml | 2 ++ northbridge/justfile | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 encoder/Cross.toml diff --git a/encoder/Cross.toml b/encoder/Cross.toml new file mode 100644 index 0000000..fbca0c0 --- /dev/null +++ b/encoder/Cross.toml @@ -0,0 +1,2 @@ +[target.armv7-unknown-linux-gnueabihf] +image = "ghcr.io/cross-rs/armv7-unknown-linux-gnueabihf:main" diff --git a/northbridge/justfile b/northbridge/justfile index d7964f7..e3c087f 100644 --- a/northbridge/justfile +++ b/northbridge/justfile @@ -1,3 +1,3 @@ deploy: - cross build --target=armv7-unknown-linux-gnueabihf - scp target/armv7-unknown-linux-gnueabihf/debug/northbridge cruise@pelican.dyn.wpi.edu: + cross build --target=armv7-unknown-linux-gnueabihf --release + scp target/armv7-unknown-linux-gnueabihf/release/northbridge cruise@pelican.dyn.wpi.edu: