Skip to content

Commit

Permalink
Fix pio commands in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbez1 committed Oct 6, 2024
1 parent 7481d21 commit 419c311
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,35 +39,35 @@ jobs:
# # Run regardless of other build step failures, as long as setup steps completed
# if: always() && steps.pio_install.outcome == 'success'
# run: |
# pio run -d ./firmware \
# pio run \
# -e uno-shift-register \

# - name: Build Firmware (uno-direct)
# # Run regardless of other build step failures, as long as setup steps completed
# if: always() && steps.pio_install.outcome == 'success'
# run: |
# pio run -d ./firmware \
# pio run \
# -e uno-direct \

- name: Build Firmware (esp32)
# Run regardless of other build step failures, as long as setup steps completed
if: always() && steps.pio_install.outcome == 'success'
run: |
pio run -d ./firmware \
pio run \
-e esp32 \
- name: Build Firmware (chainlink)
# Run regardless of other build step failures, as long as setup steps completed
if: always() && steps.pio_install.outcome == 'success'
run: |
pio run -d ./firmware \
pio run \
-e chainlink
- name: Build Firmware (chainlinkBase)
# Run regardless of other build step failures, as long as setup steps completed
if: always() && steps.pio_install.outcome == 'success'
run: |
pio run -d ./firmware \
pio run \
-e chainlinkBase
# Temporarily disabled due to proto issue
Expand All @@ -76,5 +76,5 @@ jobs:
# if: always() && steps.pio_install.outcome == 'success'
# run: |
# cp firmware/esp32/tester/secrets.h.example firmware/esp32/tester/secrets.h &&
# pio run -d ./firmware \
# pio run \
# -e chainlinkDriverTester

0 comments on commit 419c311

Please sign in to comment.