ci: do not build btsim if not installed
Do not attempt to build btsim if software is not installed. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
e81c902488
commit
3a361ecdc7
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ function get_tests_to_run() {
|
|||
|
||||
if [ -n "$MAIN_CI" ]; then
|
||||
|
||||
if [ ! -z "${BSIM_OUT_PATH}" ]; then
|
||||
if [ -n "${BSIM_OUT_PATH}" -a -d "${BSIM_OUT_PATH}" ]; then
|
||||
echo "Build BT simulator tests"
|
||||
# Build BT Simulator
|
||||
build_btsim
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue