File tree Expand file tree Collapse file tree 3 files changed +33
-2
lines changed
pioarduino_examples/IncreaseMaxSockets Expand file tree Collapse file tree 3 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 46
46
arduino-cli compile --library . --warnings none -b esp32:esp32:esp32 "examples/$i/$i.ino"
47
47
done
48
48
49
+ arduino-esp32-dev :
50
+ name : Arduino ESP32 (latest)
51
+ runs-on : ubuntu-latest
52
+ steps :
53
+ - name : Install arduino-cli
54
+ run : curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=/usr/local/bin sh
55
+
56
+ - name : Update core index
57
+ run : arduino-cli core update-index --additional-urls https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json
58
+
59
+ - name : Install core
60
+ run : arduino-cli core install --additional-urls https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json esp32:esp32
61
+
62
+ - name : Install ArduinoJson
63
+ run : arduino-cli lib install ArduinoJson
64
+
65
+ - name : Install AsyncTCP (ESP32)
66
+ run : ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.3.5
67
+
68
+ - name : Checkout
69
+ uses : actions/checkout@v4
70
+
71
+ - name : Build Examples
72
+ run : |
73
+ for i in `ls examples`; do
74
+ echo "============================================================="
75
+ echo "Building examples/$i..."
76
+ echo "============================================================="
77
+ arduino-cli compile --library . --warnings none -b esp32:esp32:esp32 "examples/$i/$i.ino"
78
+ done
79
+
49
80
arduino-esp8266 :
50
81
name : Arduino ESP8266
51
82
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
[env]
2
2
framework = arduino
3
- platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.11 /platform-espressif32.zip
3
+ platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.12 /platform-espressif32.zip
4
4
build_flags =
5
5
-Og
6
6
-Wall -Wextra
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ src_dir = examples/PerfTests
33
33
34
34
[env]
35
35
framework = arduino
36
- platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.11 /platform-espressif32.zip
36
+ platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.12 /platform-espressif32.zip
37
37
board = esp32dev
38
38
build_flags =
39
39
-Og
You can’t perform that action at this time.
0 commit comments