File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -47,15 +47,24 @@ jobs:
47
47
arduino-cli core update-index
48
48
arduino-cli core update-index --additional-urls $BSP_URL
49
49
arduino-cli core install adafruit:nrf52 --additional-urls $BSP_URL
50
+
50
51
# Repalce release BSP with our code
51
52
BSP_VERSION=`eval ls $HOME/$BSP_PATH`
52
53
rm -r $HOME/$BSP_PATH/*
53
54
ln -s $GITHUB_WORKSPACE $HOME/$BSP_PATH/$BSP_VERSION
55
+
54
56
# Install library dependency
55
- arduino-cli lib install "Adafruit AHRS" "Adafruit APDS9960 Library" "Adafruit BMP280 Library" "Adafruit Circuit Playground" "Adafruit EPD" "Adafruit GFX Library" "Adafruit HX8357 Library" "Adafruit ILI9341" "Adafruit LIS3MDL" "Adafruit LSM6DS" "Adafruit NeoPixel" "Adafruit NeoMatrix" "Adafruit Sensor Calibration" "Adafruit SHT31 Library" "Adafruit SSD1306" "Adafruit ST7735 and ST7789 Library" "Firmata" " SdFat - Adafruit Fork"
56
-
57
+ arduino-cli lib install "Adafruit AHRS" "Adafruit APDS9960 Library" "Adafruit BMP280 Library" "Adafruit Circuit Playground" "Adafruit EPD" "Adafruit GFX Library" "Adafruit HX8357 Library" "Adafruit ILI9341" "Adafruit LIS3MDL" "Adafruit LSM6DS" "Adafruit NeoPixel" "Adafruit NeoMatrix" "Adafruit Sensor Calibration" "Adafruit SHT31 Library" "Adafruit SSD1306" "Adafruit ST7735 and ST7789 Library" "SdFat - Adafruit Fork"
58
+
57
59
# TODO update to support MIDI version 5 later on
58
60
arduino-cli lib install "MIDI Library"@4.3.1
59
61
62
+ # TODO use firmata master to prevent build error with gcc v9 (should be remove after 2.5.9 is released)
63
+ # https://github.com/firmata/arduino/pull/438
64
+ git clone -depth 1 https://github.com/firmata/arduino.git $HOME/Arduino/libraries/firmata
65
+
66
+ # Library summary
67
+ arduino-cli lib list
68
+
60
69
- name : Build examples
61
70
run : python3 tools/build_all.py ${{ matrix.arduino-platform }}
You can’t perform that action at this time.
0 commit comments