mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-21 17:56:31 +00:00
add LVGL solidify (#18616)
This commit is contained in:
parent
4cd1136f4c
commit
267fe9d951
13
.github/workflows/Tasmota_build_devel.yml
vendored
13
.github/workflows/Tasmota_build_devel.yml
vendored
@ -34,6 +34,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd lib/libesp32/berry_matter
|
cd lib/libesp32/berry_matter
|
||||||
../berry/berry -s -g solidify_all.be
|
../berry/berry -s -g solidify_all.be
|
||||||
|
- name: LVGL Berry Code
|
||||||
|
run: |
|
||||||
|
cd lib/libesp32_lvgl/lv_binding_berry
|
||||||
|
../../libesp32/berry/berry -s -g solidify_all.be
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: berry_matter
|
name: berry_matter
|
||||||
@ -42,6 +46,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: berry_tasmota
|
name: berry_tasmota
|
||||||
path: ./lib/libesp32/berry_tasmota/src/solidify
|
path: ./lib/libesp32/berry_tasmota/src/solidify
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: lvgl_tasmota
|
||||||
|
path: ./lib/libesp32_lvgl/lv_binding_berry/src/solidify
|
||||||
|
|
||||||
push_solidified:
|
push_solidified:
|
||||||
needs: be_solidify
|
needs: be_solidify
|
||||||
@ -57,6 +65,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
rm ./lib/libesp32/berry_matter/src/solidify/*
|
rm ./lib/libesp32/berry_matter/src/solidify/*
|
||||||
rm ./lib/libesp32/berry_tasmota/src/solidify/*
|
rm ./lib/libesp32/berry_tasmota/src/solidify/*
|
||||||
|
rm ./lib/libesp32_lvgl/lv_binding_berry/src/solidify/*
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: berry_matter
|
name: berry_matter
|
||||||
@ -65,6 +74,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: berry_tasmota
|
name: berry_tasmota
|
||||||
path: ./lib/libesp32/berry_tasmota/src/solidify
|
path: ./lib/libesp32/berry_tasmota/src/solidify
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: lvgl_tasmota
|
||||||
|
path: ./lib/libesp32_lvgl/lv_binding_berry/src/solidify
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
with:
|
with:
|
||||||
commit_message: Solidified Code updated
|
commit_message: Solidified Code updated
|
||||||
|
13
.github/workflows/Tasmota_build_master.yml
vendored
13
.github/workflows/Tasmota_build_master.yml
vendored
@ -33,6 +33,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd lib/libesp32/berry_matter
|
cd lib/libesp32/berry_matter
|
||||||
../berry/berry -s -g solidify_all.be
|
../berry/berry -s -g solidify_all.be
|
||||||
|
- name: LVGL Berry Code
|
||||||
|
run: |
|
||||||
|
cd lib/libesp32_lvgl/lv_binding_berry
|
||||||
|
../../libesp32/berry/berry -s -g solidify_all.be
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: berry_matter
|
name: berry_matter
|
||||||
@ -41,6 +45,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: berry_tasmota
|
name: berry_tasmota
|
||||||
path: ./lib/libesp32/berry_tasmota/src/solidify
|
path: ./lib/libesp32/berry_tasmota/src/solidify
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: lvgl_tasmota
|
||||||
|
path: ./lib/libesp32_lvgl/lv_binding_berry/src/solidify
|
||||||
|
|
||||||
push_solidified:
|
push_solidified:
|
||||||
needs: be_solidify
|
needs: be_solidify
|
||||||
@ -56,6 +64,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
rm ./lib/libesp32/berry_matter/src/solidify/*
|
rm ./lib/libesp32/berry_matter/src/solidify/*
|
||||||
rm ./lib/libesp32/berry_tasmota/src/solidify/*
|
rm ./lib/libesp32/berry_tasmota/src/solidify/*
|
||||||
|
rm ./lib/libesp32_lvgl/lv_binding_berry/src/solidify/*
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: berry_matter
|
name: berry_matter
|
||||||
@ -64,6 +73,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: berry_tasmota
|
name: berry_tasmota
|
||||||
path: ./lib/libesp32/berry_tasmota/src/solidify
|
path: ./lib/libesp32/berry_tasmota/src/solidify
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: lvgl_tasmota
|
||||||
|
path: ./lib/libesp32_lvgl/lv_binding_berry/src/solidify
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
with:
|
with:
|
||||||
commit_message: Solidified Code updated
|
commit_message: Solidified Code updated
|
||||||
|
Loading…
x
Reference in New Issue
Block a user