Skip to content

Commit c3e8b48

Browse files
committed
ci(build): Update idf-build-apps to 2.10.1
1 parent 61a8dd5 commit c3e8b48

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/build-run-applications.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
build:
3232
strategy:
3333
matrix:
34+
component_manager_ver: ["2.2.*"]
35+
idf_build_apps_ver: ["2.10.1"]
3436
include:
3537
- idf_ver: "latest"
3638
parallel_count: 5
@@ -98,7 +100,7 @@ jobs:
98100
ALL_CHANGED_FILES: ${{ (github.event_name != 'pull_request') && format(' ') || format('--modified-files=') }}${{ (github.event_name != 'pull_request') && format(' ') || steps.changed-files.outputs.all_modified_files }}
99101
run: |
100102
. ${IDF_PATH}/export.sh
101-
pip install idf-component-manager==2.2.* ruamel.yaml idf-build-apps==2.4.3 --upgrade
103+
pip install idf-component-manager==${{ matrix.component_manager_ver }} ruamel.yaml idf-build-apps==${{ matrix.idf_build_apps_ver }} --upgrade
102104
103105
echo "Files changed: "${{env.ALL_CHANGED_FILES}}
104106
idf-build-apps find ${{env.ALL_CHANGED_FILES}}

.github/workflows/gh-pages.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
build-launchpad:
1616
strategy:
1717
matrix:
18-
idf_ver: ["v5.4"]
18+
idf_ver: ["release-v5.4"]
19+
component_manager_ver: ["2.2.*"]
1920
runs-on: ubuntu-latest
2021
container: espressif/idf:${{ matrix.idf_ver }}
2122
steps:
@@ -28,7 +29,7 @@ jobs:
2829
shell: bash
2930
run: |
3031
. ${IDF_PATH}/export.sh
31-
pip install idf-component-manager==2.* --upgrade
32+
pip install idf-component-manager==${{ matrix.component_manager_ver }} --upgrade
3233
pip install -U "esp-idf-kconfig<3"
3334
3435
- name: Action for building binaries and config.toml

.ignore_build_warnings.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
DeprecationWarning: pkg_resources is deprecated as an API
22
warning: unknown kconfig symbol 'TOUCH_SUPPRESS_DEPRECATE_WARN' assigned to*
33
warning: ignoring attribute 'section .+' because it conflicts with previous 'section .+
4+
warning: #warning "This set of Touch APIs has been deprecated*
5+
Warning: The smallest app partition is nearly full*

examples/display/sdkconfig.bsp.esp32_p4_eye

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#
44
CONFIG_IDF_TARGET="esp32p4"
55
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
6-
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
76
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n
87

98

examples/display_camera_csi/sdkconfig.bsp.esp32_p4_eye

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#
44
CONFIG_IDF_TARGET="esp32p4"
55
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
6-
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
76
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n
87

98

examples/display_camera_csi/sdkconfig.defaults

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#
44
CONFIG_IDF_TARGET="esp32p4"
55
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
6-
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
76
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n
87

98

examples/display_lvgl_demos/sdkconfig.bsp.esp32_p4_eye

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,11 @@
33
#
44
CONFIG_IDF_TARGET="esp32p4"
55
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
6-
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
76
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n
87
CONFIG_PARTITION_TABLE_CUSTOM=y
98
CONFIG_COMPILER_OPTIMIZATION_PERF=y
109
CONFIG_SPIRAM_FETCH_INSTRUCTIONS=y
1110
CONFIG_FREERTOS_HZ=1000
12-
CONFIG_BSP_DISPLAY_LVGL_AVOID_TEAR=y
13-
CONFIG_BSP_DISPLAY_LVGL_DIRECT_MODE=y
1411
CONFIG_LV_FONT_MONTSERRAT_12=y
1512
CONFIG_LV_FONT_MONTSERRAT_16=y
1613
CONFIG_LV_FONT_MONTSERRAT_24=y
@@ -24,7 +21,9 @@ CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y
2421

2522
# SPIRAM for ESP32-P4
2623
CONFIG_SPIRAM=y
24+
CONFIG_SPIRAM_MODE_HEX=y
2725
CONFIG_SPIRAM_SPEED_200M=y
26+
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
2827

2928

3029
## LVGL9 ##

examples/display_rotation/sdkconfig.bsp.esp32_p4_eye

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#
44
CONFIG_IDF_TARGET="esp32p4"
55
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
6-
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
76
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n
87

98

0 commit comments

Comments
 (0)