Skip to content

Commit d46e250

Browse files
committed
[ci] Add STM32L5 jobs
1 parent ea9663c commit d46e250

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/workflows/compile-all.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,27 @@ jobs:
363363
name: stm32l4-compile-all-3
364364
path: test/all/log
365365

366+
stm32l5-compile-all:
367+
if: github.event.label.name == 'ci:hal'
368+
runs-on: ubuntu-20.04
369+
container:
370+
image: ghcr.io/modm-ext/modm-build-cortex-m:latest
371+
steps:
372+
- name: Check out repository
373+
uses: actions/checkout@v2
374+
- name: Checkout code and update modm tools
375+
run: |
376+
(git submodule sync && git submodule update --init --jobs 8) & pip3 install --upgrade --upgrade-strategy=eager modm & wait
377+
- name: Compile HAL for all STM32L5
378+
run: |
379+
(cd test/all && python3 run_all.py stm32l5 --quick-remaining)
380+
- name: Upload log artifacts
381+
if: always()
382+
uses: actions/upload-artifact@v2
383+
with:
384+
name: stm32l5-compile-all
385+
path: test/all/log
386+
366387
stm32g0-compile-all:
367388
if: github.event.label.name == 'ci:hal'
368389
runs-on: ubuntu-20.04

.github/workflows/linux.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,10 @@ jobs:
128128
if: always()
129129
run: |
130130
(cd examples && ../tools/scripts/examples_compile.py stm32l476_discovery nucleo_l476rg nucleo_l432kc nucleo_l452re nucleo_l496zg-p)
131+
- name: Examples STM32L5 Series
132+
if: always()
133+
run: |
134+
(cd examples && ../tools/scripts/examples_compile.py nucleo_l552ze-q)
131135
- name: Examples STM32G4 Series
132136
if: always()
133137
run: |

0 commit comments

Comments
 (0)