ci: Enable esp32c6 example, test_apps, and unit tests CI build stage

This commit is contained in:
Song Ruo Jing
2022-10-27 18:55:07 +08:00
parent 0b47e173e6
commit 2557e24a28
157 changed files with 822 additions and 293 deletions

View File

@@ -27,6 +27,8 @@ constexpr std::array<uint32_t, 4> INVALID_GPIOS = {22, 23, 24, 25};
constexpr std::array<uint32_t, 0> INVALID_GPIOS = {};
#elif CONFIG_IDF_TARGET_ESP32C2
constexpr std::array<uint32_t, 0> INVALID_GPIOS = {};
#elif CONFIG_IDF_TARGET_ESP32C6
constexpr std::array<uint32_t, 0> INVALID_GPIOS = {};
#else
#error "No GPIOs defined for the current target"
#endif