Skip to content

Commit 95e299d

Browse files
committed
Update action
1 parent f4804c6 commit 95e299d

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/arduino_ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ jobs:
103103
git clone https://github.com/ThingPulse/esp8266-oled-ssd1306 ;
104104
git clone https://github.com/arduino-libraries/MadgwickAHRS ;
105105
git clone https://github.com/CreativeRobotics/Commander ;
106+
git clone https://github.com/adafruit/SdFat.git ;
106107
107108
cd $GITHUB_WORKSPACE ;
108109
if [[ "$BOARD" =~ "esp32:esp32:" ]]; then

.github/workflows/esp-idf.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,17 @@ jobs:
2222
- uses: actions/checkout@v3
2323
with:
2424
submodules: "recursive"
25-
- name: Export ESP-IDF environment variables
26-
shell: bash
27-
run: . ${IDF_PATH}/export.sh
2825
- name: Build ESP_IDF_TouchDrvExample
2926
shell: bash
3027
run: |
31-
cd $GITHUB_WORKSPACE ;
28+
pwd
29+
. ${IDF_PATH}/export.sh
3230
cd examples/ESP_IDF_TouchDrvExample
3331
idf.py build
3432
- name: Build ESP_IDF_SensorExamples
3533
shell: bash
3634
run: |
37-
cd $GITHUB_WORKSPACE ;
35+
pwd
36+
. ${IDF_PATH}/export.sh
3837
cd examples/ESP_IDF_SensorExamples
3938
idf.py build

.github/workflows/pio.yml

+4
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ jobs:
104104
# https://github.com/CreativeRobotics/Commander
105105
run: pio pkg install --library "creativerobotics/Commander @ ^4.3.0" -g
106106

107+
- name: Install Commander library
108+
# https://github.com/CreativeRobotics/Commander
109+
run: pio pkg install --library "adafruit/SdFat - Adafruit Fork @ ^2.2.3" -g
110+
107111
- name: Run PlatformIO
108112
run: pio ci --lib="." --board=esp32dev --board=esp32-c3-devkitm-1 --board=esp32-s3-devkitm-1 --board=nrf52840_dk_adafruit
109113
env:

0 commit comments

Comments
 (0)