From 97a258bcb8a699ff8b48ecf362285292a776754a Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Thu, 6 Mar 2025 12:39:51 +0100 Subject: [PATCH] ci: fix core_unit_rust_test w/ ASAN [no changelog] --- .github/workflows/core.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 251c606cf71..4ec1c511935 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -225,6 +225,7 @@ jobs: # indicating that it does not rely on particular envvars or other flags. # This makes sure that rust-analyzer will work on our codebase. - run: nix-shell --run "cd core/embed/rust && cargo build" + if: matrix.asan == 'noasan' - run: nix-shell --run "poetry run make -C core clippy" - run: nix-shell --run "poetry run make -C core test_rust"