File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ jobs:
103
103
git clone https://github.com/ThingPulse/esp8266-oled-ssd1306 ;
104
104
git clone https://github.com/arduino-libraries/MadgwickAHRS ;
105
105
git clone https://github.com/CreativeRobotics/Commander ;
106
+ git clone https://github.com/adafruit/SdFat.git ;
106
107
107
108
cd $GITHUB_WORKSPACE ;
108
109
if [[ "$BOARD" =~ "esp32:esp32:" ]]; then
Original file line number Diff line number Diff line change @@ -22,18 +22,17 @@ jobs:
22
22
- uses : actions/checkout@v3
23
23
with :
24
24
submodules : " recursive"
25
- - name : Export ESP-IDF environment variables
26
- shell : bash
27
- run : . ${IDF_PATH}/export.sh
28
25
- name : Build ESP_IDF_TouchDrvExample
29
26
shell : bash
30
27
run : |
31
- cd $GITHUB_WORKSPACE ;
28
+ pwd
29
+ . ${IDF_PATH}/export.sh
32
30
cd examples/ESP_IDF_TouchDrvExample
33
31
idf.py build
34
32
- name : Build ESP_IDF_SensorExamples
35
33
shell : bash
36
34
run : |
37
- cd $GITHUB_WORKSPACE ;
35
+ pwd
36
+ . ${IDF_PATH}/export.sh
38
37
cd examples/ESP_IDF_SensorExamples
39
38
idf.py build
Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ jobs:
104
104
# https://github.com/CreativeRobotics/Commander
105
105
run : pio pkg install --library "creativerobotics/Commander @ ^4.3.0" -g
106
106
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
+
107
111
- name : Run PlatformIO
108
112
run : pio ci --lib="." --board=esp32dev --board=esp32-c3-devkitm-1 --board=esp32-s3-devkitm-1 --board=nrf52840_dk_adafruit
109
113
env :
You can’t perform that action at this time.
0 commit comments