Skip to content

Commit

Permalink
Add se05x and no-ble variants to k32w builds, make use of it in CI si…
Browse files Browse the repository at this point in the history
…nce otherwise we run out of flash
  • Loading branch information
andy31415 committed Oct 11, 2022
1 parent 3394a11 commit f0351e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/examples-k32w.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: |
scripts/run_in_build_env.sh "\
./scripts/build/build_examples.py \
--target k32w-light \
--target k32w-light-no-ble-se05x \
--target k32w-light-no-ota \
--target k32w-lock-low-power-nologs \
--target k32w-contact-low-power-nologs \
Expand Down
2 changes: 2 additions & 0 deletions scripts/build/build/targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,8 @@ def BuildK32WTarget():
TargetPart('contact', app=K32WApp.CONTACT, release=True),
])

target.AppendModifier(name="se05x", se05x=True)
target.AppendModifier(name="no-ble", disable_ble=True)
target.AppendModifier(name="no-ota", disable_ota=True)
target.AppendModifier(name="low-power", low_power=True).OnlyIfRe("-nologs")
target.AppendModifier(name="nologs", disable_logs=True)
Expand Down

0 comments on commit f0351e6

Please sign in to comment.