-
Notifications
You must be signed in to change notification settings - Fork 2
/
.auto-build.sh
executable file
·53 lines (38 loc) · 1.49 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
#/bin/bash
# Automatic build script
#
# To run locally, execute:
# 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_DUE="--board due"
BOARDS_ESP="--board d1_mini --board nodemcuv2 --board lolin_d32"
echo "Building examples..."
platformio ci --lib="." ${BOARDS_AVR} ${BOARDS_DUE} ${BOARDS_ESP} examples/ErriezTTP229DualTouchKeypad4x4/ErriezTTP229DualTouchKeypad4x4.ino
platformio ci --lib="." ${BOARDS_AVR} ${BOARDS_DUE} ${BOARDS_ESP} examples/ErriezTTP229SingleTouchKeypad4x4/ErriezTTP229SingleTouchKeypad4x4.ino
}
function generate_doxygen()
{
echo "Generate Doxygen HTML..."
DOXYGEN_PDF="ErriezTTP229TouchKeypad.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