mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-06 00:14:19 +01:00
12 lines
165 B
Bash
Executable File
12 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -v
|
|
|
|
cd code
|
|
|
|
if [ ${TRAVIS_BUILD_STAGE_NAME} = "Test" ]; then
|
|
scripts/test_build.py -e $BUILDER_ENV $BUILDER_EXTRA
|
|
else
|
|
./build.sh -p
|
|
fi
|