summaryrefslogtreecommitdiff
path: root/.github/workflows/ci_set_matrix.py
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2024-08-21 19:09:37 +0700
committerGitHub <[email protected]>2024-08-21 19:09:37 +0700
commit61187008285d70d700e30e5f11636240ae4845d0 (patch)
tree9fdb0ec3e932f6fb53b927697d2b3b11a7d60dba /.github/workflows/ci_set_matrix.py
parent5f519819bad94b1d19364b485c314b412199fba0 (diff)
update circle ci to build make (#2769)
* update build.py script to work with circleci * build make with circle ci * build vm for esp only * nrf imxrt with large resource * nrf imxrt with large resource * remove 2 of nrf boards
Diffstat (limited to '.github/workflows/ci_set_matrix.py')
-rw-r--r--.github/workflows/ci_set_matrix.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/ci_set_matrix.py b/.github/workflows/ci_set_matrix.py
index c9698c934..4da26bfea 100644
--- a/.github/workflows/ci_set_matrix.py
+++ b/.github/workflows/ci_set_matrix.py
@@ -6,6 +6,7 @@ toolchain_list = [
"arm-clang",
"arm-iar",
"arm-gcc",
+ "esp-idf",
"msp430-gcc",
"riscv-gcc",
"rx-gcc"
@@ -31,15 +32,19 @@ family_list = {
"ra": ["arm-gcc"],
"rp2040": ["arm-gcc"],
"rx": ["rx-gcc"],
- "samd11 samd21 saml2x": ["arm-gcc", "arm-clang"],
+ "samd11 saml2x": ["arm-gcc", "arm-clang"],
+ "samd21": ["arm-gcc", "arm-clang"],
"samd5x_e5x samg": ["arm-gcc", "arm-clang"],
"stm32f0 stm32f1 stm32f2 stm32f3": ["arm-gcc", "arm-clang", "arm-iar"],
"stm32f4": ["arm-gcc", "arm-clang", "arm-iar"],
"stm32f7": ["arm-gcc", "arm-clang", "arm-iar"],
"stm32g0 stm32g4 stm32h5": ["arm-gcc", "arm-clang", "arm-iar"],
"stm32h7": ["arm-gcc", "arm-clang", "arm-iar"],
- "stm32l0 stm32l4 stm32u5 stm32wb": ["arm-gcc", "arm-clang", "arm-iar"],
+ "stm32l0 stm32l4": ["arm-gcc", "arm-clang", "arm-iar"],
+ "stm32u5 stm32wb": ["arm-gcc", "arm-clang", "arm-iar"],
"xmc4000": ["arm-gcc"],
+ "-bespressif_kaluga_1": ["esp-idf"],
+ "-bespressif_s3_devkitm": ["esp-idf"],
}