From 76f636688358f7ab5ffcdfac4e1af0637e42cc8a Mon Sep 17 00:00:00 2001 From: Justin Kilpatrick Date: Tue, 17 Sep 2024 16:28:48 -0400 Subject: [PATCH] Unpin rust version I've finally found a reliable way to get cross to play nicely with arbitrary rust versions. So we can remove this pin which was really a patch for a local machine issue. --- roles/prepare-sources/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/prepare-sources/tasks/main.yml b/roles/prepare-sources/tasks/main.yml index 54ba0beb..318f9586 100644 --- a/roles/prepare-sources/tasks/main.yml +++ b/roles/prepare-sources/tasks/main.yml @@ -23,7 +23,7 @@ when: apply_patches - name: Update Rust - shell: "{{ansible_env.HOME}}/.cargo/bin/rustup default 1.80; {{ansible_env.HOME}}/.cargo/bin/rustup update" + shell: "{{ansible_env.HOME}}/.cargo/bin/rustup update" - name: Grab rust targets for hardware profile command: "{{ansible_env.HOME}}/.cargo/bin/rustup target add {{rust_target}}"