From 668eaa23e765b251c8c14a23828321011a08b325 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Fri, 3 Jan 2025 06:31:00 +0300 Subject: [PATCH] sha2: fix RISC-V CI job --- .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