Skip to content

Commit

Permalink
Fix JOLTJS DFU file creation, and add to cutting edge builds
Browse files Browse the repository at this point in the history
  • Loading branch information
gfwilliams committed May 23, 2024
1 parent 78fb750 commit 52352ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
strategy:
# devices to build for
matrix:
board: [PUCKJS, PIXLJS, MDBT42Q, BANGLEJS, BANGLEJS2, PUCKJS_MINIMAL]
board: [PUCKJS, PIXLJS, JOLTJS, MDBT42Q, BANGLEJS, BANGLEJS2, PUCKJS_MINIMAL]
# try and build for all devices even if one fails
fail-fast: false
steps:
Expand Down
4 changes: 4 additions & 0 deletions scripts/create_zip_board.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ if [ "$BOARDNAME" == "PIXLJS" ]; then
ESP_BINARY_NAME=`basename $ESP_BINARY_NAME .hex`.zip
EXTRADEFS+=DFU_UPDATE_BUILD=1
fi
if [ "$BOARDNAME" == "JOLTJS" ]; then
ESP_BINARY_NAME=`basename $ESP_BINARY_NAME .hex`.zip
EXTRADEFS+=DFU_UPDATE_BUILD=1
fi
if [ "$BOARDNAME" == "BANGLEJS" ]; then
ESP_BINARY_NAME=`basename $ESP_BINARY_NAME .hex`.zip
EXTRADEFS+=DFU_UPDATE_BUILD=1
Expand Down

0 comments on commit 52352ef

Please sign in to comment.