Initial commit for TF-A CI scripts

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
diff --git a/run_config/coverity-tf b/run_config/coverity-tf
new file mode 100644
index 0000000..eba0d0b
--- /dev/null
+++ b/run_config/coverity-tf
@@ -0,0 +1,16 @@
+#!/bin/bash
+#
+# Copyright (c) 2019, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+test_setup() {
+	# Coverity scan only need to run on debug builds
+	echo "Building only in DEBUG mode."
+	set_hook_var "bin_mode" "debug"
+}
+
+pre_tf_build() {
+	wrapper="coverity" setup_tf_build_wrapper
+}