Skip to content

Commit e74db36

Browse files
authored
Merge pull request #881 from david-cermak/fix/minor_ci_fixes
Fixup common CI issues with v6.0 idf-tools
2 parents e2d36b4 + f8d2ed2 commit e74db36

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

.github/workflows/esp_dns__build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
shell: bash
3434
working-directory: ${{matrix.test.path}}
3535
run: |
36+
if [[ "${{ matrix.idf_ver }}" == "release-v5.3" || "${{ matrix.idf_ver }}" == "release-v5.4" ]]; then
37+
export EXPECTED_WARNING="unknown kconfig symbol 'LWIP_USE_ESP_GETADDRINFO'"
38+
fi
3639
. ${IDF_PATH}/export.sh
3740
pip install idf-component-manager idf-build-apps --upgrade
3841
python ../../../ci/build_apps.py ./${{ matrix.test.app }} --target ${{ matrix.idf_target }} -vv --preserve-all --pytest-app

.github/workflows/tls_cxx__build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ jobs:
2525
- name: Build ${{ matrix.test.app }} with IDF-${{ matrix.idf_ver }}
2626
shell: bash
2727
run: |
28-
if [[ "${{ matrix.idf_ver }}" != "latest" ]]; then
29-
export EXPECTED_WARNING="unknown kconfig symbol 'MBEDTLS_SSL_COOKIE_C'"
30-
fi
3128
. ${IDF_PATH}/export.sh
3229
pip install idf-component-manager idf-build-apps --upgrade
3330
python ./ci/build_apps.py ./components/mbedtls_cxx/${{ matrix.test.path }} -vv --preserve-all
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
CONFIG_MBEDTLS_SSL_PROTO_DTLS=y
2-
CONFIG_MBEDTLS_SSL_COOKIE_C=y
32
CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=8192
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
CONFIG_IDF_TARGET="esp32"
22
CONFIG_MBEDTLS_SSL_PROTO_DTLS=y
3-
CONFIG_MBEDTLS_SSL_COOKIE_C=y
43
CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=8192

components/mdns/tests/test_afl_fuzz_host/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ CFLAGS=-g -Wno-unused-value -Wno-missing-declarations -Wno-pointer-bool-conversi
3434
-I$(COMPONENTS_DIR)/soc/src/esp32/include \
3535
-I$(COMPONENTS_DIR)/xtensa/include \
3636
-I$(COMPONENTS_DIR)/xtensa/esp32/include \
37+
-I$(COMPONENTS_DIR)/esp_hw_support/etm/include \
3738
-I$(COMPILER_ICLUDE_DIR)/include
3839

3940

components/mosquitto/examples/serverless_mqtt/esp_peer_setup/Remove-deprecated-API-for-get_stack_fr.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ index d248d59..1117926 100644
1616
TaskHandle_t cur_task = xTaskGetCurrentTaskHandle();
1717
vTaskGetSnapshot(cur_task, &snap_shot);
1818
- snap_shot.pxTopOfStack = pxTaskGetStackStart(cur_task);;
19-
+#if (ESP_IDF_VERSION > ESP_IDF_VERSION_VAL(5, 5, 0))
19+
+#if (ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(6, 0, 0))
2020
+ snap_shot.pxTopOfStack = xTaskGetStackStart(cur_task);
2121
+#else
2222
+ snap_shot.pxTopOfStack = pxTaskGetStackStart(cur_task);

0 commit comments

Comments
 (0)