mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-04 15:34:19 +01:00
* test: restore webui builds in travis * show build.sh usage via -h, exclude build stage instead of explicitly including it
18 lines
433 B
Bash
Executable File
18 lines
433 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x -e -v
|
|
|
|
cd code
|
|
|
|
if [ "${TRAVIS_BUILD_STAGE_NAME}" = "Test webui" ]; then
|
|
./build.sh -f environments
|
|
elif [ "${TRAVIS_BUILD_STAGE_NAME}" = "Test platformio build" ]; then
|
|
# shellcheck disable=SC2086
|
|
scripts/test_build.py -e "$TEST_ENV" $TEST_EXTRA_ARGS
|
|
elif [ "${TRAVIS_BUILD_STAGE_NAME}" = "Release" ]; then
|
|
./build.sh -p
|
|
else
|
|
echo -e "\e[1;33mUnknown stage name, exiting!\e[0m"
|
|
exit 1
|
|
fi
|