From 50ca1003e022967057b78e3d49bc9858b4bbde84 Mon Sep 17 00:00:00 2001 From: Bugen Zhao Date: Fri, 19 Jul 2024 13:35:47 +0800 Subject: [PATCH] fix(risedev): always use dev profile for `risedev-dev` in `ci-start` (#17756) Signed-off-by: Bugen Zhao --- Makefile.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index 6c392384f518..a1f6ad5421bf 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -1261,7 +1261,7 @@ echo If you still feel this is not enough, you may copy $(tput setaf 4)risedev$( [tasks.ci-start] category = "RiseDev - CI" dependencies = ["clean-data", "pre-start-dev"] -command = "target/${BUILD_MODE_DIR}/risedev-dev" +command = "target/debug/risedev-dev" # `risedev-dev` is always built in dev profile args = ["${@}"] description = "Clean data and start a full RisingWave dev cluster using risedev-dev"