Skip to content

Commit

Permalink
fix platformio install sometime failing on GH
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-rabault committed Jan 31, 2025
1 parent 57de417 commit f521e2a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ jobs:
- if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install -y lcov
sudo apt update
apt list -a lcov
wget http://archive.ubuntu.com/ubuntu/pool/main/l/lcov/lcov_1.16-1_all.deb
sudo dpkg -i lcov_1.16-1_all.deb
lcov -d .pio/build/native/ -c -o lcov.info
lcov --remove lcov.info '*/usr/*' '*/Platforms/*' '*/bootloader/*' '*/.pio/*' '*/HAL/*' '*/test/*' '*/network/*' -o lcov.info
Expand Down Expand Up @@ -89,8 +92,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
project_folders:
[
project_folders: [
examples/projects/l0,
examples/projects/Arduino,
examples/projects/NUCLEO-L432KC,
Expand Down

0 comments on commit f521e2a

Please sign in to comment.