We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae9bfb5 commit 122a9d6Copy full SHA for 122a9d6
1 file changed
.github/workflows/ci.yml
@@ -78,6 +78,18 @@ jobs:
78
arduino-cli core update-index
79
arduino-cli core install esp32:esp32
80
81
+ - name: Install libraries
82
+ run: |
83
+ arduino-cli lib update-index
84
+ if [ ! -d "${HOME}/Arduino/libraries/ESPBufferManager" ]; then
85
+ arduino-cli lib install --git-url https://github.com/ESPToolKit/esp-buffer-manager.git || \
86
+ git clone --depth 1 https://github.com/ESPToolKit/esp-buffer-manager.git "${HOME}/Arduino/libraries/ESPBufferManager"
87
+ fi
88
+ if [ ! -d "${HOME}/Arduino/libraries/ESPWorker" ]; then
89
+ arduino-cli lib install --git-url https://github.com/ESPToolKit/esp-worker.git || \
90
+ git clone --depth 1 https://github.com/ESPToolKit/esp-worker.git "${HOME}/Arduino/libraries/ESPWorker"
91
92
+
93
- name: Add local library to sketchbook
94
run: |
95
set -e
0 commit comments