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