Skip to content

Commit 823b514

Browse files
authored
Merge pull request #667 from espressif/ci/update-idf-build-apps
ci(build): Update idf-build-apps to 2.10.1
2 parents 61a8dd5 + 34073cc commit 823b514

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ concurrency:
2929

3030
jobs:
3131
build:
32+
env:
33+
component_manager_ver: "2.2.*"
34+
idf_build_apps_ver: "2.10.1"
3235
strategy:
3336
matrix:
3437
include:
@@ -98,7 +101,7 @@ jobs:
98101
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 }}
99102
run: |
100103
. ${IDF_PATH}/export.sh
101-
pip install idf-component-manager==2.2.* ruamel.yaml idf-build-apps==2.4.3 --upgrade
104+
pip install idf-component-manager==${{ env.component_manager_ver }} ruamel.yaml idf-build-apps==${{ env.idf_build_apps_ver }} --upgrade
102105
103106
echo "Files changed: "${{env.ALL_CHANGED_FILES}}
104107
idf-build-apps find ${{env.ALL_CHANGED_FILES}}

.github/workflows/gh-pages.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ on:
1313
jobs:
1414

1515
build-launchpad:
16+
env:
17+
component_manager_ver: "2.2.*"
1618
strategy:
1719
matrix:
18-
idf_ver: ["v5.4"]
20+
idf_ver: ["release-v5.4"]
1921
runs-on: ubuntu-latest
2022
container: espressif/idf:${{ matrix.idf_ver }}
2123
steps:
@@ -28,7 +30,7 @@ jobs:
2830
shell: bash
2931
run: |
3032
. ${IDF_PATH}/export.sh
31-
pip install idf-component-manager==2.* --upgrade
33+
pip install idf-component-manager==${{ env.component_manager_ver }} --upgrade
3234
pip install -U "esp-idf-kconfig<3"
3335
3436
- 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)