-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.auto-build.sh
70 lines (54 loc) · 2.19 KB
/
.auto-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
#/bin/bash
# Automatic build script
#
# To run locally, execute:
# sudo apt install python3-virtualenv
# virtualenv .env
# source .env/bin/activate
# pip install platformio
# ./.auto-build.sh
#
# Optional:
# sudo apt install doxygen graphviz texlive-latex-base texlive-latex-recommended texlive-pictures texlive-latex-extra
# Exit immediately if a command exits with a non-zero status.
set -e
echo "Starting auto-build script..."
function autobuild()
{
# Set environment variables
BOARDS_AVR="--board uno --board micro --board miniatmega328 --board nanoatmega328new --board pro16MHzatmega328 --board pro8MHzatmega328 --board megaatmega2560 --board leonardo"
BOARDS_ARM="--board due"
BOARDS_ESP="--board d1_mini --board nodemcuv2 --board lolin_d32"
echo "Installing library dependencies"
# Install library dependency LowPower.h for example DHT22LowPower.ino
platformio lib --global install "Low-Power"
platformio lib --global install https://github.com/Erriez/ErriezDS3231
platformio lib --global install https://github.com/arduino-libraries/SD
echo "Building examples..."
platformio ci --lib="." ${BOARDS_AVR} ${BOARDS_ARM} ${BOARDS_ESP} examples/DHT22/DHT22.ino
platformio ci --lib="." ${BOARDS_AVR} ${BOARDS_ARM} ${BOARDS_ESP} examples/DHT22Average/DHT22Average.ino
platformio ci --lib="." ${BOARDS_AVR} examples/DHT22DurationTest/DHT22DurationTest.ino
platformio ci --lib="." ${BOARDS_AVR} examples/DHT22Logging/DHT22Logging.ino
platformio ci --lib="." ${BOARDS_AVR} examples/DHT22LoggingAVR/DHT22LoggingAVR.ino
platformio ci --lib="." ${BOARDS_AVR} examples/DHT22LowPower/DHT22LowPower.ino
}
function generate_doxygen()
{
echo "Generate Doxygen HTML..."
DOXYGEN_PDF="ErriezDHT22.pdf"
# Cleanup
rm -rf html latex
# Generate Doxygen HTML and Latex
doxygen Doxyfile
# Allow filenames starting with an underscore
echo "" > html/.nojekyll
# Generate PDF when script is not running on Travis-CI
if [[ -z ${TRAVIS_BUILD_DIR} ]]; then
# Generate Doxygen PDF
make -C latex
# Copy PDF to root directory
cp latex/refman.pdf ./${DOXYGEN_PDF}
fi
}
autobuild
generate_doxygen