Khasim Syed Mohammed | 430d594 | 2021-08-09 21:26:15 +0530 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | # |
| 3 | # Copyright (c) 2021 Arm Limited. All rights reserved. |
| 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | |
| 8 | set -e |
| 9 | |
| 10 | # For n1sdp runs, we need to let the board download build artefacts using a URL. |
| 11 | # The only way to have a board-accessible URL at the moment is to have build |
| 12 | # artefacts archived. Therefore, for n1sdp we spawn the build as a separate job |
| 13 | if echo "$RUN_CONFIG" | grep -iqe '^n1sdp'; then |
| 14 | exit 0 |
| 15 | else |
| 16 | exit 1 |
| 17 | fi |