From 28bbf1042cc606357c9a06fe4be6e600ecc91501 Mon Sep 17 00:00:00 2001 From: Croxx Date: Fri, 15 Sep 2023 00:40:27 +0800 Subject: [PATCH] fix(ci): exclude tikv-jemalloc-sys in hakari check (#12320) Signed-off-by: MrCroxx --- .config/hakari.toml | 2 ++ Cargo.lock | 1 - src/workspace-hack/Cargo.toml | 2 -- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.config/hakari.toml b/.config/hakari.toml index 9cdfbb3b0c07f..e998f5fea2fbe 100644 --- a/.config/hakari.toml +++ b/.config/hakari.toml @@ -35,4 +35,6 @@ third-party = [ { name = "criterion" }, { name = "console" }, { name = "similar" }, + # FYI: https://github.com/risingwavelabs/risingwave/issues/12315 + { name = "tikv-jemalloc-sys", git = "https://github.com/risingwavelabs/jemallocator.git", rev = "64a2d9" }, ] diff --git a/Cargo.lock b/Cargo.lock index faec2fdfb3aa8..8a882bd21a360 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10104,7 +10104,6 @@ dependencies = [ "subtle", "syn 1.0.109", "syn 2.0.33", - "tikv-jemalloc-sys", "time", "time-macros", "tinyvec", diff --git a/src/workspace-hack/Cargo.toml b/src/workspace-hack/Cargo.toml index c84d4dcb26edf..a539527690fce 100644 --- a/src/workspace-hack/Cargo.toml +++ b/src/workspace-hack/Cargo.toml @@ -94,7 +94,6 @@ serde_json = { version = "1", features = ["alloc"] } serde_with = { version = "3", features = ["json"] } smallvec = { version = "1", default-features = false, features = ["serde", "union", "write"] } subtle = { version = "2" } -tikv-jemalloc-sys = { git = "https://github.com/risingwavelabs/jemallocator.git", rev = "64a2d9", features = ["profiling", "stats"] } time = { version = "0.3", features = ["local-offset", "macros", "serde-well-known"] } tinyvec = { version = "1", features = ["alloc", "grab_spare_slice", "rustc_1_55"] } tokio = { version = "1", features = ["full", "stats", "tracing"] } @@ -196,7 +195,6 @@ smallvec = { version = "1", default-features = false, features = ["serde", "unio subtle = { version = "2" } syn-dff4ba8e3ae991db = { package = "syn", version = "1", features = ["extra-traits", "full", "visit", "visit-mut"] } syn-f595c2ba2a3f28df = { package = "syn", version = "2", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] } -tikv-jemalloc-sys = { git = "https://github.com/risingwavelabs/jemallocator.git", rev = "64a2d9", features = ["profiling", "stats"] } time = { version = "0.3", features = ["local-offset", "macros", "serde-well-known"] } time-macros = { version = "0.2", default-features = false, features = ["formatting", "parsing", "serde"] } tinyvec = { version = "1", features = ["alloc", "grab_spare_slice", "rustc_1_55"] }