summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-12-11 11:56:04 +0700
committerhathach <[email protected]>2023-12-11 11:56:04 +0700
commit0642a6d9e7ece8f12090e3d3cf63379284f90a36 (patch)
treec00f9927b10b9e127d311e7ecea4c04f634d3c51 /.github/workflows
parentfd55b96ca1856d692e4055eaeae467b8b848520c (diff)
more artifacts
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build_esp.yml10
-rw-r--r--.github/workflows/cmake_arm.yml47
2 files changed, 25 insertions, 32 deletions
diff --git a/.github/workflows/build_esp.yml b/.github/workflows/build_esp.yml
index e2bf5e0cb..56e649935 100644
--- a/.github/workflows/build_esp.yml
+++ b/.github/workflows/build_esp.yml
@@ -30,7 +30,7 @@ jobs:
matrix:
board:
# ESP32-S2
- - 'espressif_kaluga_1'
+# - 'espressif_kaluga_1'
# ESP32-S3
- 'espressif_s3_devkitc'
@@ -58,6 +58,8 @@ jobs:
with:
name: ${{ matrix.board }}
path: |
- cmake-build/cmake-build-${{ matrix.board }}/device/*/*.elf
- cmake-build/cmake-build-${{ matrix.board }}/device/*/config.env
- cmake-build/cmake-build-${{ matrix.board }}/device/*/flash_args
+ cmake-build/cmake-build-${{ matrix.board }}/*/*/bootloader/bootloader.bin
+ cmake-build/cmake-build-${{ matrix.board }}/*/*/*.bin
+ cmake-build/cmake-build-${{ matrix.board }}/*/*/partition_table/partition-table.bin
+ cmake-build/cmake-build-${{ matrix.board }}/*/*/config.env
+ cmake-build/cmake-build-${{ matrix.board }}/*/*/flash_args
diff --git a/.github/workflows/cmake_arm.yml b/.github/workflows/cmake_arm.yml
index 818dbeda9..801e2b043 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
@@ -86,22 +86,13 @@ jobs:
# for rp2040, there is no harm if defined for other families
PICO_SDK_PATH: ${{ github.workspace }}/pico-sdk
- # Upload binaries for hardware test with self-hosted
-# - name: Prepare rp2040 Artifacts
-# if: contains(matrix.family, 'rp2040') && github.repository_owner == 'hathach'
-# working-directory: ${{github.workspace}}/cmake-build/cmake-build-raspberry_pi_pico
-# run: |
-# find device/ -name "*.elf" -exec mv {} ../../ \;
-# # find host/ -name "*.elf" -exec mv {} ../../ \;
-# # find dual/ -name "*.elf" -exec mv {} ../../ \;
-
- name: Upload Artifacts for Hardware Testing
if: contains(matrix.family,'rp2040') && github.repository_owner == 'hathach'
uses: actions/upload-artifact@v3
with:
name: rp2040
path: |
- cmake-build/cmake-build-raspberry_pi_pico/device/*/*.elf
+ cmake-build/cmake-build-raspberry_pi_pico/*/*/*.elf
# ---------------------------------------
# Hardware in the loop (HIL)