Skip to content

Commit

Permalink
Fix example env names
Browse files Browse the repository at this point in the history
Signed-off-by: Sara Damiano <[email protected]>
  • Loading branch information
SRGDamia1 committed Aug 15, 2024
1 parent 1144626 commit 477192b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ jobs:
if: ${{ ! contains(github.event.head_commit.message, 'ci skip') }}
uses: EnviroDIY/workflows/.github/workflows/build_examples.yaml@main
with:
boards_to_build: 'mayfly,megaatmega2560,zeroUSB,adafruit_feather_m0'
boards_to_build: 'mayfly,mega,zero,feather_m0'
secrets: inherit
3 changes: 2 additions & 1 deletion continuous_integration/generate_job_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
workspace_path = os.path.abspath(os.path.realpath(workspace_dir))
print(f"Workspace Path: {workspace_path}")

# %%
# The examples directory
examples_dir = "./examples/"
examples_path = os.path.join(workspace_dir, examples_dir)
Expand Down Expand Up @@ -652,7 +653,7 @@ def extend_pio_config(added_envs):

# %%
# Tack on a few more extra build configurations for the software serial libraries
for pio_env in ["Mayfly"]:
for pio_env in ["mayfly"]:
arduino_serial_commands = [
start_job_commands,
# 'echo "## [Extra Serials on {} with the Arduino CLI](https://github.com/EnviroDIY/ModularSensors/runs/$ACTION_RUN_ID?check_suite_focus=true#step:10:1)" >> $GITHUB_STEP_SUMMARY'.format(
Expand Down

0 comments on commit 477192b

Please sign in to comment.