galasa-dev / projectmanagement

Project Management repo for Issues and ZenHub
7 stars 4 forks source link

Enhance mono repo's build process #2050

Open jadecarino opened 1 week ago

jadecarino commented 1 week ago

Background

A new build process was created to support the mono repo and there are some enhancements to be made which will make the process more efficient and reliable, and improve the quality of the scripts.

To dynamically get and use the list of modules, we could do this:

for module_name in $(ls $REPO_ROOT_DIR/modules); do
        info "Looking at module $module_name"
        ...
    done

Tasks