Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: exclude -
Browse files Browse the repository at this point in the history
felixerdy committed May 31, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent ea5e184 commit 779bc0c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/compile-sketches.yml
Original file line number Diff line number Diff line change
@@ -87,9 +87,11 @@ jobs:
# Convert the list of sketch paths into an array
sketch_paths=(${{ matrix.board.sketch-paths }})
for sketch_path in "${sketch_paths[@]}"; do
echo "Processing sketch path: $sketch_path"
python3 lzss.py --encode $sketch_path/$sketch_path.ino.${{ matrix.board.artifact-name-suffix }}.bin $sketch_path/$sketch_path.ino.${{ matrix.board.artifact-name-suffix }}.lzss
python3 bin2ota.py ESP $sketch_path/$sketch_path.ino.${{ matrix.board.artifact-name-suffix }}.lzss $sketch_path/$sketch_path.ino.${{ matrix.board.artifact-name-suffix }}.ota
if [[ "$sketch_path" != "-" ]]; then
echo "Processing sketch path: $sketch_path"
python3 lzss.py --encode $sketch_path/$sketch_path.ino.${{ matrix.board.artifact-name-suffix }}.bin $sketch_path/$sketch_path.ino.${{ matrix.board.artifact-name-suffix }}.lzss
python3 bin2ota.py ESP $sketch_path/$sketch_path.ino.${{ matrix.board.artifact-name-suffix }}.lzss $sketch_path/$sketch_path.ino.${{ matrix.board.artifact-name-suffix }}.ota
fi
done
- name: Export binaries as artifacts

0 comments on commit 779bc0c

Please sign in to comment.