Conversation
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.
Motivation
TFUNIPAYLOAD01workflow to remove unexplained divergences inbuild_fw.yml.fw/tree so firmware targets live next to their projects and the workflow can readfw/build_matrix.yamldirectly.platformio.inientries at the shared TFUNIPAYLOAD01 configuration.Description
.github/workflows/build_fw.ymlwith the exact content provided (job renames, trigger filters, matrix loading and commit logic preserved) and added aload-matrixjob that readsfw/build_matrix.yaml.fw/build_matrix.yaml(YAML list of AIRDOS03 targets) and removed the previous matrix file from.github/workflows/by moving it underfw/.platformio.inientries forfw/AIRDOS03_MAVLinkandfw/AIRDOS03_USTDFFthat point to the canonical../../hw/modules/TFUNIPAYLOAD01/fw/platformio.ini, moved.inofiles intosrc/main.cpp, added#include <Arduino.h>where appropriate, and updatedgithash.hhandling and output artifact paths in the workflow.fw/README.mdto document the PlatformIO project layout and local build/flash commands, and added afw/boardssymlink to the canonical boards folder.Testing
git diff --checkto ensure no whitespace or index errors and it passed.ruby -e 'require "yaml"; YAML.load_file(".github/workflows/build_fw.yml")'to validate syntax and it passed.fw/build_matrix.yamlwithruby -e 'require "yaml"; d=YAML.load_file("fw/build_matrix.yaml")'to confirm the matrix loads and it passed.git status --shortand committed the changes; the commit was created successfully and the PR was opened via themake_prhelper.Codex Task