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 | # Build | ||||
11 | "$CI_ROOT/script/build_package.sh" | ||||
12 | |||||
13 | if [ "$skip_runs" ]; then | ||||
14 | exit 0 | ||||
15 | fi | ||||
16 | |||||
17 | # Execute test locally for FVP configs | ||||
18 | if [ "$RUN_CONFIG" != "nil" ] && echo "$RUN_CONFIG" | grep -iq '^fvp'; then | ||||
19 | "$CI_ROOT/script/run_package.sh" | ||||
20 | fi |