Skip to content

Commit

Permalink
chore: housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushsharma82 committed Sep 7, 2024
1 parent 990c2ec commit 3fcfd7e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ on:
- "/library.properties"
- "/docs"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
arduino:
name: arduino ${{ matrix.name }}
Expand Down Expand Up @@ -60,13 +64,13 @@ jobs:
run: arduino-cli core install --additional-urls "${{ matrix.index_url }}" ${{ matrix.core }}

- name: Install AsyncTCP
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.2.3
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.2.5

- name: Install ESPAsyncTCP
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/esphome-ESPAsyncTCP#v2.0.0

- name: Install ESPAsyncWebServer
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.1.1
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.2.4

- name: Build Demo
run: arduino-cli compile --library . --warnings none -b ${{ matrix.board }} "examples/Demo/Demo.ino"
Expand Down
Binary file removed docs/Written Offer for Source Code.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
{
"owner": "mathieucarbou",
"name": "ESPAsyncWebServer",
"version": "^3.1.1",
"version": "^3.2.4",
"platforms": ["espressif8266", "espressif32"]
}
],
"version": "3.1.5",
"version": "3.1.6",
"frameworks": "arduino",
"platforms": ["espressif8266", "espressif32", "raspberrypi"],
"build": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ElegantOTA
version=3.1.5
version=3.1.6
author=Ayush Sharma
category=Communication
maintainer=Ayush Sharma <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ build_flags =
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
-D ELEGANTOTA_USE_ASYNC_WEBSERVER=1
lib_deps =
mathieucarbou/AsyncTCP@^3.2.3
mathieucarbou/ESPAsyncWebServer@^3.1.1
mathieucarbou/AsyncTCP@^3.2.5
mathieucarbou/ESPAsyncWebServer@^3.2.4
lib_compat_mode = strict
upload_protocol = esptool
monitor_speed = 115200
Expand Down Expand Up @@ -37,7 +37,7 @@ board = esp32-s3-devkitc-1
platform = espressif8266
board = huzzah
lib_deps =
mathieucarbou/ESPAsyncWebServer@^3.1.1
mathieucarbou/ESPAsyncWebServer@^3.2.4
esphome/ESPAsyncTCP-esphome@^2.0.0

[env:pico]
Expand Down

0 comments on commit 3fcfd7e

Please sign in to comment.