Skip to content

Commit 1595e2f

Browse files
committed
update lib deps
1 parent 90c0b48 commit 1595e2f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/githubci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
env:
4242
BSP_URL: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
4343
BSP_PATH: .arduino15/packages/adafruit/hardware/samd
44+
LIB_DEPS: FlashStorage SD
4445
run: |
4546
arduino-cli config init
4647
arduino-cli core update-index
@@ -51,7 +52,7 @@ jobs:
5152
BSP_VERSION=`eval ls $HOME/$BSP_PATH`
5253
rm -r $HOME/$BSP_PATH/*
5354
ln -s $GITHUB_WORKSPACE $HOME/$BSP_PATH/$BSP_VERSION
54-
arduino-cli lib install "FlashStorage"
55+
arduino-cli lib install $LIB_DEPS
5556
5657
- name: Build examples
5758
run: python3 extras/build_all.py ${{ matrix.arduino-platform }}

extras/build_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
success_count = 0
1010
fail_count = 0
1111

12-
build_format = '| {:20} | {:30} | {:9} '
12+
build_format = '| {:22} | {:30} | {:9} '
1313
build_separator = '-' * 78
1414

1515
all_boards = [ 'metro_m0' ]

0 commit comments

Comments
 (0)