An activity pipeline is a series of activities performed in a predetermined order to deliver a final result.
Create a pipeline by chaining the activities with links between the activities.
Example: to dynamically link a checkout activity to a build activity:
In the MAIA Agent client software :
uuid=$(cat /proc/sys/kernel/random/uuid)
bundle exec maia checkout --component openssl --track main --activity-uuid $uuid
parent_uuid=$uuid; uuid=$(cat /proc/sys/kernel/random/uuid)
bundle exec maia build --component openssl --parent-activity-uuid $parent_uuid --activity-uuid $uuid