Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test.platformio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
timeout-minutes: 40
strategy:
fail-fast: false
max-parallel: 20

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: ${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 0 additions & 1 deletion examples/IotWebConf17JsonConfig/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ build_flags =
;upload_port = /dev/cu.SLAB_USBtoUART
lib_deps =
${common.lib_deps}
lorol/LittleFS_esp32
7 changes: 1 addition & 6 deletions examples/IotWebConf17JsonConfig/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,7 @@

#include <IotWebConf.h>
#include <IotWebConfUsing.h> // This loads aliases for easier class names.
#ifndef ESP32
# include <LittleFS.h>
#else
# include <LITTLEFS.h>
# define LittleFS LITTLEFS
#endif
#include <LittleFS.h>
#include <ArduinoJson.h>

#ifndef IOTWEBCONF_ENABLE_JSON
Expand Down