Actions: Simplify matrices, cleanup build_one_*#8218
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR simplifies the GitHub Actions CI matrix generation by consolidating architecture-specific build jobs into a single unified build job. The changes move complexity into the generate_ci_matrix.py script to reduce workflow duplication and streamline the build process.
- Consolidates multiple architecture-specific build jobs into single
buildjobs - Updates matrix generation to use new CLI parameters and script location
- Removes unnecessary workflow steps and duplicate job definitions
Reviewed Changes
Copilot reviewed 4 out of 6 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/merge_queue.yml | Simplifies matrix setup and consolidates all architecture builds into one job |
| .github/workflows/main_matrix.yml | Updates matrix generation and replaces individual arch builds with unified build job |
| .github/workflows/build_one_target.yml | Removes strategy/matrix from single-target builds and updates script path |
| .github/workflows/build_one_arch.yml | Consolidates architecture-specific builds into single job with updated matrix handling |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
d8c589d to
9e19f64
Compare
db8867a to
e0604c0
Compare
cb11da3 to
6d8a4a4
Compare
fifieldt
reviewed
Oct 6, 2025
| @@ -1,28 +1,32 @@ | |||
| #!/usr/bin/env python | |||
| #!/usr/bin/env python3 | |||
6d8a4a4 to
6caa2e8
Compare
DaneEvans
approved these changes
Oct 7, 2025
DaneEvans
left a comment
Contributor
There was a problem hiding this comment.
Looks good.
it'll make the whole flow easier to follow too
6caa2e8 to
3cdce3f
Compare
fifieldt
pushed a commit
to fifieldt/meshtastic-firmware
that referenced
this pull request
Oct 7, 2025
fifieldt
added a commit
that referenced
this pull request
Oct 7, 2025
jeek
pushed a commit
to jeek/Meshtastic-Exploiteers-Hacker-Pager
that referenced
this pull request
Jun 30, 2026
…shtastic#8239) Co-authored-by: Austin <vidplace7@gmail.com>
jeek
pushed a commit
to jeek/Meshtastic-Exploiteers-Hacker-Pager
that referenced
this pull request
Jun 30, 2026
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.
generate_ci_matrix.pygenerate_ci_matrix.pychanges.setupmatrix. (They've got their own workflows)Tested within my fork 👍