feat: build module selection

This commit is contained in:
Ben Allfree
2025-11-23 09:37:10 -08:00
parent dfea7a358d
commit 6ddf13f2e8
7 changed files with 302 additions and 65 deletions

View File

@@ -99,11 +99,9 @@ jobs:
echo "Building for target: ${{ inputs.target }}"
echo "Flags: ${{ inputs.flags }}"
# Inject flags into platformio.ini or environment if needed
# For now, we rely on PIO's ability to take env vars or just run the target
# Real implementation might need more complex flag handling
# Example: export PLATFORMIO_BUILD_FLAGS="${{ inputs.flags }}"
# Inject flags into platformio.ini or environment
export PLATFORMIO_BUILD_FLAGS="${{ inputs.flags }}"
echo "PLATFORMIO_BUILD_FLAGS set to: $PLATFORMIO_BUILD_FLAGS"
pio run -e ${{ inputs.target }}