Leonardo Sandoval | 9dfdd1b | 2020-08-06 17:08:11 -0500 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Zelalem | 1af7a7b | 2020-08-04 17:34:32 -0500 | [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. |
Zelalem | 1af7a7b | 2020-08-04 17:34:32 -0500 | [diff] [blame] | 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | |
| 8 | # Generate a YAML file in order to dispatch Juno runs on LAVA. |
| 9 | # This file will boot Linux, reboot Linux, and then wait for the shell prompt |
| 10 | # to declare the test as a pass after the successful reboot. Note that this |
| 11 | # script would produce a meaningful output when run via. Jenkins |
| 12 | # |
| 13 | # $bin_mode must be set. This script outputs to STDOUT |
| 14 | |
| 15 | ci_root="$(readlink -f "$(dirname "$0")/..")" |
| 16 | source "$ci_root/utils.sh" |
| 17 | source "$ci_root/juno_utils.sh" |
| 18 | |
| 19 | get_recovery_image_url() { |
| 20 | local build_job="tf-build" |
| 21 | local bin_mode="${bin_mode:?}" |
| 22 | |
| 23 | if upon "$jenkins_run"; then |
| 24 | echo "$jenkins_url/job/$JOB_NAME/$BUILD_NUMBER/artifact/artefacts/$bin_mode/juno_recovery.zip" |
| 25 | else |
| 26 | echo "file://$workspace/artefacts/$bin_mode/juno_recovery.zip" |
| 27 | fi |
| 28 | } |
| 29 | |
| 30 | bootloader_prompt="${bootloader_prompt:-juno#}" |
Zelalem | 1af7a7b | 2020-08-04 17:34:32 -0500 | [diff] [blame] | 31 | recovery_img_url="${recovery_img_url:-$(get_recovery_image_url)}" |
Leonardo Sandoval | be690bd | 2020-10-12 17:59:39 -0500 | [diff] [blame] | 32 | nfs_rootfs="${juno_rootfs_url:-$nfs_rootfs}" |
Zelalem | 1af7a7b | 2020-08-04 17:34:32 -0500 | [diff] [blame] | 33 | linux_prompt="${linux_prompt:-root@(.*):~#}" |
| 34 | os="${os:-debian}" |
| 35 | |
Manish Pandey | 7719a38 | 2020-09-07 12:30:18 +0100 | [diff] [blame] | 36 | # Allow running juno tests on specific revision(r0/r1/r2). |
| 37 | juno_revision="${juno_revision:-}" |
| 38 | if [ ! -z "$juno_revision" ]; then |
| 39 | tags="tags:" |
| 40 | juno_revision="- ${juno_revision}" |
| 41 | else |
| 42 | tags="" |
| 43 | fi |
| 44 | |
Chris Kay | 3d80788 | 2022-08-31 16:00:02 +0100 | [diff] [blame] | 45 | expand_template "$(dirname "$0")/lava-templates/juno-linux-reboot.yaml" |