forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·85 lines (73 loc) · 2.24 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env bash
root=$(git rev-parse --show-toplevel)
ESP8266_ARDUINO_BUILD_DIR=${ESP8266_ARDUINO_BUILD_DIR:-$root}
ESP8266_ARDUINO_BUILDER=${ESP8266_ARDUINO_BUILDER:-arduino}
ESP8266_ARDUINO_PRESERVE_CACHE=${ESP8266_ARDUINO_PRESERVE_CACHE:-}
ESP8266_ARDUINO_IDE=${ESP8266_ARDUINO_IDE:-$HOME/arduino_ide}
ESP8266_ARDUINO_HARDWARE=${ESP8266_ARDUINO_HARDWARE:-$HOME/Arduino/hardware}
ESP8266_ARDUINO_LIBRARIES=${ESP8266_ARDUINO_LIBRARIES:-$HOME/Arduino/libraries}
ESP8266_ARDUINO_DEBUG=${ESP8266_ARDUINO_DEBUG:-nodebug}
ESP8266_ARDUINO_LWIP=${ESP8266_ARDUINO_LWIP:-default}
ESP8266_ARDUINO_SKETCHES=${ESP8266_ARDUINO_SKETCHES:-}
source "$root/tests/common.sh"
cmd=${0##*/}
usage="
ENVIRONMENT:
ESP8266_ARDUINO_SKETCHES - list of .ino files; defaults to **all available examples**
ESP8266_ARDUINO_BUILDER - arduino or platformio
For Arduino IDE:
ESP8266_ARDUINO_IDE - path to the IDE (portable)
ESP8266_ARDUINO_HARDWARE - path to the hardware directory (usually, containing our repo)
ESP8266_ARDUINO_LIBRATIES - path to the libraries directory (external dependencies)
ESP8266_ARDUINO_DEBUG - debug or nodebug
ESP8266_ARDUINO_LWIP - v4 or v6
USAGE:
$cmd <[even | odd]> - build every Nth, when '<N> % 2' is either even or odd
$cmd <mod> <rem> - build every Nth, when '<N> % <mod>' is equal to 'rem'
$cmd - build every .ino file from ESP8266_ARDUINO_SKETCHES
"
mod=1
rem=0
if [ "$#" -eq 1 ] ; then
case "$1" in
"-h")
echo "$usage"
exit 0
;;
"even")
mod=2
rem=0
;;
"odd")
mod=2
rem=1
;;
*)
echo 'Can either be even or odd'
exit 1
;;
esac
elif [ "$#" -eq 2 ] ; then
mod=$1
rem=$2
elif [ "$#" -gt 2 ] ; then
echo "$usage"
exit 1
fi
if [ -z "$ESP8266_ARDUINO_SKETCHES" ] ; then
ESP8266_ARDUINO_SKETCHES=$(find $root/libraries -name *.ino | sort)
fi
case "$ESP8266_ARDUINO_BUILDER" in
"arduino")
install_arduino "$ESP8266_ARDUINO_DEBUG"
build_sketches_with_arduino "$mod" "$rem" "$ESP8266_ARDUINO_LWIP"
;;
"platformio")
install_platformio nodemcuv2
build_sketches_with_platformio "$mod" "$rem"
;;
*)
echo "Unknown builder! Must be either arduino or platformio"
exit 1
;;
esac