Build: Update ST configs

Two configs are needed on ST board:
1. Crypto test ON and other tests off
2. Crypto test OFF and other tests on
Update ST related configs to satisfy this requirement.

Signed-off-by: Xinyu Zhang <xinyu.zhang@arm.com>
Change-Id: I69b5cab8415e3fa31f56dbf6467a6a904e012cee
diff --git a/jenkins/ci.jpl b/jenkins/ci.jpl
index b58c6d7..39088e4 100644
--- a/jenkins/ci.jpl
+++ b/jenkins/ci.jpl
@@ -108,6 +108,10 @@
   config_params = [build_params["LIB_MODEL"], build_params["ISOLATION_LEVEL"], \
                    build_params["TEST_REGRESSION"], build_params["TEST_PSA_API"], \
                    build_params["PROFILE"]]
+  // Regression Test is enabled if CRYPTO is ON
+  if (build_params["EXTRA_PARAMS"] == "CRYPTO_ON") {
+    config_params[2] = "True"
+  }
   for (config in mapConfigs) {
     if (config_params == config[0..4]) {
       configName += config[5].replace(' (', '_').replace(')', '')