Skip to content

Commit 6c4c09b

Browse files
sverreknutsenpennam
authored andcommitted
Update compile-examples workflow
1 parent 0bab269 commit 6c4c09b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/compile-examples.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ jobs:
4949
libraries: |
5050
- name: Arduino_DebugUtils
5151
sketch-paths: |
52-
- examples/OTA
52+
- examples/OTA_Arduino_Server
53+
- examples/OTA_GitHub_Server
5354
- examples/LOLIN_32_Blink
5455
- board:
5556
type: arduino_esp32
@@ -58,7 +59,8 @@ jobs:
5859
libraries: |
5960
- name: Arduino_DebugUtils
6061
sketch-paths: |
61-
- examples/OTA
62+
- examples/OTA_Arduino_Server
63+
- examples/OTA_GitHub_Server
6264
- examples/NANO_ESP32_Blink
6365
6466
steps:

examples/OTA_GitHub_Server/OTA_GitHub_Server.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static char const PASS[] = SECRET_PASS; /* your network password (use for WPA,
4040
#if defined(ARDUINO_NANO_ESP32)
4141
static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/NANO_ESP32_Blink/NANO_ESP32_Blink.ino.ota";
4242
#else
43-
static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/LOLIN_32_Blink/LOLIN_32_Blink.ino.ota"
43+
static char const OTA_FILE_LOCATION[] = "https://raw.githubusercontent.com/arduino-libraries/Arduino_ESP32_OTA/main/examples/LOLIN_32_Blink/LOLIN_32_Blink.ino.ota";
4444
#endif
4545

4646
/******************************************************************************

0 commit comments

Comments
 (0)