Leonardo Sandoval | 9dfdd1b | 2020-08-06 17:08:11 -0500 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 2 | # |
Leonardo Sandoval | 579c737 | 2020-10-23 15:23:32 -0500 | [diff] [blame] | 3 | # Copyright (c) 2019-2020 Arm Limited. All rights reserved. |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | |
| 8 | # Generate a YAML file in order to dispatch Juno TFTF runs on LAVA. Note that |
| 9 | # this script would produce a meaningful output when run via. Jenkins. |
| 10 | # |
| 11 | # $bin_mode must be set. This script outputs to STDOUT |
| 12 | |
| 13 | ci_root="$(readlink -f "$(dirname "$0")/..")" |
| 14 | source "$ci_root/utils.sh" |
| 15 | |
| 16 | get_recovery_image_url() { |
| 17 | local build_job="tf-build" |
| 18 | local bin_mode="${bin_mode:?}" |
| 19 | |
| 20 | if upon "$jenkins_run"; then |
| 21 | echo "$jenkins_url/job/$JOB_NAME/$BUILD_NUMBER/artifact/artefacts/$bin_mode/juno_recovery.zip" |
| 22 | else |
| 23 | echo "file://$workspace/artefacts/$bin_mode/juno_recovery.zip" |
| 24 | fi |
| 25 | } |
| 26 | |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 27 | recovery_img_url="${recovery_img_url:-$(get_recovery_image_url)}" |
| 28 | |
Manish Pandey | 7719a38 | 2020-09-07 12:30:18 +0100 | [diff] [blame] | 29 | # Allow running juno tests on specific revision(r0/r1/r2). |
| 30 | juno_revision="${juno_revision:-}" |
| 31 | if [ ! -z "$juno_revision" ]; then |
| 32 | tags="tags:" |
| 33 | juno_revision="- ${juno_revision}" |
| 34 | else |
| 35 | tags="" |
| 36 | fi |
| 37 | |
Chris Kay | 3d80788 | 2022-08-31 16:00:02 +0100 | [diff] [blame] | 38 | expand_template "$(dirname "$0")/lava-templates/juno-tftf.yaml" |