An extension for colcon-core to clean package workspaces. Enables cleaning of various colcon paths, such as build or install folders, for either the entire workspace or for selected packages with advanced path globing options. In conjunction with colcon-package-selection, this extension can help maintain hygienic build environments while leveraging persistent workspaces for caching by allowing users to finely remove stale artifacts, preserving what can be cached during software development. For example, when pulling various changes into a local workspace to review pull requests, this extension can be used to wipe only the build and install paths for affected packages, ensuring subsequent builds are not cross contaminated from previous jobs.
The extension works by providing a convenient wrapper around filesystem deletion, allowing users to specify at which base paths to be cleaned (build, install, log, test_result), at what level cleaning should take place (global workspace or per package), and if specified what exact files should (or should not) be removed.
Setup, build and test an example colcon workspace:
mkdir -p ~/ws/src && cd ~/ws
wget https://raw.githubusercontent.com/colcon/colcon.readthedocs.org/main/colcon.repos
vcs import src < colcon.repos
colcon build
colcon test
Clean build and install paths for select packages:
colcon clean packages \
--base-select \
build \
install \
--packages-select \
colcon-cmake \
colcon-package-information
Clean gcov count data files for entire workspace:
colcon clean workspace \
--base-select \
build \
--clean-match \
"*.gcda"
workspace - Clean paths for workspaceThe workspace subverb provides a means to globally clean the top level base paths for the entire workspace.
packages - Clean paths for packagesThe packages subverb provides a means to locally clean the package level base paths using package selection.
By default, this extension will provide an interactive confirmation prompt with a printout of files to be deleted. This dialogue can be automatically skipped; these deletion events can still be observed via the command's resulting colcon log file.
-y, --yesAdditional arguments supported by all subverbs provide the option to select which base paths to clean, where they may be relocated:
--base-select--base-ignore--build-base--install-base--log-base--test-result-baseSpecify what files and directories to include. All files and directories (including symbolic links) are included by default. The --clean-match/--clean-ignore arguments allows for selection using glob/wildcard (".gitignore style") path matching. Paths relative to the root directory (i.e. excluding the name of the root directory itself) are matched against the provided patterns. For example, to only include Gcov Data files, use: colcon clean workspace --clean-match "*.gcda" or to exclude hidden files and directories use: colcon clean workspace --clean-ignore ".*" ".*/" which is short for colcon clean workspace --clean-match "*" "!.*" "!.*/".
--clean-match--clean-ignore--clean-no-linked-dirs--clean-no-linked-filesThis extension makes use of a number of colcon-core extension points for registering verbs, subverbs with colcon CLI. This extension also provides it's own extension points to support additional cleaning strategies.
BaseHandlerExtensionPointThis extension point determines the types of base paths that may be selected for cleaning. Default base handler extensions provided include:
buildinstalllogtest_resultbuild path to store test results$ claude mcp add colcon-clean \
-- python -m otcore.mcp_server <graph>