Skip to content

Commit

Permalink
[ci] Add STM32L5 jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-durand committed Jan 2, 2022
1 parent f8ffb1d commit 2e268c2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/compile-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,27 @@ jobs:
name: stm32l4-compile-all-3
path: test/all/log

stm32l5-compile-all:
if: github.event.label.name == 'ci:hal'
runs-on: ubuntu-20.04
container:
image: ghcr.io/modm-ext/modm-build-cortex-m:latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Checkout code and update modm tools
run: |
(git submodule sync && git submodule update --init --jobs 8) & pip3 install --upgrade --upgrade-strategy=eager modm & wait
- name: Compile HAL for all STM32L5
run: |
(cd test/all && python3 run_all.py stm32l5 --quick-remaining)
- name: Upload log artifacts
if: always()
uses: actions/upload-artifact@v2
with:
name: stm32l5-compile-all
path: test/all/log

stm32g0-compile-all:
if: github.event.label.name == 'ci:hal'
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ jobs:
if: always()
run: |
(cd examples && ../tools/scripts/examples_compile.py stm32l476_discovery nucleo_l476rg nucleo_l432kc nucleo_l452re nucleo_l496zg-p)
- name: Examples STM32L5 Series
if: always()
run: |
(cd examples && ../tools/scripts/examples_compile.py nucleo_l552ze-q)
- name: Examples STM32G4 Series
if: always()
run: |
Expand Down

0 comments on commit 2e268c2

Please sign in to comment.