blob: 5b478666398552e2f28cc755c5c09dd1ba3ff76e [file] [log] [blame]
Fathi Boudra422bf772019-12-02 11:10:16 +02001#!/bin/bash
2#
3# Copyright (c) 2019, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8set -e
9
10# If it's a Juno build-only config, or an FVP config, we do everything locally
11if [ "$RUN_CONFIG" = "nil" ]; then
12 exit 0
13fi
14
15case "$RUN_CONFIG" in
16 fvp-*)
17 exit 0;;
18 coverity-*)
19 exit 0;;
20esac
21
22# If we're not going to run Juno, then no need to spawn tf-build-for lava;
23# build it locally.
24if [ "$skip_juno" ]; then
25 exit 0
26fi
27
28exit 1