Skip to content

Commit 00e0fe2

Browse files
committed
clears cached deps
1 parent 8fc2da0 commit 00e0fe2

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
id: cache-deps
2727
uses: actions/cache@v4
2828
with:
29-
path: lib/
30-
key: ${{ runner.os }}-deps
29+
path: lib/esp-idf
30+
key: ${{ runner.os }}-v1-deps
3131

3232
- name: Get Build Deps
3333
if: steps.cache-deps.outputs.cache-hit != 'true'

.github/workflows/unix.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
id: cache-deps
3030
uses: actions/cache@v4
3131
with:
32-
path: lib/
33-
key: ${{ runner.os }}-deps
32+
path: lib/esp-idf
33+
key: ${{ runner.os }}-v1-deps
3434

3535
- name: Get Build Deps
3636
if: steps.cache-deps.outputs.cache-hit != 'true'
@@ -60,18 +60,17 @@ jobs:
6060
- name: Build Raspberry Pi PICO port
6161
run: python3 make.py rp2 submodules clean mpy_cross BOARD=RPI_PICO DISPLAY=rgb_display INDEV=gt911
6262

63-
6463
- name: Get build datetime
6564
id: datetime
6665
uses: Kaven-Universe/github-action-current-date-time@v1
6766
with:
6867
format: "YYYY_MM_DD HH_mm_ss_SSS"
6968

69+
- name: Build Unix port
70+
run: python3 make.py unix submodules clean mpy_cross DISPLAY=sdl_display INDEV=sdl_pointer
71+
7072
- uses: actions/upload-artifact@v4
7173
with:
7274
name: lvgl_micropy_unix-${{ steps.datetime.outputs.month }}.${{ steps.datetime.outputs.day }}.${{ steps.datetime.outputs.year }}-${{ steps.datetime.outputs.hours }}_${{ steps.datetime.outputs.minutes }}_${{ steps.datetime.outputs.seconds }}
7375
path: build/lvgl_micropy_unix
7476
if-no-files-found: ignore
75-
76-
- name: Build Unix port
77-
run: python3 make.py unix submodules clean mpy_cross DISPLAY=sdl_display INDEV=sdl_pointer

0 commit comments

Comments
 (0)