From 463e98e75eb2220a8649504087cd8593bd6a935c Mon Sep 17 00:00:00 2001 From: Sarvesh Bodakhe Date: Fri, 20 Dec 2024 10:29:47 +0530 Subject: [PATCH] fix(ci): Enable public headers md5 checksum check for esp32c2 --- .gitlab/ci/pre_check.yml | 1 + components/esp_wifi/test_md5/test_md5.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab/ci/pre_check.yml b/.gitlab/ci/pre_check.yml index 4cc2da6f52..9f52931fac 100644 --- a/.gitlab/ci/pre_check.yml +++ b/.gitlab/ci/pre_check.yml @@ -70,6 +70,7 @@ check_blobs: - IDF_TARGET=esp32s2 $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh - IDF_TARGET=esp32s3 $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh - IDF_TARGET=esp32c3 $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh + - IDF_TARGET=esp32c2 $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh # Check if Wi-Fi, PHY, BT blobs contain references to specific symbols - bash $IDF_PATH/tools/ci/check_blobs.sh diff --git a/components/esp_wifi/test_md5/test_md5.sh b/components/esp_wifi/test_md5/test_md5.sh index 2c7321718b..ebac241fde 100755 --- a/components/esp_wifi/test_md5/test_md5.sh +++ b/components/esp_wifi/test_md5/test_md5.sh @@ -22,7 +22,7 @@ case $IDF_TARGET in esp32s3) PREFIX=xtensa-esp32s3-elf- ;; - esp32c3) + esp32c3|esp32c2) PREFIX=riscv32-esp-elf- ;; *)