Skip to content

Commit

Permalink
ci: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
felixerdy committed May 31, 2024
1 parent 0428939 commit c214b83
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/compile-sketches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ jobs:
- name: Create OTA update file
if: startsWith(matrix.board.fqbn, 'esp32')
run: |
ls -lah .
git clone https://github.com/arduino-libraries/ArduinoIoTCloud.git
pip install crccheck
Expand All @@ -94,8 +92,7 @@ jobs:
# replace ./ with nothing
clean_sketch_path=${sketch_path//.\//}
# DEBUG sketch_path
ls -lah $sketch_path
python3 lzss.py --encode $sketch_path/$sketch_path.ino.bin ${{ runner.temp }}/$clean_sketch_path.ino.lzss
python3 lzss.py --encode ${{ github.workspace }}/$sketch_path/$sketch_path.ino.bin ${{ runner.temp }}/$clean_sketch_path.ino.lzss
echo "LZSS file created: ${{ runner.temp }}/$clean_sketch_path.ino.lzss"
ls -lah ${{ runner.temp }}
python3 bin2ota.py ESP ${{ runner.temp }}/$clean_sketch_path.ino.lzss ${{ runner.temp }}/$clean_sketch_path.ino.ota
Expand Down

0 comments on commit c214b83

Please sign in to comment.