File tree Expand file tree Collapse file tree 1 file changed +3
-16
lines changed Expand file tree Collapse file tree 1 file changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,7 @@ concurrency:
7
7
cancel-in-progress : true
8
8
9
9
env :
10
- ARDUINO_LIBS :
11
- - ' Adafruit SPIFlash'
12
- - ' MIDI Library'
13
- - ' Adafruit seesaw Library'
14
- - ' Adafruit NeoPixel'
15
- - ' SdFat - Adafruit Fork'
16
- - ' SD'
17
- - ' Adafruit Circuit Playground'
18
- - ' Adafruit InternalFlash'
19
- - ' Pico PIO USB'
10
+ ARDUINO_LIBS : " \" Adafruit SPIFlash\" \" MIDI Library\" \" Adafruit seesaw Library\" \" Adafruit NeoPixel\" \" SdFat - Adafruit Fork\" \" SD\" \" Adafruit Circuit Playground\" \" Adafruit InternalFlash\" \" Pico PIO USB\" "
20
11
21
12
jobs :
22
13
pre-commit :
86
77
87
78
- name : Install Libraries
88
79
run : |
89
- LIBS_STRING=""
90
- for lib in "${{ env.ARDUINO_LIBS[@] }}"; do
91
- LIBS_STRING+="\"$lib\" "
92
- done
93
- echo "$LIBS_STRING"
80
+ echo ${{ env.ARDUINO_LIBS }}
94
81
# arduino-cli lib install "Adafruit SPIFlash" "MIDI Library" "Adafruit seesaw Library" "Adafruit NeoPixel" "SdFat - Adafruit Fork" "SD" "Adafruit Circuit Playground" "Adafruit InternalFlash" "Pico PIO USB"
95
- arduino-cli lib install $LIBS_STRING
82
+ arduino-cli lib install ${{ env.ARDUINO_LIBS }}
96
83
97
84
- name : test platforms
98
85
run : python3 ci/build_platform.py ${{ matrix.arduino-platform }}
You can’t perform that action at this time.
0 commit comments