Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ cmd = "rattler-build build --recipe-dir ./recipes -m ./conda_build_config.yaml -
depends-on = ["generate-recipes"]
description = "Build all packages, from the ./recipes dir. This will skip already existing packages, so it can be used to build only a subset of packages by first removing the recipes of the packages you want to rebuild (see `pixi remove-recipes`)."

[tasks.build-up-to]
cmd = "rattler-build build --recipe-dir ./recipes --up-to {{ PACKAGE }} -m ./conda_build_config.yaml -c https://prefix.dev/robostack-rolling -c https://prefix.dev/conda-forge --skip-existing"
depends-on = ["generate-recipes"]
args = [{ arg = "PACKAGE" }]
description = "Build the dependency chain up to a package, from the ./recipes dir. Pass the package name as a positional argument with the `ros-rolling-` prefix, e.g. `pixi run build-up-to ros-rolling-nav2-smac-planner`."

[tasks.remove-recipes]
cmd = "rm -rf recipes_only_patch; rm -rf recipes; mkdir recipes"
description = "Remove all generated recipes, before regenerating them."
Expand Down
Loading