From 1f0a1249ab9813bebc14c06f19b0076d4f4c7afc Mon Sep 17 00:00:00 2001 From: Fedor Tolstonozhenko Date: Sun, 25 Aug 2024 22:42:22 +0200 Subject: [PATCH] Trying to fix CI --- .github/workflows/rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a14b78a..a3a5b9f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -136,6 +136,8 @@ jobs: run: | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable --profile default --target ${{ matrix.TARGET }} -y echo "$HOME/.cargo/bin" >> $GITHUB_PATH + # exists for debug purposes + rustc -V # For linux, it's necessary to use cross from the git repository to avoid glibc problems # Ref: https://github.com/cross-rs/cross/issues/1510