Skip to content

Commit

Permalink
added platformio CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tobozo committed Jan 10, 2024
1 parent ef82b3a commit 23353c0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
19 changes: 14 additions & 5 deletions examples/Test_platformio/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,21 @@
; https://docs.platformio.org/page/projectconf.html

[platformio]
default_envs = nodemcu
default_envs = esp8266

[env]
framework = arduino
lib_deps = ESP32-targz

[env:nodemcu]
[env:esp8266]
platform = espressif8266
board = nodemcu
framework = arduino
lib_deps =
https://github.com/tobozo/ESP32-targz#1.1.8

[env:esp32s3]
platform = [email protected]
board = esp32-s3-devkitc-1

[env:pico]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = pico
board_build.core = earlephilhower
7 changes: 6 additions & 1 deletion examples/Test_platformio/src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
#define DEST_FS_USES_SD

#include <ESP32-targz.h>

void setup()
{

if( !tarGzFS.begin() ) {
Serial.println("Could not start filesystem");
while(1) yield();
}
}


Expand Down

0 comments on commit 23353c0

Please sign in to comment.