From a9bc03702414f274e401a575c0dfe9f130ba365a Mon Sep 17 00:00:00 2001 From: a2nr Date: Thu, 12 Mar 2026 12:59:59 +0700 Subject: [PATCH] feat: add build-executor task for blockly_executor in pixi.toml --- pixi.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pixi.toml b/pixi.toml index 860c148..438cea5 100644 --- a/pixi.toml +++ b/pixi.toml @@ -34,6 +34,8 @@ pywebview = "*" [tasks] build-interfaces = "colcon build --symlink-install --packages-select blockly_interfaces" + +[target.linux-64.tasks] build-executor = { cmd = "colcon build --symlink-install --packages-select blockly_executor", depends-on = ["build-interfaces"] } build-app = { cmd = "colcon build --symlink-install --packages-select blockly_app", depends-on = ["build-interfaces"] } build = { cmd = "colcon build --symlink-install", depends-on = ["build-interfaces"] }