From d06dc3c833ac451f65d8bfa7165bcafe01d52426 Mon Sep 17 00:00:00 2001 From: Bernd Storath <32197462+kaaax0815@users.noreply.github.com> Date: Sun, 29 Dec 2024 18:17:27 +0100 Subject: [PATCH] fix github ci (#253) --- cargo/.github/workflows/rust_ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cargo/.github/workflows/rust_ci.yml b/cargo/.github/workflows/rust_ci.yml index 67f97d5..0aae380 100644 --- a/cargo/.github/workflows/rust_ci.yml +++ b/cargo/.github/workflows/rust_ci.yml @@ -35,7 +35,7 @@ jobs: uses: dtolnay/rust-toolchain@v1 with: toolchain: nightly - components: rust-src + components: rust-src rustfmt clippy {%- else %} uses: esp-rs/xtensa-toolchain@v1.5 with: @@ -45,6 +45,10 @@ jobs: {%- endif %} - name: Enable caching uses: Swatinem/rust-cache@v2 + {%- if arch == "riscv" %} + - name: Install ldproxy + run: cargo install ldproxy + {%- endif %} - name: Run command {%- raw %} run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}