Sync scripts in 'script' directory with internal CI
Sync scripts with platform-ci commit:
539c151d0cd99a5e6ca6c0e6966f6d8579fe864e
Signed-off-by: Zelalem <zelalem.aweke@arm.com>
Change-Id: I455770dea2e3974f652de317b21e53cfc0b9199e
diff --git a/script/gen_juno_linux_reboot_yaml.sh b/script/gen_juno_linux_reboot_yaml.sh
new file mode 100755
index 0000000..f1254eb
--- /dev/null
+++ b/script/gen_juno_linux_reboot_yaml.sh
@@ -0,0 +1,125 @@
+#!/bin/bash
+#
+# Copyright (c) 2019, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+# Generate a YAML file in order to dispatch Juno runs on LAVA.
+# This file will boot Linux, reboot Linux, and then wait for the shell prompt
+# to declare the test as a pass after the successful reboot. Note that this
+# script would produce a meaningful output when run via. Jenkins
+#
+# $bin_mode must be set. This script outputs to STDOUT
+
+ci_root="$(readlink -f "$(dirname "$0")/..")"
+source "$ci_root/utils.sh"
+source "$ci_root/juno_utils.sh"
+
+get_recovery_image_url() {
+ local build_job="tf-build"
+ local bin_mode="${bin_mode:?}"
+
+ if upon "$jenkins_run"; then
+ echo "$jenkins_url/job/$JOB_NAME/$BUILD_NUMBER/artifact/artefacts/$bin_mode/juno_recovery.zip"
+ else
+ echo "file://$workspace/artefacts/$bin_mode/juno_recovery.zip"
+ fi
+}
+
+bootloader_prompt="${bootloader_prompt:-juno#}"
+juno_revision="${juno_revision:-juno-r0}"
+recovery_img_url="${recovery_img_url:-$(get_recovery_image_url)}"
+nfs_rootfs="${nfs_rootfs:-$juno_rootfs_url}"
+linux_prompt="${linux_prompt:-root@(.*):~#}"
+os="${os:-debian}"
+
+cat <<EOF
+device_type: juno
+job_name: tf-juno
+
+context:
+ bootloader_prompt: $bootloader_prompt
+
+tags:
+- $juno_revision
+
+timeouts:
+ # Global timeout value for the whole job.
+ job:
+ minutes: 30
+ # Unless explicitly overridden, no single action should take more than
+ # 10 minutes to complete.
+ action:
+ minutes: 10
+
+priority: medium
+visibility: public
+
+actions:
+
+- deploy:
+ namespace: recovery
+ to: vemsd
+ recovery_image:
+ url: $recovery_img_url
+ compression: zip
+
+- deploy:
+ namespace: target
+ to: nfs
+ os: $os
+ nfsrootfs:
+ url: $nfs_rootfs
+ compression: gz
+
+- boot:
+ # Drastically increase the timeout for the boot action because of the udev
+ # issues when using TF build config "juno-all-cpu-reset-ops".
+ # TODO: Should increase the timeout only for this TF build config, not all!
+ timeout:
+ minutes: 15
+ namespace: target
+ connection-namespace: recovery
+ method: u-boot
+ commands: norflash
+ auto-login:
+ login_prompt: 'login:'
+ username: root
+ prompts:
+ - $linux_prompt
+
+- test:
+ namespace: target
+ timeout:
+ minutes: 10
+ definitions:
+ - repository:
+ metadata:
+ format: Lava-Test Test Definition 1.0
+ name: container-test-run
+ description: '"Prepare system..."'
+ os:
+ - $os
+ scope:
+ - functional
+ run:
+ steps:
+ - echo "Rebooting..."
+ from: inline
+ name: target-configure
+ path: inline/target-configure.yaml
+
+- boot:
+ timeout:
+ minutes: 15
+ namespace: target
+ connection-namespace: recovery
+ method: u-boot
+ commands: norflash
+ auto-login:
+ login_prompt: 'login:'
+ username: root
+ prompts:
+ - $linux_prompt
+EOF