mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
* 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
19 lines
300 B
Bash
Executable File
19 lines
300 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cache_dir=$(mktemp -d)
|
|
|
|
source "$TRAVIS_BUILD_DIR"/tests/common.sh
|
|
|
|
if [ "$BUILD_PARITY" = "even" ]; then
|
|
mod=2
|
|
rem=0
|
|
elif [ "$BUILD_PARITY" = "odd" ]; then
|
|
mod=2
|
|
rem=1
|
|
fi
|
|
|
|
install_arduino debug
|
|
build_sketches_with_arduino "$mod" "$rem" lm2f
|
|
|
|
rm -rf "$cache_dir"
|