From 04922ea9e8b0c4c916e19240825cc1a7a1fa318d Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Mon, 27 Jun 2022 10:09:25 +0800 Subject: [PATCH] github actions: bug fix, the build nydus-rs always gets cancelled The cross release version 0.2.2, may contain bug, leads to the ci gets cancelled, downgrade it to 0.2.1. Signed-off-by: Qi Wang --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 68c0ca27666..7188ad5a97d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: run: | declare -A rust_arch_map=( ["amd64"]="x86_64" ["arm64"]="aarch64") arch=${rust_arch_map[${{ matrix.arch }}]} - cargo install cross + cargo install --version 0.2.1 cross rustup component add rustfmt clippy make -e ARCH=$arch -e CARGO=cross static-release sudo mv target-fusedev/$arch-unknown-linux-musl/release/nydusd nydusd-fusedev