summaryrefslogtreecommitdiff
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
parentc8291168301b597f586d15510c780a9bdb8d0e69 (diff)
wrap up s3 hil test
-rw-r--r--.github/workflows/build_esp.yml6
-rw-r--r--.github/workflows/cmake_arm.yml36
-rw-r--r--test/hil/hil_test.py4
3 files changed, 22 insertions, 24 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
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py
index 1b1349fb8..fe31a54e8 100644
--- a/test/hil/hil_test.py
+++ b/test/hil/hil_test.py
@@ -304,9 +304,11 @@ def main(config_file, board):
test_list.remove(skip)
for test in test_list:
- # cmake, make
fw_list = [
+ # cmake: esp32 use .bin file
f'cmake-build/cmake-build-{item["name"]}/device/{test}/{test}.elf',
+ f'cmake-build/cmake-build-{item["name"]}/device/{test}/{test}.bin',
+ # make
f'examples/device/{test}/_build/{item["name"]}/{test}.elf'
]