From 74619b04e188cc3336ea965e9ff409767dbd6276 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Mon, 5 Sep 2022 10:30:04 +0800 Subject: [PATCH] ci: add esp32c6 target --- tools/ci/check_build_test_rules.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ci/check_build_test_rules.py b/tools/ci/check_build_test_rules.py index 2a9c242aa7..54e7e635c0 100755 --- a/tools/ci/check_build_test_rules.py +++ b/tools/ci/check_build_test_rules.py @@ -30,6 +30,7 @@ USUAL_TO_FORMAL = { 'esp32c3': 'ESP32-C3', 'esp32h2': 'ESP32-H2', 'esp32c2': 'ESP32-C2', + 'esp32c6': 'ESP32-C6', 'linux': 'Linux', } @@ -40,6 +41,7 @@ FORMAL_TO_USUAL = { 'ESP32-C3': 'esp32c3', 'ESP32-H2': 'esp32h2', 'ESP32-C2': 'esp32c2', + 'ESP32-C6': 'esp32c6', 'Linux': 'linux', }