1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

remove lwip-v1.4 specific code (#7436)

* remove lwip-v1.4 specific code

* ditto

* ditto

* fix ip4_addr definition

* CI: change debug builds to use IPv6, remove regular IPv6 builds

* ditto

* split pio CI in four (because they last twice the time of the other builds)

* remove option from pio

* remove lwIP-1.4 from doc

* restore pio CI splitting

* fix CI debug6 script

* ditto
This commit is contained in:
david gauchard
2020-07-09 18:59:49 +02:00
committed by GitHub
parent 70e4457041
commit af1bc71a9e
135 changed files with 49 additions and 47073 deletions

View File

@ -16,4 +16,3 @@ install_arduino debug
build_sketches_with_arduino "$mod" "$rem" lm2f
rm -rf "$cache_dir"

View File

@ -15,8 +15,8 @@ elif [ "$BUILD_PARITY" = "odd" ]; then
rem=1
fi
install_arduino nodebug
build_sketches_with_arduino "$mod" "$rem" hb1
install_arduino debug
build_sketches_with_arduino "$mod" "$rem" lm6f
rm -rf "$cache_dir"

View File

@ -54,7 +54,6 @@ while true; do
Which build?
1. main
2. main + IPv6
3. main with lwIP-v1.4
4. debug even
5. debug odd
6. platformio
@ -69,7 +68,6 @@ EOF
case "$ans" in
1) BUILD_TYPE=build;;
2) BUILD_TYPE=build6;;
3) BUILD_TYPE=build1;;
4) BUILD_TYPE=debug_even;;
5) BUILD_TYPE=debug_odd;;
6) BUILD_TYPE=platformio;;
@ -106,13 +104,6 @@ elif [ "$BUILD_TYPE" = "build6_even" ]; then
elif [ "$BUILD_TYPE" = "build6_odd" ]; then
BUILD_PARITY=odd tests/build6.sh
elif [ "$BUILD_TYPE" = "build1" ]; then
tests/build1.sh
elif [ "$BUILD_TYPE" = "build1_even" ]; then
BUILD_PARITY=even tests/build1.sh
elif [ "$BUILD_TYPE" = "build1_odd" ]; then
BUILD_PARITY=odd tests/build1.sh
elif [ "$BUILD_TYPE" = "platformio" ]; then
tests/platformio.sh
elif [ "$BUILD_TYPE" = "platformio_even" ]; then