Arthur: enable Lazor LAVA test

Signed-off-by: Arthur She <arthur.she@linaro.org>
Change-Id: I006dffb9c67c03ba00e53afa2638dcb744be8d07
diff --git a/sc7180_utils.sh b/sc7180_utils.sh
new file mode 100644
index 0000000..939ae01
--- /dev/null
+++ b/sc7180_utils.sh
@@ -0,0 +1,23 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2020-2022, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+set -u
+
+gen_sc7180_yaml(){
+    local yaml_file="$workspace/sc7180.yaml"
+    local job_file="$workspace/job.yaml"
+    local payload_type="${payload_type:?}"
+
+    bin_mode="$mode" \
+        "$ci_root/script/gen_sc7180_${payload_type}_yaml.sh" > "$yaml_file"
+
+    cp "$yaml_file" "$job_file"
+    archive_file "$yaml_file"
+    archive_file "$job_file"
+}
+
+set +u