From 111eedd8914fb7dc289bb61d881978a3f5be25db Mon Sep 17 00:00:00 2001 From: YuQiang Date: Tue, 5 Mar 2024 22:11:37 +0800 Subject: [PATCH] feat: update cargo and smoke.yml Signed-off-by: YuQiang --- .github/workflows/smoke.yml | 2 ++ Cargo.toml | 2 +- api/Cargo.toml | 2 +- service/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/smoke.yml b/.github/workflows/smoke.yml index f446a8537f4..853cd259c09 100644 --- a/.github/workflows/smoke.yml +++ b/.github/workflows/smoke.yml @@ -165,6 +165,8 @@ jobs: sudo mkdir -p /usr/bin/nydus-latest /home/runner/work/workdir sudo install -D -m 755 contrib/nydusify/cmd/nydusify /usr/bin/nydus-latest sudo install -D -m 755 target/release/nydusd target/release/nydus-image /usr/bin/nydus-latest + + sudo bash misc/performance/prepare.sh export NYDUS_STABLE_VERSION=$(curl https://api.github.com/repos/Dragonflyoss/nydus/releases/latest | jq -r '.tag_name') export NYDUS_STABLE_VERSION_EXPORT="${NYDUS_STABLE_VERSION//./_}" diff --git a/Cargo.toml b/Cargo.toml index fe729262beb..55fc79744bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ lazy_static = "1" libc = "0.2" log = "0.4.8" log-panics = { version = "2.1.0", features = ["with-backtrace"] } -mio = { version = "0.8", features = ["os-poll", "os-ext"] } +mio = { version = "0.8.11", features = ["os-poll", "os-ext"] } nix = "0.24.0" rlimit = "0.9.0" rusqlite = { version = "0.30.0", features = ["bundled"] } diff --git a/api/Cargo.toml b/api/Cargo.toml index 3bd8c03a057..8c1a14a69fc 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -19,7 +19,7 @@ backtrace = { version = "0.3", optional = true } dbs-uhttp = { version = "0.3.0", optional = true } http = { version = "0.2.1", optional = true } lazy_static = { version = "1.4.0", optional = true } -mio = { version = "0.8", features = ["os-poll", "os-ext"], optional = true } +mio = { version = "0.8.11", features = ["os-poll", "os-ext"], optional = true } serde = { version = "1.0.110", features = ["rc", "serde_derive"] } url = { version = "2.1.1", optional = true } diff --git a/service/Cargo.toml b/service/Cargo.toml index 74fee2af621..4d2272ec057 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -15,7 +15,7 @@ dbs-allocator = { version = "0.1.1", optional = true } fuse-backend-rs = { version = "^0.11.0", features = ["persist"] } libc = "0.2" log = "0.4.8" -mio = { version = "0.8", features = ["os-poll", "os-ext"] } +mio = { version = "0.8.11", features = ["os-poll", "os-ext"] } nix = "0.24.0" rust-fsm = "0.6.0" serde = { version = "1.0.110", features = ["serde_derive", "rc"] }