mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-05 20:40:25 -08:00
Don't compile esp32 code
This commit is contained in:
8
.github/workflows/build_push.yml
vendored
8
.github/workflows/build_push.yml
vendored
@@ -16,12 +16,12 @@ jobs:
|
|||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install ESP32 Boards and Compile MarauderOTA
|
- name: Install ESP32 Boards and Compile TestFile
|
||||||
uses: ArminJo/arduino-test-compile@v3.2.1
|
uses: ArminJo/arduino-test-compile@v3.2.1
|
||||||
with:
|
with:
|
||||||
sketch-names: MarauderOTA.ino
|
sketch-names: TestFile.ino
|
||||||
arduino-board-fqbn: esp32:esp32:esp32s2
|
#arduino-board-fqbn: esp32:esp32:esp32s2
|
||||||
platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.3/package_esp32_dev_index.json
|
#platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.3/package_esp32_dev_index.json
|
||||||
|
|
||||||
- name: Search for SD lib in arduino-esp32 v2.0.3
|
- name: Search for SD lib in arduino-esp32 v2.0.3
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
7
TestFile/TestFile.ino
Normal file
7
TestFile/TestFile.ino
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
void setup() {
|
||||||
|
Serial.begin(115200);
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
Serial.println("Just a test");
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user