Initial commit for TF-A CI scripts

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
diff --git a/run_config/coverity-misra.full b/run_config/coverity-misra.full
new file mode 100644
index 0000000..419859a
--- /dev/null
+++ b/run_config/coverity-misra.full
@@ -0,0 +1,21 @@
+#!/bin/bash
+#
+# Copyright (c) 2019, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+pre_tf_build() {
+	echo "Configure coverity for full scan for MISRA defects."
+
+	append_hook_var "cov_options" " ${coverity_default_checkers[*]}"
+	append_hook_var "cov_options" \
+		" --coding-standard-config $ci_root/coverity/MISRA_c2012_1_ARM_TF.config"
+
+	# Branch description
+	set_hook_var "cov_checker" "misra"
+
+	# Print full report
+	append_hook_var "cov_report_options" " --all"
+	set_hook_var "cov_run_type" "branch-report-full"
+}