From 2795b4fc666dd1e7c4afc1b32250cc4640ca0cdd Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Fri, 3 Jan 2025 06:34:44 +0300 Subject: [PATCH] sha2: fix RISC-V CI job (#637) --- .github/workflows/sha2.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sha2.yml b/.github/workflows/sha2.yml index 2d8130b1..96d1eb8d 100644 --- a/.github/workflows/sha2.yml +++ b/.github/workflows/sha2.yml @@ -163,7 +163,11 @@ jobs: steps: - uses: actions/checkout@v4 - uses: RustCrypto/actions/cargo-cache@master - - run: cargo install cross --git https://github.com/cross-rs/cross + - name: Install Cross + env: + # Do not fail on compilation warnings + RUSTFLAGS: "" + run: cargo install cross --git https://github.com/cross-rs/cross - uses: dtolnay/rust-toolchain@master with: toolchain: nightly