Skip to content

Commit b30d7ff

Browse files
authored
Merge pull request #604 from espressif/actions-update
Update build-examples-gh-pages-on-push.yml
2 parents 5bd2a04 + f218e2b commit b30d7ff

File tree

96 files changed

+433
-518
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+433
-518
lines changed

.github/workflows/build-examples-gh-pages-on-push.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,31 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
idf_ver: ["v5.3"]
13+
idf_ver: ["v5.4"]
1414
runs-on: ubuntu-latest
1515
container: espressif/idf:${{ matrix.idf_ver }}
1616
steps:
1717
- name: Checkout repo
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
submodules: 'recursive'
2121

2222
- name: Upgrade component manager
2323
shell: bash
2424
run: |
2525
. ${IDF_PATH}/export.sh
26-
pip install idf-component-manager==1.* --upgrade
26+
pip install idf-component-manager==2.* --upgrade
2727
2828
- name: Action for building binaries and config.toml
29-
uses: espressif/[email protected]
29+
env:
30+
IDF_EXTRA_ACTIONS_PATH: "${{ github.workspace }}/examples"
31+
uses: espressif/[email protected]
3032
with:
3133
idf_version: ${{ matrix.idf_ver }}
34+
config_file: examples/.idf_build_apps.toml
3235

3336
- name: Upload Artifact
34-
uses: actions/upload-artifact@v3
37+
uses: actions/upload-artifact@v4
3538
with:
3639
name: built_files
3740
path: binaries/
@@ -50,16 +53,16 @@ jobs:
5053
runs-on: ubuntu-latest
5154
steps:
5255
- name: Download built files
53-
uses: actions/download-artifact@v3
56+
uses: actions/download-artifact@v4
5457
with:
5558
name: built_files
5659
path: binaries/
5760

5861
- name: Upload built files to gh pages
59-
uses: actions/upload-pages-artifact@v2
62+
uses: actions/upload-pages-artifact@v3
6063
with:
6164
path: binaries/
6265

6366
- name: Deploy to GitHub Pages
6467
id: deployment
65-
uses: actions/deploy-pages@v2
68+
uses: actions/deploy-pages@v4

.ignore_build_warnings.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
DeprecationWarning: pkg_resources is deprecated as an API
2+
warning: unknown kconfig symbol 'TOUCH_SUPPRESS_DEPRECATE_WARN' assigned to*
3+
warning: ignoring attribute 'section .+' because it conflicts with previous 'section .+

SquareLine/boards/v8/espwroverkit/sdkconfig.defaults

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Espressif IoT Development Framework (ESP-IDF) Project Minimal Configuration
33
#
44
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
5-
CONFIG_ESP_DEFAULT_CPU_FREQ_240=y
5+
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
66
CONFIG_LV_COLOR_16_SWAP=y
77
CONFIG_LV_MEM_CUSTOM=y
88
CONFIG_LV_MEMCPY_MEMSET_STD=y

SquareLine/boards/v9/espwroverkit/sdkconfig.defaults

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Espressif IoT Development Framework (ESP-IDF) Project Minimal Configuration
33
#
44
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
5-
CONFIG_ESP_DEFAULT_CPU_FREQ_240=y
5+
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
66
CONFIG_LV_COLOR_16_SWAP=y
77
CONFIG_LV_MEM_CUSTOM=y
88
CONFIG_LV_MEMCPY_MEMSET_STD=y

bsp/esp-box-3/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ idf_component_register(
33
INCLUDE_DIRS "include"
44
PRIV_INCLUDE_DIRS "priv_include"
55
REQUIRES driver spiffs fatfs
6-
PRIV_REQUIRES esp_lcd
6+
PRIV_REQUIRES esp_lcd esp_psram
77
)

bsp/esp32_azure_iot_kit/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ idf_component_register(
33
INCLUDE_DIRS "include"
44
PRIV_INCLUDE_DIRS "priv_include"
55
REQUIRES driver esp_lcd fatfs
6-
PRIV_REQUIRES spiffs
6+
PRIV_REQUIRES spiffs esp_psram
77
)

bsp/esp32_c3_lcdkit/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ idf_component_register(
44
PRIV_INCLUDE_DIRS "priv_include"
55
PRIV_REQUIRES
66
"esp_lcd"
7+
"esp_psram"
78
REQUIRES
89
"driver"
910
"spiffs"
10-
)
11+
)

bsp/esp32_lyrat/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ idf_component_register(
99
SRCS "esp32_lyrat.c" ${SRC_VER}
1010
INCLUDE_DIRS "include"
1111
PRIV_INCLUDE_DIRS "priv_include"
12-
REQUIRES driver spiffs fatfs
12+
PRIV_REQUIRES esp_psram
13+
REQUIRES driver spiffs fatfs
1314
)

bsp/esp32_p4_function_ev_board/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ idf_component_register(
44
INCLUDE_DIRS "include"
55
PRIV_INCLUDE_DIRS "priv_include"
66
REQUIRES driver vfs fatfs
7-
PRIV_REQUIRES esp_lcd usb spiffs
7+
PRIV_REQUIRES esp_lcd usb spiffs esp_psram
88
)

bsp/esp32_s3_eye/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ idf_component_register(
33
INCLUDE_DIRS "include"
44
PRIV_INCLUDE_DIRS "priv_include"
55
REQUIRES esp_driver_gpio esp_driver_sdmmc spiffs esp_driver_i2c fatfs
6-
PRIV_REQUIRES esp_lcd esp_driver_ledc esp_driver_spi
6+
PRIV_REQUIRES esp_lcd esp_driver_ledc esp_driver_spi esp_psram
77
)

0 commit comments

Comments
 (0)