Skip to content

Commit

Permalink
Update build steps for nRF52832 and add nRF51822 support
Browse files Browse the repository at this point in the history
  • Loading branch information
virtual-maker committed Jan 2, 2025
1 parent e41bc88 commit b51ab79
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -386,19 +386,36 @@ jobs:
#arduino-cli lib install "Ethernet"
#arduino-cli lib install "SD"
# Arduino nRF52832
- name: Compile nRF52832 (tests)
# arduino-nRF5 Generic_nRF52832
- name: Compile Generic_nRF52832 (tests)
if: false # This will deactivate the step
run: |
FQBN="sandeepmistry:nRF5:Generic_nRF52832:softdevice=none,lfclk=lfxo"
SKETCHES="./tests"
EXCLUDES="./.github/workflows/.ci_scripts/Arduino-nRF5-excludes"
./.github/workflows/.ci_scripts/compile-arduino-sketches.sh $FQBN $SKETCHES $EXCLUDES
- name: Compile nRF52832 (examples)
#if: false # This will deactivate the step
- name: Compile Generic_nRF52832 (examples)
if: false # This will deactivate the step
run: |
FQBN="sandeepmistry:nRF5:Generic_nRF52832:softdevice=none,lfclk=lfxo"
SKETCHES="./examples"
EXCLUDES="./.github/workflows/.ci_scripts/Arduino-nRF5-excludes"
./.github/workflows/.ci_scripts/compile-arduino-sketches.sh $FQBN $SKETCHES $EXCLUDES
# Arduino Generic_nRF51822
- name: Compile Generic_nRF51822 (tests)
#if: false # This will deactivate the step
run: |
FQBN="sandeepmistry:nRF5:Generic_nRF51822:softdevice=none,lfclk=lfxo"
SKETCHES="./tests"
EXCLUDES="./.github/workflows/.ci_scripts/Arduino-nRF5-excludes"
./.github/workflows/.ci_scripts/compile-arduino-sketches.sh $FQBN $SKETCHES $EXCLUDES
- name: Compile Generic_nRF51822 (examples)
#if: false # This will deactivate the step
run: |
FQBN="sandeepmistry:nRF5:Generic_nRF51822:softdevice=none,lfclk=lfxo"
SKETCHES="./examples"
EXCLUDES="./.github/workflows/.ci_scripts/Arduino-nRF5-excludes"
./.github/workflows/.ci_scripts/compile-arduino-sketches.sh $FQBN $SKETCHES $EXCLUDES

0 comments on commit b51ab79

Please sign in to comment.