Fix runner specification in build-packages.yml workflow - #6213
Merged
Conversation
Corrected the runner specification from 'ubuntu-latest-m' to 'ubuntu-latest-l' across multiple jobs in the workflow file.
soffokl
approved these changes
Aug 13, 2026
There was a problem hiding this comment.
Pull request overview
Updates the build-packages.yml GitHub Actions workflow to run key jobs on larger runners, aiming to provide more resources for CI packaging and related steps.
Changes:
- Switched
runs-onfromubuntu-latest-mtoubuntu-latest-lforsetup-env,build-packages,build-swagger, andcleanup-env. - Standardized runner sizing across those jobs within
build-packages.yml.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| jobs: | ||
| setup-env: | ||
| runs-on: ubuntu-latest-m | ||
| runs-on: ubuntu-latest-l |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #6213 +/- ##
==========================================
+ Coverage 25.96% 25.98% +0.02%
==========================================
Files 544 544
Lines 31555 31555
==========================================
+ Hits 8192 8199 +7
+ Misses 22517 22512 -5
+ Partials 846 844 -2 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the GitHub Actions workflow configuration to use larger runner machines for all jobs in the
build-packages.ymlworkflow. The main change is switching fromubuntu-latest-m(medium) toubuntu-latest-l(large) runners, which should provide more resources for CI jobs.CI/CD Infrastructure Updates:
runs-onparameter fromubuntu-latest-mtoubuntu-latest-lfor the following jobs in.github/workflows/build-packages.yml:setup-env,build-packages,build-swagger, andcleanup-env. This ensures all jobs run on larger GitHub-hosted runners, likely improving build performance and reliability. [1] [2] [3] [4]Corrected the runner specification from 'ubuntu-latest-m' to 'ubuntu-latest-l' across multiple jobs in the workflow file.