fix upload and caching

pull/271/head
Peter Buchegger 2023-02-19 12:43:07 +01:00
rodzic 34498200fb
commit eab5f3c2e6
1 zmienionych plików z 4 dodań i 6 usunięć

Wyświetl plik

@ -31,7 +31,7 @@ jobs:
- name: Build PlatformIO Project - name: Build PlatformIO Project
run: pio run run: pio run
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v3
with: with:
name: firmware name: firmware
path: .pio/build/lora_board/firmware.bin path: .pio/build/lora_board/firmware.bin
@ -73,7 +73,7 @@ jobs:
- name: Run cppcheck and create html - name: Run cppcheck and create html
run: docker run --rm -v ${PWD}:/src facthunder/cppcheck:latest /bin/bash -c "cppcheck --xml $CPPCHECK_ARGS 2> report.xml && cppcheck-htmlreport --file=report.xml --report-dir=output" run: docker run --rm -v ${PWD}:/src facthunder/cppcheck:latest /bin/bash -c "cppcheck --xml $CPPCHECK_ARGS 2> report.xml && cppcheck-htmlreport --file=report.xml --report-dir=output"
- name: Upload report - name: Upload report
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v3
with: with:
name: Cppcheck Report name: Cppcheck Report
path: output path: output
@ -88,14 +88,12 @@ jobs:
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: ~/.cache/pip path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} key: pip-cache
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO - name: Cache PlatformIO
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: ~/.platformio path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} key: pio-cache
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with: