Skip to content

Commit

Permalink
Add NUCLEO-L476RG to the build action
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-rabault committed Jan 24, 2024
1 parent 9f8426e commit 92cd2a3
Showing 1 changed file with 24 additions and 22 deletions.
46 changes: 24 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- review_requested
push:

concurrency:
concurrency:
group: dev-build-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true

Expand Down Expand Up @@ -46,9 +46,9 @@ jobs:
- if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install -y lcov
lcov -d .pio/build/native/ -c -o lcov.info
lcov --remove lcov.info '*/usr/*' '*/Platforms/*' '*/bootloader/*' '*/.pio/*' '*/HAL/*' '*/test/*' '*/network/*' -o lcov.info
sudo apt-get install -y lcov
lcov -d .pio/build/native/ -c -o lcov.info
lcov --remove lcov.info '*/usr/*' '*/Platforms/*' '*/bootloader/*' '*/.pio/*' '*/HAL/*' '*/test/*' '*/network/*' -o lcov.info
- if: matrix.os == 'ubuntu-latest'
name: Coveralls
Expand All @@ -59,8 +59,7 @@ jobs:
needs: tests-run
runs-on: ubuntu-latest
steps:
- run: echo "Tests succeed!"

- run: echo "Tests succeed!"

code-format:
name: Code format
Expand All @@ -77,7 +76,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: "14"

- name: Install dependencies
run: npm install -g [email protected]
Expand All @@ -90,20 +89,23 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
project_folders: [examples/projects/l0,
examples/projects/Arduino,
examples/projects/NUCLEO-L432KC,
examples/projects/STM32F4-discovery,
examples/projects/NUCLEO-F401RE,
examples/projects/NUCLEO-F410RB,
examples/projects/NUCLEO-G431KB,
examples/projects/NUCLEO-G474RE,
examples/projects/NUCLEO-F072RB,
examples/projects/NUCLEO-L073RZ,
examples/projects/STM32L4S5_discovery,
examples/projects/ESP32,
examples/projects/native
]
project_folders:
[
examples/projects/l0,
examples/projects/Arduino,
examples/projects/NUCLEO-L432KC,
examples/projects/NUCLEO-L476RG,
examples/projects/STM32F4-discovery,
examples/projects/NUCLEO-F401RE,
examples/projects/NUCLEO-F410RB,
examples/projects/NUCLEO-G431KB,
examples/projects/NUCLEO-G474RE,
examples/projects/NUCLEO-F072RB,
examples/projects/NUCLEO-L073RZ,
examples/projects/STM32L4S5_discovery,
examples/projects/ESP32,
examples/projects/native,
]
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
Expand Down Expand Up @@ -152,4 +154,4 @@ jobs:
needs: examples-build
runs-on: ubuntu-latest
steps:
- run: echo "Build succeed!"
- run: echo "Build succeed!"

0 comments on commit 92cd2a3

Please sign in to comment.