Problem
One build-test job builds every OS and architecture for a version. As we add more operating systems, this job needs more disk space and more time.
Workbench hit this limit when we added Ubuntu 26.04. We increased the runner size as a temporary fix.
This problem will return. RHEL 10 support is planned for Workbench and other products. Each new OS adds more work to the same job.
Scope
This affects two shared workflows: bakery-build-native.yml and bakery-build-pr.yml. All three product repos use these workflows — images-connect, images-package-manager, and images-workbench — including every pull request build.
Goal
Run each OS and architecture combination as its own parallel job, instead of building all of them in one job per version.
See the comments below for the full design. Each comment covers one part.
Problem
One
build-testjob builds every OS and architecture for a version. As we add more operating systems, this job needs more disk space and more time.Workbench hit this limit when we added Ubuntu 26.04. We increased the runner size as a temporary fix.
This problem will return. RHEL 10 support is planned for Workbench and other products. Each new OS adds more work to the same job.
Scope
This affects two shared workflows:
bakery-build-native.ymlandbakery-build-pr.yml. All three product repos use these workflows — images-connect, images-package-manager, and images-workbench — including every pull request build.Goal
Run each OS and architecture combination as its own parallel job, instead of building all of them in one job per version.
See the comments below for the full design. Each comment covers one part.