mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-05 16:04:19 +01:00
* travis: move build flags tests outside of hardware header * mqtt: fix typo * travis: use files instead of bundling test cases into script * fixup! travis: use files instead of bundling test cases into script * fix variable expansion, remove custom h at the end * add ade7953 to sensors list * custom.h path as variable * shellcheck * fix printf syntax, silent again * fix bash 4.3 treating empty array as unset variable
12 lines
156 B
Bash
Executable File
12 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -v
|
|
|
|
cd code
|
|
|
|
if [ ${TRAVIS_BUILD_STAGE_NAME} = "Test" ]; then
|
|
./test_build.sh $BUILDER_ENV $BUILDER_EXTRA
|
|
else
|
|
./build.sh -p
|
|
fi
|