Skip to content

Commit ebdadfa

Browse files
Yang Kaiyongimeoer
Yang Kaiyong
authored andcommitted
chore: fix broken CI by pinning virtio-bindings to v0.2.4
Pin the version of `virtio-bindings` to `v0.2.4` in `Cargo.toml`. Bump the cross version from 0.2.4 to 0.2.5. Signed-off-by: Yang Kaiyong <[email protected]>
1 parent 4744500 commit ebdadfa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: .github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: |
3737
declare -A rust_target_map=( ["amd64"]="x86_64-unknown-linux-musl" ["arm64"]="aarch64-unknown-linux-musl" ["ppc64le"]="powerpc64le-unknown-linux-gnu" ["riscv64"]="riscv64gc-unknown-linux-gnu" ["s390x"]="s390x-unknown-linux-gnu")
3838
RUST_TARGET=${rust_target_map[${{ matrix.arch }}]}
39-
cargo install --version 0.2.4 cross
39+
cargo install --version 0.2.5 cross
4040
rustup component add rustfmt clippy
4141
make -e RUST_TARGET=$RUST_TARGET -e CARGO=cross check
4242
- name: smoke

Diff for: Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ tokio = { version = "1", optional = true }
3232
tokio-uring = { version = "0.4.0", optional = true }
3333
vmm-sys-util = { version = "0.12.1", optional = true }
3434
vm-memory = { version = "0.14.1", features = ["backend-mmap"] }
35+
virtio-bindings = { version = "=0.2.4", optional = true }
3536
virtio-queue = { version = "0.12.0", optional = true }
3637
vhost = { version = "0.11.0", features = ["vhost-user","vhost-user-backend"], optional = true }
3738
versionize_derive = { version = "0.1.6", optional = true }

0 commit comments

Comments
 (0)