File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -363,6 +363,27 @@ jobs:
363
363
name : stm32l4-compile-all-3
364
364
path : test/all/log
365
365
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
+
366
387
stm32g0-compile-all :
367
388
if : github.event.label.name == 'ci:hal'
368
389
runs-on : ubuntu-20.04
Original file line number Diff line number Diff line change @@ -128,6 +128,10 @@ jobs:
128
128
if : always()
129
129
run : |
130
130
(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)
131
135
- name : Examples STM32G4 Series
132
136
if : always()
133
137
run : |
You can’t perform that action at this time.
0 commit comments