update lib deps
This commit is contained in:
parent
90c0b48235
commit
1595e2f59b
2 changed files with 3 additions and 2 deletions
3
.github/workflows/githubci.yml
vendored
3
.github/workflows/githubci.yml
vendored
|
|
@ -41,6 +41,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
BSP_URL: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
|
BSP_URL: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
|
||||||
BSP_PATH: .arduino15/packages/adafruit/hardware/samd
|
BSP_PATH: .arduino15/packages/adafruit/hardware/samd
|
||||||
|
LIB_DEPS: FlashStorage SD
|
||||||
run: |
|
run: |
|
||||||
arduino-cli config init
|
arduino-cli config init
|
||||||
arduino-cli core update-index
|
arduino-cli core update-index
|
||||||
|
|
@ -51,7 +52,7 @@ jobs:
|
||||||
BSP_VERSION=`eval ls $HOME/$BSP_PATH`
|
BSP_VERSION=`eval ls $HOME/$BSP_PATH`
|
||||||
rm -r $HOME/$BSP_PATH/*
|
rm -r $HOME/$BSP_PATH/*
|
||||||
ln -s $GITHUB_WORKSPACE $HOME/$BSP_PATH/$BSP_VERSION
|
ln -s $GITHUB_WORKSPACE $HOME/$BSP_PATH/$BSP_VERSION
|
||||||
arduino-cli lib install "FlashStorage"
|
arduino-cli lib install $LIB_DEPS
|
||||||
|
|
||||||
- name: Build examples
|
- name: Build examples
|
||||||
run: python3 extras/build_all.py ${{ matrix.arduino-platform }}
|
run: python3 extras/build_all.py ${{ matrix.arduino-platform }}
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ exit_status = 0
|
||||||
success_count = 0
|
success_count = 0
|
||||||
fail_count = 0
|
fail_count = 0
|
||||||
|
|
||||||
build_format = '| {:20} | {:30} | {:9} '
|
build_format = '| {:22} | {:30} | {:9} '
|
||||||
build_separator = '-' * 78
|
build_separator = '-' * 78
|
||||||
|
|
||||||
all_boards = [ 'metro_m0' ]
|
all_boards = [ 'metro_m0' ]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue