summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-12-11 14:52:21 +0700
committerhathach <[email protected]>2023-12-11 14:52:21 +0700
commite1142d4527aa811d89276abe37060503703011b8 (patch)
tree00a1178780bd198a0856d13f428c06ce44c9899c /.github/workflows
parentc8291168301b597f586d15510c780a9bdb8d0e69 (diff)
wrap up s3 hil test
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build_esp.yml6
-rw-r--r--.github/workflows/cmake_arm.yml36
2 files changed, 19 insertions, 23 deletions
diff --git a/.github/workflows/build_esp.yml b/.github/workflows/build_esp.yml
index c3fd53bf6..fded0e85d 100644
--- a/.github/workflows/build_esp.yml
+++ b/.github/workflows/build_esp.yml
@@ -30,10 +30,9 @@ jobs:
matrix:
board:
# ESP32-S2
-# - 'espressif_kaluga_1'
+ - 'espressif_kaluga_1'
# ESP32-S3
- 'espressif_s3_devkitc'
-
steps:
- name: Setup Python
uses: actions/setup-python@v4
@@ -49,9 +48,6 @@ jobs:
- name: Build
run: docker run --rm -v $PWD:/project -w /project espressif/idf:latest python3 tools/build_esp32.py ${{ matrix.board }}
- - name: test dir
- run: tree
-
- name: Upload Artifacts for Hardware Testing
if: matrix.board == 'espressif_s3_devkitc' && github.repository_owner == 'hathach'
uses: actions/upload-artifact@v3
diff --git a/.github/workflows/cmake_arm.yml b/.github/workflows/cmake_arm.yml
index 1ec90b10a..535244c47 100644
--- a/.github/workflows/cmake_arm.yml
+++ b/.github/workflows/cmake_arm.yml
@@ -33,25 +33,25 @@ jobs:
matrix:
family:
# Alphabetical order
-# - 'imxrt'
-# - 'kinetis_kl'
-# - 'lpc18 lpc40 lpc43'
-# - 'lpc54 lpc55'
-# - 'mcx'
-# - 'nrf'
-# - 'ra'
+ - 'imxrt'
+ - 'kinetis_kl'
+ - 'lpc18 lpc40 lpc43'
+ - 'lpc54 lpc55'
+ - 'mcx'
+ - 'nrf'
+ - 'ra'
- 'rp2040'
-# - 'samd21'
-# - 'samd51'
-# - 'stm32f0'
-# - 'stm32f1'
-# - 'stm32f4'
-# - 'stm32f7'
-# - 'stm32g0'
-# - 'stm32g4'
-# - 'stm32h7'
-# - 'stm32l4'
-# - 'stm32u5'
+ - 'samd21'
+ - 'samd51'
+ - 'stm32f0'
+ - 'stm32f1'
+ - 'stm32f4'
+ - 'stm32f7'
+ - 'stm32g0'
+ - 'stm32g4'
+ - 'stm32h7'
+ - 'stm32l4'
+ - 'stm32u5'
steps:
- name: Setup Python
uses: actions/setup-python@v4