From c214b838b8addd19fa20ce6938061132b3aab040 Mon Sep 17 00:00:00 2001 From: Felix Erdmann Date: Fri, 31 May 2024 16:36:31 +0200 Subject: [PATCH] ci: debug --- .github/workflows/compile-sketches.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/compile-sketches.yml b/.github/workflows/compile-sketches.yml index 7d03dc1..deb44c7 100644 --- a/.github/workflows/compile-sketches.yml +++ b/.github/workflows/compile-sketches.yml @@ -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 @@ -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