From 9c54b3183f63d7ef9c661b3218c71590d84638f9 Mon Sep 17 00:00:00 2001 From: Sarvesh Bodakhe Date: Mon, 30 Sep 2024 16:09:09 +0530 Subject: [PATCH] ci: Add md5 checksum validation for WiFi public header files for new chips Add MD5 checksum validation for public header files of the following new chips: esp32c5 and esp32_host. --- .gitlab/ci/pre_check.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab/ci/pre_check.yml b/.gitlab/ci/pre_check.yml index a75188c070..3f5599dd63 100644 --- a/.gitlab/ci/pre_check.yml +++ b/.gitlab/ci/pre_check.yml @@ -44,6 +44,8 @@ check_blobs: - IDF_TARGET=esp32c2 $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=esp32c6 $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh + - IDF_TARGET=esp32c5 $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh + - IDF_TARGET=esp32_host $IDF_PATH/components/esp_wifi/test_md5/test_md5.sh # Check if Coexistence library header files match between IDF and the version used when compiling the libraries - IDF_TARGET=esp32 $IDF_PATH/components/esp_coex/test_md5/test_md5.sh - IDF_TARGET=esp32s2 $IDF_PATH/components/esp_coex/test_md5/test_md5.sh